Better Click To Tweet - Version 4.3

Version Description

  • added translation support (internationalization or i18n) to the button on the visual editor. Now the entire plugin is translatable!
  • updated swedish, finnish, and spanish language files.
Download this release

Release Info

Developer ben.meredith@gmail.com
Plugin Icon 128x128 Better Click To Tweet
Version 4.3
Comparing to
See all releases

Code changes from version 4.2.1 to 4.3

assets/tinymce/bctt-tinymce.php CHANGED
@@ -39,10 +39,19 @@ class BCTT_TinyMCE {
39
  * @return [type] [description]
40
  */
41
  public function tinymce_loader() {
 
42
  add_filter( 'mce_external_plugins', array( __class__, 'bctt_tinymce_core' ) );
43
  add_filter( 'mce_buttons', array( __class__, 'bctt_tinymce_buttons' ) );
44
  }
45
-
 
 
 
 
 
 
 
 
46
  /**
47
  * loader for the required JS
48
  *
39
  * @return [type] [description]
40
  */
41
  public function tinymce_loader() {
42
+ add_filter( 'mce_external_languages', array( __class__, 'bctt_tinymce_languages' ) );
43
  add_filter( 'mce_external_plugins', array( __class__, 'bctt_tinymce_core' ) );
44
  add_filter( 'mce_buttons', array( __class__, 'bctt_tinymce_buttons' ) );
45
  }
46
+ /**
47
+ * loader for the language strings
48
+ *
49
+ */
50
+ public static function bctt_tinymce_languages( $bctt_locales) {
51
+ $bctt_locales[ 'bctt' ] = plugin_dir_path( __FILE__ ) . '/languages/bctt-mce-locale.php';
52
+ return $bctt_locales;
53
+ }
54
+
55
  /**
56
  * loader for the required JS
57
  *
assets/tinymce/js/tinymce-bctt.js CHANGED
@@ -5,17 +5,17 @@
5
  editor.addButton( 'bctt', {
6
 
7
  text: '',
8
- tooltip: 'Better Click To Tweet Shortcode Generator',
9
  icon: 'bctt-tweet',
10
  onclick: function() {
11
  // Open window
12
  editor.windowManager.open( {
13
- title: 'Better Click To Tweet Shortcode Generator',
14
  body: [
15
  {
16
  type: 'textbox',
17
  name: 'tweet',
18
- label: 'Tweetable Quote',
19
  multiline : true,
20
  minHeight : 60
21
  },
@@ -24,11 +24,11 @@
24
  checked: true,
25
  name: 'viamark',
26
  value: true,
27
- text: 'Add \"via @YourTwitterName\" to this tweet',
28
- label: 'Include "via"?',
29
  }
30
  ],
31
- width: 500,
32
  height: 120,
33
  onsubmit: function( e ) {
34
 
5
  editor.addButton( 'bctt', {
6
 
7
  text: '',
8
+ tooltip: editor.getLang( 'bctt.toolTip', 'Better Click To Tweet Shortcode Generator' ),
9
  icon: 'bctt-tweet',
10
  onclick: function() {
11
  // Open window
12
  editor.windowManager.open( {
13
+ title: editor.getLang( 'bctt.windowTitle', 'Better Click To Tweet Shortcode Generator' ),
14
  body: [
15
  {
16
  type: 'textbox',
17
  name: 'tweet',
18
+ label: editor.getLang( 'bctt.tweetableQuote', 'Tweetable Quote' ),
19
  multiline : true,
20
  minHeight : 60
21
  },
24
  checked: true,
25
  name: 'viamark',
26
  value: true,
27
+ text: editor.getLang( 'bctt.viaExplainer', 'Add via @YourTwitterName to this tweet'),
28
+ label: editor.getLang( 'bctt.viaPrompt', 'Include "via"?'),
29
  }
30
  ],
31
+ width: 800,
32
  height: 120,
33
  onsubmit: function( e ) {
34
 
assets/tinymce/languages/bctt-mce-locale.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * This file dynamically creates MCE locales, based on .po/.mo files loaded in the plugin's translation folder.
4
+ * It interfaces with the TinyMCE API using the tinyMCE.addI18n() function,
5
+ * which adds a language pack to TinyMCE
6
+ *
7
+ * @var string $strings a JavaScript snippet to add another language pack to TinyMCE
8
+ * @var string $mce_locale an ISO 639-1 formated string of the current language e.g. en, de...
9
+ * @deprecated wp_tiny_mce() at wp-admin/includes/post.php (for versions prior WP 3.3)
10
+ * @see _WP_Editors::editor_settings in wp-includes/class-wp-editor.php
11
+ */
12
+ $strings =
13
+ 'tinyMCE.addI18n(
14
+ "' . $mce_locale .'.bctt",
15
+ {
16
+ toolTip : "' . esc_js( _x( 'Better Click To Tweet Shortcode Generator', 'Text that shows on mouseover for visual editor button', 'better-click-to-tweet' ) ) . '",
17
+ windowTitle : "' . esc_js( _x( 'Better Click To Tweet Shortcode Generator', 'Text for title of the popup box when creating tweetable quote in the visual editor', 'better-click-to-tweet' ) ) . '",
18
+ tweetableQuote : "' . esc_js( _x( 'Tweetable Quote', 'Text for label on input box on popup box in visual editor', 'better-click-to-tweet' ) ) . '",
19
+ viaExplainer : "' . esc_js( _x( 'Add via @YourTwitterName to this tweet', 'Text explaining the checkbox on the visual editor', 'better-click-to-tweet' ) ) . '",
20
+ viaPrompt : "' . esc_js( _x( 'Include via?', 'Checkbox label in visual editor', 'better-click-to-tweet' ) ) . '",
21
+ }
22
+ );
23
+ ';
better-click-to-tweet.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Better Click To Tweet
4
  Description: The only Click To Tweet plugin to add translation support. The only Click To Tweet plugin to take into account your Twitter username's length in truncating long tweets, or to correctly take into account non-Roman characters. Simply put, as Click To Tweet plugins go, this one is, well, BETTER.
5
- Version: 4.2.1
6
  Author: Ben Meredith
7
  Author URI: http://benandjacq.com
8
  Plugin URI: https://wordpress.org/plugins/better-click-to-tweet/
2
  /*
3
  Plugin Name: Better Click To Tweet
4
  Description: The only Click To Tweet plugin to add translation support. The only Click To Tweet plugin to take into account your Twitter username's length in truncating long tweets, or to correctly take into account non-Roman characters. Simply put, as Click To Tweet plugins go, this one is, well, BETTER.
5
+ Version: 4.3
6
  Author: Ben Meredith
7
  Author URI: http://benandjacq.com
8
  Plugin URI: https://wordpress.org/plugins/better-click-to-tweet/
languages/better-click-to-tweet-es_ES.mo CHANGED
Binary file
languages/better-click-to-tweet-es_ES.po CHANGED
@@ -1,199 +1,234 @@
1
- # Copyright (C) 2015 Better Click To Tweet
2
- # This file is distributed under the same license as the Better Click To Tweet package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Better Click To Tweet 4.0\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/better-click-to-tweet\n"
7
- "POT-Creation-Date: 2015-03-27 20:56:20+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2015-03-27 18:02-0500\n"
12
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
- "Last-Translator: \n"
14
- "Language-Team: \n"
15
- "Language: es_ES\n"
16
- "X-Generator: Poedit 1.7.5\n"
17
-
18
- #: bctt_options.php:40
19
- msgid "You do not have sufficient permissions to access this page."
20
- msgstr "Usted no tiene los permisos necesarios para acceder a esta página."
21
-
22
- #. translators: Treat "Better Click To Tweet" as a brand name, don't translate
23
- #. it
24
- #: bctt_options.php:45
25
- msgid "Better Click To Tweet — a plugin by Ben Meredith"
26
- msgstr "Better Click To Tweet — un plugin por Ben Meredith"
27
-
28
- #: bctt_options.php:53
29
- msgid "About the Author"
30
- msgstr "Sobre el autor"
31
-
32
- #: bctt_options.php:57
33
- msgid ""
34
- "This plugin is developed by <a href=\"%s\">Ben Meredith</a>. I am a freelance "
35
- "developer specializing in <a href=\"%s\">outrunning and outsmarting hackers</a>."
36
- msgstr ""
37
- "Este plugin es desarrollado por <a href=\"%s\">Ben Meredith</a>. Soy un "
38
- "desarrollador freelance especializada en <a href=\"%s\">vencer y engañando a los "
39
- "hackers</a>."
40
-
41
- #: bctt_options.php:58
42
- msgid "Sign up to receive my FREE web strategy guide"
43
- msgstr "Regístrese para recibir a mi guía de estrategia web gratis (Solamente Inglés)"
44
-
45
- #: bctt_options.php:59
46
- msgctxt "placeholder text for input field"
47
- msgid "Your Email Address"
48
- msgstr "Su dirección email"
49
-
50
- #: bctt_options.php:60
51
- msgid "No Spam. One-click unsubscribe in every message"
52
- msgstr "No Spam. Darse de baja de un clic en cada mensaje"
53
-
54
- #: bctt_options.php:74
55
- msgid ""
56
- "Are you a developer? I would love your help making this plugin better. Check out the "
57
- "<a href=%s>plugin on Github.</a>"
58
- msgstr ""
59
- "¿Eres desarrollador? Me encantaría su ayuda para hacer mejor este plugin. Echa un "
60
- "vistazo al <a href=%s>plugin en Github.</a>"
61
-
62
- #: bctt_options.php:75
63
- msgid "The best way you can support this and other plugins is to <a href=%s>donate</a>"
64
- msgstr ""
65
- "La mejor manera en que usted puede apoyar este y otros plugins es <a href=%s>donar</"
66
- "a>"
67
-
68
- #: bctt_options.php:75
69
- msgid "The second best way is to <a href=%s>leave an honest review.</a>"
70
- msgstr "La segunda mejor manera es <a href=%s>dejar una revisión honesta.</a>"
71
-
72
- #: bctt_options.php:76
73
- msgid "Did this plugin save you enough time to be worth some money?"
74
- msgstr "¿Este plugin le ahorra suficiente tiempo para valer algo de dinero?"
75
-
76
- #: bctt_options.php:77
77
- msgid "Click here to buy me a Coke to say thanks."
78
- msgstr "Haga clic aquí y compre una Coca-Cola para decir gracias."
79
-
80
- #: bctt_options.php:87
81
- msgid "Instructions"
82
- msgstr "Instrucciones"
83
-
84
- #. translators: Treat "Better Click To Tweet" as a brand name, don't translate
85
- #. it
86
- #: bctt_options.php:88
87
- msgid ""
88
- "To add styled click-to-tweet quote boxes include the Better Click To Tweet shortcode "
89
- "in your post."
90
- msgstr ""
91
- "Para añadir casillas de texto de estilo \"click to tweet\" incluya el shortcode "
92
- "\"Better Click To Tweet\" en su mensaje."
93
-
94
- #: bctt_options.php:89
95
- msgid "Here's how you format the shortcode:"
96
- msgstr "Aquí está cómo formatear el shortcode:"
97
-
98
- #. translators: This text shows up as a sample tweet in the instructions for
99
- #. how to use the plugin.
100
- #: bctt_options.php:89
101
- msgid "Meaningful, tweetable quote."
102
- msgstr "Algo significativo para Twittear."
103
-
104
- #. translators: Also, treat "BCTT" as a brand name, don't translate it
105
- #: bctt_options.php:90
106
- msgid ""
107
- "If you are using the visual editor, click the BCTT birdie in the toolbar to add a "
108
- "pre-formatted shortcode to your post."
109
- msgstr ""
110
- "Si está utilizando el editor visual, haga clic en el pajarito BCTT en la barra de "
111
- "herramientas para añadir un shortcode formateado previamente a su mensaje."
112
-
113
- #: bctt_options.php:91
114
- msgid ""
115
- "Tweet length is automatically shortened to 117 characters minus the length of your "
116
- "twitter name, to leave room for it and a link back to the post."
117
- msgstr ""
118
- "La longitud del tweet se acortará automáticamente a 117 caracteres menos la longitud "
119
- "de su nombre de Twitter, para dejar espacio para ella y un enlace de vuelta al tweet."
120
-
121
- #: bctt_options.php:96
122
- msgid "Settings"
123
- msgstr "Ajustes"
124
-
125
- #: bctt_options.php:97
126
- msgid ""
127
- "Enter your Twitter handle to add \"via @yourhandle\" to your tweets. Do not include "
128
- "the @ symbol."
129
- msgstr ""
130
- "Ingrese su nombre identificador de Twitter para agregar \"via @nombreIdentificador\" "
131
- "a sus tweets. No incluya el símbolo @."
132
-
133
- #: bctt_options.php:98
134
- msgid ""
135
- "Checking the box below will force the plugin to show the WordPress shortlink in "
136
- "place of the full URL. While this does not impact tweet character length, it is "
137
- "useful alongside plugins which customize the WordPress shortlink using services like "
138
- "bit.ly or yourls.org for tracking"
139
- msgstr ""
140
- "Marca la casilla siguiente para mostrar la shortlink WordPress en lugar de la "
141
- "dirección URL completa. Mientras que esto no afecte la longitud de tweet, es útil "
142
- "junto con plugins que personalizar el shortlink WordPress usando servicios como bit."
143
- "ly o yourls.org para el seguimiento"
144
-
145
- #: bctt_options.php:104
146
- msgctxt "label for text input on settings screen"
147
- msgid "Your Twitter Handle"
148
- msgstr "Su Identificador de Twitter"
149
-
150
- #: bctt_options.php:107
151
- msgctxt "label for checkbox on settings screen"
152
- msgid "Use Short URL?"
153
- msgstr "¿Usa URL corta?"
154
-
155
- #: bctt_options.php:112
156
- msgid "Save Changes"
157
- msgstr "Guardar cambios"
158
-
159
- #: bctt_options.php:114
160
- msgid "An open source plugin by <a href=%s>Ben Meredith</a>"
161
- msgstr "Un plugin de código abierto por <a href=%s>Ben Meredith</a>"
162
-
163
- #: better-click-to-tweet.php:138
164
- msgctxt "Text for the box on the reader-facing box"
165
- msgid "Click To Tweet"
166
- msgstr "Click Para Twittear"
167
-
168
- #: better-click-to-tweet.php:209
169
- msgctxt "text for the link on the plugins page"
170
- msgid "Settings"
171
- msgstr "Ajustes"
172
-
173
- #. Plugin Name of the plugin/theme
174
- msgid "Better Click To Tweet"
175
- msgstr "Better Click To Tweet"
176
-
177
- #. Plugin URI of the plugin/theme
178
- msgid "https://wordpress.org/plugins/better-click-to-tweet/"
179
- msgstr "https://wordpress.org/plugins/better-click-to-tweet/"
180
-
181
- #. Description of the plugin/theme
182
- msgid ""
183
- "The only Click To Tweet plugin to add translation support. The only Click To Tweet "
184
- "plugin to take into account your Twitter username's length in truncating long "
185
- "tweets, or to correctly take into account non-Roman characters. Simply put, as Click "
186
- "To Tweet plugins go, this one is, well, BETTER."
187
- msgstr ""
188
- "El único clic a Tweet plugin para agregar compatibilidad con traducción. El plugin "
189
- "Click a Tweet sólo tome en cuenta la longitud de su nombre de usuario Twitter en "
190
- "truncar largos tweets, o tomar en caracteres no romanos cuenta correctamente. En "
191
- "pocas palabras, como haga clic para Tweet plugins, ésta es, bueno, mejor."
192
-
193
- #. Author of the plugin/theme
194
- msgid "Ben Meredith"
195
- msgstr "Ben Meredith"
196
-
197
- #. Author URI of the plugin/theme
198
- msgid "http://benandjacq.com"
199
- msgstr "http://benandjacq.com"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Better Click To Tweet\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/better-click-to-"
5
+ "tweet\n"
6
+ "POT-Creation-Date: 2015-07-13 14:15-0400\n"
7
+ "PO-Revision-Date: Tue Jul 14 2015 11:46:56 GMT-0400 (EDT)\n"
8
+ "Last-Translator: admin <ben@benandjacq.com>\n"
9
+ "Language-Team: \n"
10
+ "Language: Spanish (Spain)\n"
11
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Loco - https://localise.biz/\n"
17
+ "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-SearchPath-0: ..\n"
19
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
20
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
21
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
22
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
23
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
+ "X-Loco-Target-Locale: es_ES"
25
+
26
+ #: assets/tinymce/languages/bctt-mce-locale.php:12
27
+ msgctxt "Text that shows on mouseover for visual editor button"
28
+ msgid "Better Click To Tweet Shortcode Generator"
29
+ msgstr "Generador del Shortcode Better Click To Tweet"
30
+
31
+ #: assets/tinymce/languages/bctt-mce-locale.php:13
32
+ msgctxt ""
33
+ "Text for title of the popup box when creating tweetable quote in the visual "
34
+ "editor"
35
+ msgid "Better Click To Tweet Shortcode Generator"
36
+ msgstr "Generador del Shortcode Better Click To Tweet"
37
+
38
+ #: assets/tinymce/languages/bctt-mce-locale.php:14
39
+ msgctxt "Text for label on input box on popup box in visual editor"
40
+ msgid "Tweetable Quote"
41
+ msgstr "Algo significativo para Twittear"
42
+
43
+ #: assets/tinymce/languages/bctt-mce-locale.php:15
44
+ msgctxt "Text explaining the checkbox on the visual editor"
45
+ msgid "Add via @YourTwitterName to this tweet"
46
+ msgstr "Agrega via @NombreIdentificador en este tweet."
47
+
48
+ #: assets/tinymce/languages/bctt-mce-locale.php:16
49
+ msgctxt "Checkbox label in visual editor"
50
+ msgid "Include via?"
51
+ msgstr "¿Incluye via @NombreIdentificador?"
52
+
53
+ #: bctt_options.php:40
54
+ msgid "You do not have sufficient permissions to access this page."
55
+ msgstr "Usted no tiene los permisos necesarios para acceder a esta página."
56
+
57
+ #. translators: Treat "Better Click To Tweet" as a brand name, don't translate
58
+ #. it
59
+ #: bctt_options.php:45
60
+ msgid "Better Click To Tweet — a plugin by Ben Meredith"
61
+ msgstr "Better Click To Tweet — un plugin por Ben Meredith"
62
+
63
+ #: bctt_options.php:53
64
+ msgid "About the Author"
65
+ msgstr "Sobre el autor"
66
+
67
+ #: bctt_options.php:57
68
+ #, php-format
69
+ msgid ""
70
+ "This plugin is developed by <a href=\"%s\">Ben Meredith</a>. I am a freelance "
71
+ "developer specializing in <a href=\"%s\">outrunning and outsmarting "
72
+ "hackers</a>."
73
+ msgstr ""
74
+ "Este plugin es desarrollado por <a href=\"%s\">Ben Meredith</a>. Soy un "
75
+ "desarrollador freelance especializada en <a href=\"%s\">vencer y engañando a "
76
+ "los hackers</a>."
77
+
78
+ #: bctt_options.php:58
79
+ msgid "Sign up to receive my FREE web strategy guide"
80
+ msgstr "Regístrese para recibir a mi guía de estrategia web gratis (Solamente Inglés)"
81
+
82
+ #: bctt_options.php:59
83
+ msgctxt "placeholder text for input field"
84
+ msgid "Your Email Address"
85
+ msgstr "Su dirección email"
86
+
87
+ #: bctt_options.php:60
88
+ msgid "No Spam. One-click unsubscribe in every message"
89
+ msgstr "No Spam. Darse de baja de un clic en cada mensaje"
90
+
91
+ #: bctt_options.php:74
92
+ #, php-format
93
+ msgid ""
94
+ "Are you a developer? I would love your help making this plugin better. Check "
95
+ "out the <a href=%s>plugin on Github.</a>"
96
+ msgstr ""
97
+ "¿Eres desarrollador? Me encantaría su ayuda para hacer mejor este plugin. "
98
+ "Echa un vistazo al <a href=%s>plugin en Github.</a>"
99
+
100
+ #: bctt_options.php:75
101
+ #, php-format
102
+ msgid ""
103
+ "The best way you can support this and other plugins is to <a "
104
+ "href=%s>donate</a>"
105
+ msgstr ""
106
+ "La mejor manera en que usted puede apoyar este y otros plugins es <a "
107
+ "href=%s>donar</a>"
108
+
109
+ #: bctt_options.php:75
110
+ #, php-format
111
+ msgid "The second best way is to <a href=%s>leave an honest review.</a>"
112
+ msgstr "La segunda mejor manera es <a href=%s>dejar una revisión honesta.</a>"
113
+
114
+ #: bctt_options.php:76
115
+ msgid "Did this plugin save you enough time to be worth some money?"
116
+ msgstr "¿Este plugin le ahorra suficiente tiempo para valer algo de dinero?"
117
+
118
+ #: bctt_options.php:77
119
+ msgid "Click here to buy me a Coke to say thanks."
120
+ msgstr "Haga clic aquí y compre una Coca-Cola para decir gracias."
121
+
122
+ #: bctt_options.php:87
123
+ msgid "Instructions"
124
+ msgstr "Instrucciones"
125
+
126
+ #. translators: Treat "Better Click To Tweet" as a brand name, don't translate
127
+ #. it
128
+ #: bctt_options.php:88
129
+ msgid ""
130
+ "To add styled click-to-tweet quote boxes include the Better Click To Tweet "
131
+ "shortcode in your post."
132
+ msgstr ""
133
+ "Para añadir casillas de texto de estilo \"click to tweet\" incluya el "
134
+ "shortcode \"Better Click To Tweet\" en su mensaje."
135
+
136
+ #: bctt_options.php:89
137
+ msgid "Here's how you format the shortcode:"
138
+ msgstr "Aquí está cómo formatear el shortcode:"
139
+
140
+ #. translators: This text shows up as a sample tweet in the instructions for
141
+ #. how to use the plugin.
142
+ #: bctt_options.php:89
143
+ msgid "Meaningful, tweetable quote."
144
+ msgstr "Algo significativo para Twittear."
145
+
146
+ #. translators: Also, treat "BCTT" as a brand name, don't translate it
147
+ #: bctt_options.php:90
148
+ msgid ""
149
+ "If you are using the visual editor, click the BCTT birdie in the toolbar to "
150
+ "add a pre-formatted shortcode to your post."
151
+ msgstr ""
152
+ "Si está utilizando el editor visual, haga clic en el pajarito BCTT en la "
153
+ "barra de herramientas para añadir un shortcode formateado previamente a su "
154
+ "mensaje."
155
+
156
+ #: bctt_options.php:91
157
+ msgid ""
158
+ "Tweet length is automatically shortened to 117 characters minus the length "
159
+ "of your twitter name, to leave room for it and a link back to the post."
160
+ msgstr ""
161
+ "La longitud del tweet se acortará automáticamente a 117 caracteres menos la "
162
+ "longitud de su nombre de Twitter, para dejar espacio para ella y un enlace "
163
+ "de vuelta al tweet."
164
+
165
+ #: bctt_options.php:96
166
+ msgid "Settings"
167
+ msgstr "Ajustes"
168
+
169
+ #: bctt_options.php:97
170
+ msgid ""
171
+ "Enter your Twitter handle to add \"via @yourhandle\" to your tweets. Do not "
172
+ "include the @ symbol."
173
+ msgstr ""
174
+ "Ingrese su nombre identificador de Twitter para agregar \"via "
175
+ "@nombreIdentificador\" a sus tweets. No incluya el símbolo @."
176
+
177
+ #: bctt_options.php:98
178
+ msgid ""
179
+ "Checking the box below will force the plugin to show the WordPress shortlink "
180
+ "in place of the full URL. While this does not impact tweet character length, "
181
+ "it is useful alongside plugins which customize the WordPress shortlink using "
182
+ "services like bit.ly or yourls.org for tracking"
183
+ msgstr ""
184
+ "Marca la casilla siguiente para mostrar la shortlink WordPress en lugar de "
185
+ "la dirección URL completa. Mientras que esto no afecte la longitud de tweet, "
186
+ "es útil junto con plugins que personalizar el shortlink WordPress usando "
187
+ "servicios como bit.ly o yourls.org para el seguimiento"
188
+
189
+ #: bctt_options.php:104
190
+ msgctxt "label for text input on settings screen"
191
+ msgid "Your Twitter Handle"
192
+ msgstr "Su Identificador de Twitter"
193
+
194
+ #: bctt_options.php:107
195
+ msgctxt "label for checkbox on settings screen"
196
+ msgid "Use Short URL?"
197
+ msgstr "¿Usa URL corta?"
198
+
199
+ #: bctt_options.php:112
200
+ msgid "Save Changes"
201
+ msgstr "Guardar cambios"
202
+
203
+ #: bctt_options.php:114
204
+ #, php-format
205
+ msgid "An open source plugin by <a href=%s>Ben Meredith</a>"
206
+ msgstr "Un plugin de código abierto por <a href=%s>Ben Meredith</a>"
207
+
208
+ #: better-click-to-tweet.php:142
209
+ msgctxt "Text for the box on the reader-facing box"
210
+ msgid "Click To Tweet"
211
+ msgstr "Click Para Twittear"
212
+
213
+ #: better-click-to-tweet.php:231
214
+ msgctxt "text for the link on the plugins page"
215
+ msgid "Settings"
216
+ msgstr "Ajustes"
217
+
218
+ #. Plugin Name of the plugin/theme
219
+ msgid "Better Click To Tweet"
220
+ msgstr "Better Click To Tweet"
221
+
222
+ #. Description of the plugin/theme
223
+ msgid ""
224
+ "The only Click To Tweet plugin to add translation support. The only Click To "
225
+ "Tweet plugin to take into account your Twitter username's length in "
226
+ "truncating long tweets, or to correctly take into account non-Roman "
227
+ "characters. Simply put, as Click To Tweet plugins go, this one is, well, "
228
+ "BETTER."
229
+ msgstr ""
230
+ "El único clic a Tweet plugin para agregar compatibilidad con traducción. El "
231
+ "plugin Click a Tweet sólo tome en cuenta la longitud de su nombre de usuario "
232
+ "Twitter en truncar largos tweets, o tomar en caracteres no romanos cuenta "
233
+ "correctamente. En pocas palabras, como haga clic para Tweet plugins, ésta es,"
234
+ " bueno, mejor."
languages/better-click-to-tweet-fi.mo CHANGED
Binary file
languages/better-click-to-tweet-fi.po CHANGED
@@ -1,26 +1,57 @@
1
- # Copyright (C) 2015 Better Click To Tweet
2
- # This file is distributed under the same license as the Better Click To Tweet package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Better Click To Tweet 4.0\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/better-click-to-tweet\n"
7
- "POT-Creation-Date: 2015-03-27 20:56:20+00:00\n"
 
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2015-04-13 13:49+0200\n"
 
 
 
 
 
 
12
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
- "Last-Translator: \n"
14
- "Language-Team: Call To Action Oy <sampsa@cta.fi>\n"
15
- "Language: fi\n"
16
- "X-Generator: Poedit 1.7.5\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
  #: bctt_options.php:40
19
  msgid "You do not have sufficient permissions to access this page."
20
  msgstr "Sinulla ei ole tarvittavia oikeuksia tälle sivulle."
21
 
22
- #. translators: Treat "Better Click To Tweet" as a brand name, don't translate
23
- #. it
24
  #: bctt_options.php:45
25
  msgid "Better Click To Tweet — a plugin by Ben Meredith"
26
  msgstr "Better Click To Tweet - Lisäosan tekijä: Ben Meredith"
@@ -30,13 +61,15 @@ msgid "About the Author"
30
  msgstr "Lisätietoa tekijästä"
31
 
32
  #: bctt_options.php:57
 
33
  msgid ""
34
- "This plugin is developed by <a href=\"%s\">Ben Meredith</a>. I am a freelance "
35
- "developer specializing in <a href=\"%s\">outrunning and outsmarting hackers</a>."
 
36
  msgstr ""
37
- "Tämän lisäosan on kehittänyt <a href=\"%s\">Ben Meredith</a>. Olen freelancer "
38
- "kehittäjä joka on erikoistunut olemaan<a href=\"%s\">nopeampi ja älykkäämpi kuin "
39
- "hakkerit</a>."
40
 
41
  #: bctt_options.php:58
42
  msgid "Sign up to receive my FREE web strategy guide"
@@ -52,20 +85,24 @@ msgid "No Spam. One-click unsubscribe in every message"
52
  msgstr "Ei Spammia. Voit lopettaa tilauksen yhdellä hiiren klikkauksella"
53
 
54
  #: bctt_options.php:74
 
55
  msgid ""
56
- "Are you a developer? I would love your help making this plugin better. Check out the "
57
- "<a href=%s>plugin on Github.</a>"
58
  msgstr ""
59
  "Oletko kehittäjä? Olisi hienoa jos voisit ottaa osaa tämän lisäosan "
60
  "jatkokehitykseen. Käy katsomassa lisäosan tiedot <a href=%s>GitHub:sta.</a>"
61
 
62
  #: bctt_options.php:75
63
- msgid "The best way you can support this and other plugins is to <a href=%s>donate</a>"
 
 
 
64
  msgstr ""
65
- "Paras tapa osoittaa kiitollisuutta tälle ja muille lisäosille on <a href="
66
- "%s>lahjoittaa</a>"
67
 
68
  #: bctt_options.php:75
 
69
  msgid "The second best way is to <a href=%s>leave an honest review.</a>"
70
  msgstr "Toiseksi paras tapa on <a href=%s>jättää rehellinen arvostelu</a>"
71
 
@@ -81,22 +118,20 @@ msgstr "Klikkaa tästä tarjotaksesi minulle kokiksen kiitokseksi."
81
  msgid "Instructions"
82
  msgstr "Ohjeet"
83
 
84
- #. translators: Treat "Better Click To Tweet" as a brand name, don't translate
85
- #. it
86
  #: bctt_options.php:88
87
  msgid ""
88
- "To add styled click-to-tweet quote boxes include the Better Click To Tweet shortcode "
89
- "in your post."
90
  msgstr ""
91
- "Lisätäksesi click-to-tweet lainauslaatikon sisällytä Click To Tweet lyhytkoodi "
92
- "tekstiisi."
93
 
94
  #: bctt_options.php:89
95
  msgid "Here's how you format the shortcode:"
96
  msgstr "Näin muokaat lyhytkoodia:"
97
 
98
- #. translators: This text shows up as a sample tweet in the instructions for
99
- #. how to use the plugin.
100
  #: bctt_options.php:89
101
  msgid "Meaningful, tweetable quote."
102
  msgstr "Tärkeä, twiitin arvoinen lainaus tekstistäsi"
@@ -104,19 +139,20 @@ msgstr "Tärkeä, twiitin arvoinen lainaus tekstistäsi"
104
  #. translators: Also, treat "BCTT" as a brand name, don't translate it
105
  #: bctt_options.php:90
106
  msgid ""
107
- "If you are using the visual editor, click the BCTT birdie in the toolbar to add a "
108
- "pre-formatted shortcode to your post."
109
  msgstr ""
110
  "Jos käytät visuaalista tekstieditoria, klikkaa BCTT-lintua työkalurivillä "
111
  "lisätäksesi valmiiksi muotoillun lyhtykoodin tekstiisi."
112
 
113
  #: bctt_options.php:91
114
  msgid ""
115
- "Tweet length is automatically shortened to 117 characters minus the length of your "
116
- "twitter name, to leave room for it and a link back to the post."
117
  msgstr ""
118
- "Twiitti on automaattisesti lyhennetty 117 merkkiin miinus Twitter-tunnuksesi pituus. "
119
- "Tämä jättää tilaa Twitter tunnuksellesi kuten myös linkille takaisin tekstiisi."
 
120
 
121
  #: bctt_options.php:96
122
  msgid "Settings"
@@ -124,23 +160,23 @@ msgstr "Asetukset"
124
 
125
  #: bctt_options.php:97
126
  msgid ""
127
- "Enter your Twitter handle to add \"via @yourhandle\" to your tweets. Do not include "
128
- "the @ symbol."
129
  msgstr ""
130
- "Syötä Twitter-tunnuksesi lisätäksesi \"via @sinuntunnuksesi\" twiittiisi. Älä lisää "
131
- "@ merkkiä."
132
 
133
  #: bctt_options.php:98
134
  msgid ""
135
- "Checking the box below will force the plugin to show the WordPress shortlink in "
136
- "place of the full URL. While this does not impact tweet character length, it is "
137
- "useful alongside plugins which customize the WordPress shortlink using services like "
138
- "bit.ly or yourls.org for tracking"
139
  msgstr ""
140
- "Allaolevan laatikon merkkaamalla lisäosa pakottaa twiittiin lyhytlinkin kokonaisen "
141
- "URL:n sijasta. Vaikka tämä ei vaikuta merkkimäärään, on se käytännölinen ominaisuus "
142
- "sellaisten lisäosien kanssa, jotka käyttävät palveluja kuten bit.ly tai yourls.org "
143
- "analytiikkaan"
144
 
145
  #: bctt_options.php:104
146
  msgctxt "label for text input on settings screen"
@@ -157,15 +193,16 @@ msgid "Save Changes"
157
  msgstr "Tallenna muutokset"
158
 
159
  #: bctt_options.php:114
 
160
  msgid "An open source plugin by <a href=%s>Ben Meredith</a>"
161
  msgstr "Avoimen lähdekoodin lisäosa. Tekijä: <a href=%s>Ben Meredith</a>"
162
 
163
- #: better-click-to-tweet.php:138
164
  msgctxt "Text for the box on the reader-facing box"
165
  msgid "Click To Tweet"
166
  msgstr "Klikkaa ja Twiittaa"
167
 
168
- #: better-click-to-tweet.php:209
169
  msgctxt "text for the link on the plugins page"
170
  msgid "Settings"
171
  msgstr "Asetukset"
@@ -176,12 +213,14 @@ msgstr "Parempi Klikkaa ja Twiittaa"
176
 
177
  #. Description of the plugin/theme
178
  msgid ""
179
- "The only Click To Tweet plugin to add translation support. The only Click To Tweet "
180
- "plugin to take into account your Twitter username's length in truncating long "
181
- "tweets, or to correctly take into account non-Roman characters. Simply put, as Click "
182
- "To Tweet plugins go, this one is, well, BETTER."
 
183
  msgstr ""
184
- "Ainoa Klikkaa ja Twiittaa-lisäosa joka tarjoaa käännöksen tuen. Ainoa Klikkaa ja "
185
- "Twiittaa-lisäosa joka ottaa huomioon sinun Twitter-tunnuksesi pituuden pitkien "
186
- "twiittien katkaisussa, sekä ainoa lisäosa joka ottaa huomioon ei-roomalaiset merkit. "
187
- "Yksinkertaisesti Klikkaa ja Twiittaa-lisäosat huomioiden, PAREMPI."
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Better Click To Tweet\n"
4
+ "POT-Creation-Date: 2015-07-14 09:18+0300\n"
5
+ "PO-Revision-Date: 2015-07-14 09:26+0300\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.8.2\n"
12
+ "X-Poedit-Basepath: ..\n"
13
+ "X-Poedit-WPHeader: better-click-to-tweet.php\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "Language: fi_FI\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
22
+
23
+ #: assets/tinymce/languages/bctt-mce-locale.php:12
24
+ msgctxt "Text that shows on mouseover for visual editor button"
25
+ msgid "Better Click To Tweet Shortcode Generator"
26
+ msgstr "Parempi Klikkaa ja Twiittaa - Lyhytkoodigeneraattori"
27
+
28
+ #: assets/tinymce/languages/bctt-mce-locale.php:13
29
+ msgctxt ""
30
+ "Text for title of the popup box when creating tweetable quote in the visual "
31
+ "editor"
32
+ msgid "Better Click To Tweet Shortcode Generator"
33
+ msgstr "Parempi Klikkaa ja Twiittaa - Lyhytkoodigeneraattori"
34
+
35
+ #: assets/tinymce/languages/bctt-mce-locale.php:14
36
+ msgctxt "Text for label on input box on popup box in visual editor"
37
+ msgid "Tweetable Quote"
38
+ msgstr "Tärkeä, twiitin arvoinen lainaus tekstistäsi"
39
+
40
+ #: assets/tinymce/languages/bctt-mce-locale.php:15
41
+ msgctxt "Text explaining the checkbox on the visual editor"
42
+ msgid "Add via @YourTwitterName to this tweet"
43
+ msgstr "lisää “via @SinunTwitterHandle” twiittiin"
44
+
45
+ #: assets/tinymce/languages/bctt-mce-locale.php:16
46
+ msgctxt "Checkbox label in visual editor"
47
+ msgid "Include via?"
48
+ msgstr "Lisätäänkö “via @SinunTwitterHandle” twiittiin"
49
 
50
  #: bctt_options.php:40
51
  msgid "You do not have sufficient permissions to access this page."
52
  msgstr "Sinulla ei ole tarvittavia oikeuksia tälle sivulle."
53
 
54
+ #. translators: Treat "Better Click To Tweet" as a brand name, don't translate it
 
55
  #: bctt_options.php:45
56
  msgid "Better Click To Tweet — a plugin by Ben Meredith"
57
  msgstr "Better Click To Tweet - Lisäosan tekijä: Ben Meredith"
61
  msgstr "Lisätietoa tekijästä"
62
 
63
  #: bctt_options.php:57
64
+ #, php-format
65
  msgid ""
66
+ "This plugin is developed by <a href=\"%s\">Ben Meredith</a>. I am a "
67
+ "freelance developer specializing in <a href=\"%s\">outrunning and "
68
+ "outsmarting hackers</a>."
69
  msgstr ""
70
+ "Tämän lisäosan on kehittänyt <a href=“%s”>Ben Meredith</a>. Olen freelancer "
71
+ "kehittäjä joka on erikoistunut olemaan<a href=“%s”>nopeampi ja älykkäämpi "
72
+ "kuin hakkerit</a>."
73
 
74
  #: bctt_options.php:58
75
  msgid "Sign up to receive my FREE web strategy guide"
85
  msgstr "Ei Spammia. Voit lopettaa tilauksen yhdellä hiiren klikkauksella"
86
 
87
  #: bctt_options.php:74
88
+ #, php-format
89
  msgid ""
90
+ "Are you a developer? I would love your help making this plugin better. Check "
91
+ "out the <a href=%s>plugin on Github.</a>"
92
  msgstr ""
93
  "Oletko kehittäjä? Olisi hienoa jos voisit ottaa osaa tämän lisäosan "
94
  "jatkokehitykseen. Käy katsomassa lisäosan tiedot <a href=%s>GitHub:sta.</a>"
95
 
96
  #: bctt_options.php:75
97
+ #, php-format
98
+ msgid ""
99
+ "The best way you can support this and other plugins is to <a href=%s>donate</"
100
+ "a>"
101
  msgstr ""
102
+ "Paras tapa osoittaa kiitollisuutta lisäosalle on <a href=%s>lahjoittaa</a>"
 
103
 
104
  #: bctt_options.php:75
105
+ #, php-format
106
  msgid "The second best way is to <a href=%s>leave an honest review.</a>"
107
  msgstr "Toiseksi paras tapa on <a href=%s>jättää rehellinen arvostelu</a>"
108
 
118
  msgid "Instructions"
119
  msgstr "Ohjeet"
120
 
121
+ #. translators: Treat "Better Click To Tweet" as a brand name, don't translate it
 
122
  #: bctt_options.php:88
123
  msgid ""
124
+ "To add styled click-to-tweet quote boxes include the Better Click To Tweet "
125
+ "shortcode in your post."
126
  msgstr ""
127
+ "Lisätäksesi click-to-tweet lainauslaatikon sisällytä Klikkaa ja Twiittaa "
128
+ "lyhytkoodi tekstiisi."
129
 
130
  #: bctt_options.php:89
131
  msgid "Here's how you format the shortcode:"
132
  msgstr "Näin muokaat lyhytkoodia:"
133
 
134
+ #. translators: This text shows up as a sample tweet in the instructions for how to use the plugin.
 
135
  #: bctt_options.php:89
136
  msgid "Meaningful, tweetable quote."
137
  msgstr "Tärkeä, twiitin arvoinen lainaus tekstistäsi"
139
  #. translators: Also, treat "BCTT" as a brand name, don't translate it
140
  #: bctt_options.php:90
141
  msgid ""
142
+ "If you are using the visual editor, click the BCTT birdie in the toolbar to "
143
+ "add a pre-formatted shortcode to your post."
144
  msgstr ""
145
  "Jos käytät visuaalista tekstieditoria, klikkaa BCTT-lintua työkalurivillä "
146
  "lisätäksesi valmiiksi muotoillun lyhtykoodin tekstiisi."
147
 
148
  #: bctt_options.php:91
149
  msgid ""
150
+ "Tweet length is automatically shortened to 117 characters minus the length "
151
+ "of your twitter name, to leave room for it and a link back to the post."
152
  msgstr ""
153
+ "Twiitti on automaattisesti lyhennetty 117 merkkiin miinus Twitter-tunnuksesi "
154
+ "pituus. Tämä jättää tilaa Twitter tunnuksellesi kuten myös linkille takaisin "
155
+ "tekstiisi."
156
 
157
  #: bctt_options.php:96
158
  msgid "Settings"
160
 
161
  #: bctt_options.php:97
162
  msgid ""
163
+ "Enter your Twitter handle to add \"via @yourhandle\" to your tweets. Do not "
164
+ "include the @ symbol."
165
  msgstr ""
166
+ "Syötä Twitter-tunnuksesi lisätäksesi via @SinunTwitterHandle” twiittiisi. "
167
+ "Älä lisää @ merkkiä."
168
 
169
  #: bctt_options.php:98
170
  msgid ""
171
+ "Checking the box below will force the plugin to show the WordPress shortlink "
172
+ "in place of the full URL. While this does not impact tweet character length, "
173
+ "it is useful alongside plugins which customize the WordPress shortlink using "
174
+ "services like bit.ly or yourls.org for tracking"
175
  msgstr ""
176
+ "Allaolevan laatikon merkkaamalla lisäosa pakottaa twiittiin lyhytlinkin "
177
+ "kokonaisen URL:n sijasta. Vaikka tämä ei vaikuta merkkimäärään, on se "
178
+ "käytännölinen ominaisuus sellaisten lisäosien kanssa, jotka käyttävät "
179
+ "palveluja kuten bit.ly tai yourls.org analytiikkaan"
180
 
181
  #: bctt_options.php:104
182
  msgctxt "label for text input on settings screen"
193
  msgstr "Tallenna muutokset"
194
 
195
  #: bctt_options.php:114
196
+ #, php-format
197
  msgid "An open source plugin by <a href=%s>Ben Meredith</a>"
198
  msgstr "Avoimen lähdekoodin lisäosa. Tekijä: <a href=%s>Ben Meredith</a>"
199
 
200
+ #: better-click-to-tweet.php:142
201
  msgctxt "Text for the box on the reader-facing box"
202
  msgid "Click To Tweet"
203
  msgstr "Klikkaa ja Twiittaa"
204
 
205
+ #: better-click-to-tweet.php:231
206
  msgctxt "text for the link on the plugins page"
207
  msgid "Settings"
208
  msgstr "Asetukset"
213
 
214
  #. Description of the plugin/theme
215
  msgid ""
216
+ "The only Click To Tweet plugin to add translation support. The only Click To "
217
+ "Tweet plugin to take into account your Twitter username's length in "
218
+ "truncating long tweets, or to correctly take into account non-Roman "
219
+ "characters. Simply put, as Click To Tweet plugins go, this one is, well, "
220
+ "BETTER."
221
  msgstr ""
222
+ "Ainoa Klikkaa ja Twiittaa-lisäosa joka tarjoaa käännöksen tuen. Ainoa "
223
+ "Klikkaa ja Twiittaa-lisäosa joka ottaa huomioon sinun Twitter-tunnuksesi "
224
+ "pituuden pitkien twiittien katkaisussa, sekä ainoa lisäosa joka ottaa "
225
+ "huomioon ei-roomalaiset merkit. Yksinkertaisesti Klikkaa ja Twiittaa-"
226
+ "lisäosat huomioiden, PAREMPI."
languages/better-click-to-tweet.pot CHANGED
@@ -1,24 +1,56 @@
1
- # Copyright (C) 2015 Better Click To Tweet
2
- # This file is distributed under the same license as the Better Click To Tweet package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Better Click To Tweet 4.0\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/better-click-to-"
7
- "tweet\n"
8
- "POT-Creation-Date: 2015-03-27 20:56:20+00:00\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
13
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
- "Language-Team: LANGUAGE <LL@li.org>\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
 
16
  #: bctt_options.php:40
17
  msgid "You do not have sufficient permissions to access this page."
18
  msgstr ""
19
 
20
- #. translators: Treat "Better Click To Tweet" as a brand name, don't translate
21
- #. it
22
  #: bctt_options.php:45
23
  msgid "Better Click To Tweet — a plugin by Ben Meredith"
24
  msgstr ""
@@ -28,6 +60,7 @@ msgid "About the Author"
28
  msgstr ""
29
 
30
  #: bctt_options.php:57
 
31
  msgid ""
32
  "This plugin is developed by <a href=\"%s\">Ben Meredith</a>. I am a "
33
  "freelance developer specializing in <a href=\"%s\">outrunning and "
@@ -48,18 +81,21 @@ msgid "No Spam. One-click unsubscribe in every message"
48
  msgstr ""
49
 
50
  #: bctt_options.php:74
 
51
  msgid ""
52
  "Are you a developer? I would love your help making this plugin better. Check "
53
  "out the <a href=%s>plugin on Github.</a>"
54
  msgstr ""
55
 
56
  #: bctt_options.php:75
 
57
  msgid ""
58
  "The best way you can support this and other plugins is to <a href=%s>donate</"
59
  "a>"
60
  msgstr ""
61
 
62
  #: bctt_options.php:75
 
63
  msgid "The second best way is to <a href=%s>leave an honest review.</a>"
64
  msgstr ""
65
 
@@ -75,8 +111,7 @@ msgstr ""
75
  msgid "Instructions"
76
  msgstr ""
77
 
78
- #. translators: Treat "Better Click To Tweet" as a brand name, don't translate
79
- #. it
80
  #: bctt_options.php:88
81
  msgid ""
82
  "To add styled click-to-tweet quote boxes include the Better Click To Tweet "
@@ -87,8 +122,7 @@ msgstr ""
87
  msgid "Here's how you format the shortcode:"
88
  msgstr ""
89
 
90
- #. translators: This text shows up as a sample tweet in the instructions for
91
- #. how to use the plugin.
92
  #: bctt_options.php:89
93
  msgid "Meaningful, tweetable quote."
94
  msgstr ""
@@ -139,15 +173,16 @@ msgid "Save Changes"
139
  msgstr ""
140
 
141
  #: bctt_options.php:114
 
142
  msgid "An open source plugin by <a href=%s>Ben Meredith</a>"
143
  msgstr ""
144
 
145
- #: better-click-to-tweet.php:138
146
  msgctxt "Text for the box on the reader-facing box"
147
  msgid "Click To Tweet"
148
  msgstr ""
149
 
150
- #: better-click-to-tweet.php:209
151
  msgctxt "text for the link on the plugins page"
152
  msgid "Settings"
153
  msgstr ""
@@ -156,6 +191,7 @@ msgstr ""
156
  msgid "Better Click To Tweet"
157
  msgstr ""
158
 
 
159
  #. Description of the plugin/theme
160
  msgid ""
161
  "The only Click To Tweet plugin to add translation support. The only Click To "
@@ -164,4 +200,3 @@ msgid ""
164
  "characters. Simply put, as Click To Tweet plugins go, this one is, well, "
165
  "BETTER."
166
  msgstr ""
167
-
1
+ #, fuzzy
 
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: Better Click To Tweet\n"
5
+ "POT-Creation-Date: 2015-07-13 14:15-0400\n"
6
+ "PO-Revision-Date: 2015-07-13 12:09-0400\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.2\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-WPHeader: better-click-to-tweet.php\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
17
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
18
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
21
+
22
+ #: assets/tinymce/languages/bctt-mce-locale.php:12
23
+ msgctxt "Text that shows on mouseover for visual editor button"
24
+ msgid "Better Click To Tweet Shortcode Generator"
25
+ msgstr ""
26
+
27
+ #: assets/tinymce/languages/bctt-mce-locale.php:13
28
+ msgctxt ""
29
+ "Text for title of the popup box when creating tweetable quote in the visual "
30
+ "editor"
31
+ msgid "Better Click To Tweet Shortcode Generator"
32
+ msgstr ""
33
+
34
+ #: assets/tinymce/languages/bctt-mce-locale.php:14
35
+ msgctxt "Text for label on input box on popup box in visual editor"
36
+ msgid "Tweetable Quote"
37
+ msgstr ""
38
+
39
+ #: assets/tinymce/languages/bctt-mce-locale.php:15
40
+ msgctxt "Text explaining the checkbox on the visual editor"
41
+ msgid "Add via @YourTwitterName to this tweet"
42
+ msgstr ""
43
+
44
+ #: assets/tinymce/languages/bctt-mce-locale.php:16
45
+ msgctxt "Checkbox label in visual editor"
46
+ msgid "Include via?"
47
+ msgstr ""
48
 
49
  #: bctt_options.php:40
50
  msgid "You do not have sufficient permissions to access this page."
51
  msgstr ""
52
 
53
+ #. translators: Treat "Better Click To Tweet" as a brand name, don't translate it
 
54
  #: bctt_options.php:45
55
  msgid "Better Click To Tweet — a plugin by Ben Meredith"
56
  msgstr ""
60
  msgstr ""
61
 
62
  #: bctt_options.php:57
63
+ #, php-format
64
  msgid ""
65
  "This plugin is developed by <a href=\"%s\">Ben Meredith</a>. I am a "
66
  "freelance developer specializing in <a href=\"%s\">outrunning and "
81
  msgstr ""
82
 
83
  #: bctt_options.php:74
84
+ #, php-format
85
  msgid ""
86
  "Are you a developer? I would love your help making this plugin better. Check "
87
  "out the <a href=%s>plugin on Github.</a>"
88
  msgstr ""
89
 
90
  #: bctt_options.php:75
91
+ #, php-format
92
  msgid ""
93
  "The best way you can support this and other plugins is to <a href=%s>donate</"
94
  "a>"
95
  msgstr ""
96
 
97
  #: bctt_options.php:75
98
+ #, php-format
99
  msgid "The second best way is to <a href=%s>leave an honest review.</a>"
100
  msgstr ""
101
 
111
  msgid "Instructions"
112
  msgstr ""
113
 
114
+ #. translators: Treat "Better Click To Tweet" as a brand name, don't translate it
 
115
  #: bctt_options.php:88
116
  msgid ""
117
  "To add styled click-to-tweet quote boxes include the Better Click To Tweet "
122
  msgid "Here's how you format the shortcode:"
123
  msgstr ""
124
 
125
+ #. translators: This text shows up as a sample tweet in the instructions for how to use the plugin.
 
126
  #: bctt_options.php:89
127
  msgid "Meaningful, tweetable quote."
128
  msgstr ""
173
  msgstr ""
174
 
175
  #: bctt_options.php:114
176
+ #, php-format
177
  msgid "An open source plugin by <a href=%s>Ben Meredith</a>"
178
  msgstr ""
179
 
180
+ #: better-click-to-tweet.php:142
181
  msgctxt "Text for the box on the reader-facing box"
182
  msgid "Click To Tweet"
183
  msgstr ""
184
 
185
+ #: better-click-to-tweet.php:231
186
  msgctxt "text for the link on the plugins page"
187
  msgid "Settings"
188
  msgstr ""
191
  msgid "Better Click To Tweet"
192
  msgstr ""
193
 
194
+
195
  #. Description of the plugin/theme
196
  msgid ""
197
  "The only Click To Tweet plugin to add translation support. The only Click To "
200
  "characters. Simply put, as Click To Tweet plugins go, this one is, well, "
201
  "BETTER."
202
  msgstr ""
 
readme.txt CHANGED
@@ -1,14 +1,14 @@
1
  === Better Click To Tweet ===
2
  Contributors: ben.meredith@gmail.com
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=HDSGWRJYFQQNJ
4
- Tags: click to tweet, twitter, tweet, twitter plugin, Twitter boxes, share, social media, post, posts, plugin, auto post, bitly, bit.ly, yourls, yourls.org, translation-ready
5
  Requires at least: 3.8
6
- Tested up to: 4.2
7
- Stable tag: 4.2.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
- Insert click to tweet boxes into your posts, simply and securely. This plugin is regularly updated, translation-ready, and secure.
12
 
13
  == Description ==
14
 
@@ -110,6 +110,10 @@ I want to maximize the usefulness of this plugin by translating it into multiple
110
 
111
  == Changelog ==
112
 
 
 
 
 
113
  = 4.2.1 =
114
  * added German and Swedish translations, updated info in readme with link to instructions for migrating from Click To Tweet to Better Click To Tweet.
115
  * made minor change to the bcttstyle.css (sample) file that was bugging me on hover.
@@ -190,6 +194,8 @@ I want to maximize the usefulness of this plugin by translating it into multiple
190
  * Initial release.
191
 
192
  == Upgrade Notice ==
 
 
193
 
194
  = 4.1 =
195
  * added full customizability (instructions forthcoming at http://benlikes.us/7r )
1
  === Better Click To Tweet ===
2
  Contributors: ben.meredith@gmail.com
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=HDSGWRJYFQQNJ
4
+ Tags: click to tweet, twitter, tweet, twitter plugin, Twitter boxes, share, social media, post, posts, plugin, auto post, bitly, bit.ly, yourls, yourls.org, translation-me, español, deutsch, Russian, Finnish, Svenska, Suomi,
5
  Requires at least: 3.8
6
+ Tested up to: 4.3
7
+ Stable tag: 4.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
+ Insert click to tweet boxes into your posts, simply and securely. This plugin is customizable, regularly updated, and future-proof.
12
 
13
  == Description ==
14
 
110
 
111
  == Changelog ==
112
 
113
+ = 4.3 =
114
+ * added translation support (internationalization or i18n) to the button on the visual editor. Now the entire plugin is translatable!
115
+ * updated swedish, finnish, and spanish language files.
116
+
117
  = 4.2.1 =
118
  * added German and Swedish translations, updated info in readme with link to instructions for migrating from Click To Tweet to Better Click To Tweet.
119
  * made minor change to the bcttstyle.css (sample) file that was bugging me on hover.
194
  * Initial release.
195
 
196
  == Upgrade Notice ==
197
+ = 4.3 =
198
+ * added translation support, updated three languages.
199
 
200
  = 4.1 =
201
  * added full customizability (instructions forthcoming at http://benlikes.us/7r )