WP Total Hacks - Version 0.5.0

Version Description

  • Security fix.
  • apple-touch-icon
Download this release

Release Info

Developer miyauchi
Plugin Icon wp plugin WP Total Hacks
Version 0.5.0
Comparing to
See all releases

Code changes from version 0.4.0 to 0.5.0

includes/{wpbiz_admin.php → admin.php} RENAMED
@@ -2,7 +2,7 @@
2
 
3
  require_once(dirname(__FILE__).'/role.class.php');
4
 
5
- class WPBIZ_ADMIN {
6
 
7
  private $contributors = array(
8
  'Takayuki Miyauchi' => array(
@@ -45,7 +45,8 @@ private $plugin_url = '';
45
  private $page_title = 'WP Total Hacks';
46
  private $params = array(
47
  'wfb_google_analytics' => 'text',
48
- 'wfb_favicon' => 'text',
 
49
  'wfb_hide_version' => 'bool',
50
  'wfb_google' => 'text',
51
  'wfb_yahoo' => 'text',
@@ -55,10 +56,10 @@ private $params = array(
55
  'wfb_autosave' => 'bool',
56
  'wfb_selfping' => 'bool',
57
  'wfb_widget' => 'array',
58
- 'wfb_custom_logo' => 'text',
59
- 'wfb_admin_footer_text' => 'text',
60
- 'wfb_login_logo' => 'text',
61
- 'wfb_login_url' => 'text',
62
  'wfb_login_title' => 'text',
63
  'wfb_webmaster' => 'bool',
64
  'wfb_remove_xmlrpc' => 'bool',
@@ -266,7 +267,12 @@ public function admin_init()
266
  wp_redirect(admin_url('options-general.php?page=wp-biz&err=true'));
267
  }
268
  $this->save();
269
- wp_redirect(admin_url('options-general.php?page=wp-biz&update=true'.$_POST['tabid']));
 
 
 
 
 
270
  }
271
  }
272
 
@@ -293,6 +299,12 @@ public function save()
293
  case 'text':
294
  update_option($key, trim($_POST[$key]));
295
  break;
 
 
 
 
 
 
296
  case 'bool':
297
  if ($_POST[$key] === "1") {
298
  update_option($key, trim($_POST[$key]));
@@ -390,9 +402,30 @@ private function get_plugin_url()
390
  return $this->plugin_url;
391
  }
392
 
393
- private function op($key)
394
  {
395
- echo trim(stripslashes(get_option($key)));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
396
  }
397
 
398
  private function sel($id)
2
 
3
  require_once(dirname(__FILE__).'/role.class.php');
4
 
5
+ class TotalHacksAdmin {
6
 
7
  private $contributors = array(
8
  'Takayuki Miyauchi' => array(
45
  private $page_title = 'WP Total Hacks';
46
  private $params = array(
47
  'wfb_google_analytics' => 'text',
48
+ 'wfb_favicon' => 'url',
49
+ 'wfb_apple_icon' => 'url',
50
  'wfb_hide_version' => 'bool',
51
  'wfb_google' => 'text',
52
  'wfb_yahoo' => 'text',
56
  'wfb_autosave' => 'bool',
57
  'wfb_selfping' => 'bool',
58
  'wfb_widget' => 'array',
59
+ 'wfb_custom_logo' => 'url',
60
+ 'wfb_admin_footer_text' => 'html',
61
+ 'wfb_login_logo' => 'url',
62
+ 'wfb_login_url' => 'url',
63
  'wfb_login_title' => 'text',
64
  'wfb_webmaster' => 'bool',
65
  'wfb_remove_xmlrpc' => 'bool',
267
  wp_redirect(admin_url('options-general.php?page=wp-biz&err=true'));
268
  }
269
  $this->save();
270
+ if (preg_match("/^[a-z]+$/", $_POST['tabid'])) {
271
+ $tabid = $_POST['tabid'];
272
+ } else {
273
+ $tabid = '';
274
+ }
275
+ wp_redirect(admin_url('options-general.php?page=wp-biz&update=true#'.$tabid));
276
  }
277
  }
278
 
299
  case 'text':
300
  update_option($key, trim($_POST[$key]));
301
  break;
302
+ case 'url':
303
+ update_option($key, trim($_POST[$key]));
304
+ break;
305
+ case 'html':
306
+ update_option($key, trim($_POST[$key]));
307
+ break;
308
  case 'bool':
309
  if ($_POST[$key] === "1") {
310
  update_option($key, trim($_POST[$key]));
402
  return $this->plugin_url;
403
  }
404
 
405
+ private function op($key, $display = true)
406
  {
407
+ $value = trim(stripslashes(get_option($key)));
408
+ switch ($this->params[$key]) {
409
+ case 'url':
410
+ $value = esc_html(esc_url($value));
411
+ break;
412
+ case 'html':
413
+ $value = $value;
414
+ break;
415
+ case 'int':
416
+ $value = intval($value);
417
+ break;
418
+ case 'bool':
419
+ $value = intval($value);
420
+ break;
421
+ default:
422
+ $value = esc_html($value);
423
+ }
424
+ if ($display) {
425
+ echo $value;
426
+ } else {
427
+ return $value;
428
+ }
429
  }
430
 
431
  private function sel($id)
includes/form/appearance.php CHANGED
@@ -19,7 +19,7 @@
19
  <p><img class="caption" alt="" src="<?php echo $this->get_plugin_url(); ?>/img/admin_footer_text.png"></p>
20
  <div class="poststuff">
21
  <div class="postdivrich" class="postarea">
22
- <?php the_editor(trim(stripslashes(get_option('wfb_admin_footer_text'))), "wfb_admin_footer_text"); ?>
23
  </div><!--end #postdivrich-->
24
  </div><!--end #poststuff-->
25
  </div>
19
  <p><img class="caption" alt="" src="<?php echo $this->get_plugin_url(); ?>/img/admin_footer_text.png"></p>
20
  <div class="poststuff">
21
  <div class="postdivrich" class="postarea">
22
+ <?php the_editor($this->op('wfb_admin_footer_text', false), "wfb_admin_footer_text"); ?>
23
  </div><!--end #postdivrich-->
24
  </div><!--end #poststuff-->
25
  </div>
includes/form/footer.php CHANGED
@@ -12,7 +12,7 @@
12
  window.scrollTo(0,0);
13
  var send = window.send_to_editor;
14
  var biz = new wpbiz();
15
- jQuery('#tabid').val(location.hash);
16
 
17
  // setup tab menu
18
  jQuery('#tabs .tab').each(function(){
@@ -26,7 +26,9 @@
26
  jQuery("#tabs h3").css('display', 'none');
27
  });
28
  jQuery("#menu a").click(function(){
29
- jQuery('#tabid').val(jQuery(this).attr('href'));
 
 
30
  });
31
  jQuery('#tabs').css('display', 'block');
32
 
12
  window.scrollTo(0,0);
13
  var send = window.send_to_editor;
14
  var biz = new wpbiz();
15
+ jQuery('#tabid').val(location.hash.substring(1, location.hash.length));
16
 
17
  // setup tab menu
18
  jQuery('#tabs .tab').each(function(){
26
  jQuery("#tabs h3").css('display', 'none');
27
  });
28
  jQuery("#menu a").click(function(){
29
+ var href = jQuery(this).attr('href');
30
+ href = href.substring(1, href.length);
31
+ jQuery('#tabid').val(href);
32
  });
33
  jQuery('#tabs').css('display', 'block');
34
 
includes/form/site.php CHANGED
@@ -10,6 +10,15 @@
10
  </div>
11
  </div>
12
 
 
 
 
 
 
 
 
 
 
13
  <div class="block">
14
  <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Remove "wlwmanifest" and "xmlrpc" from meta.', 'wp-total-hacks'); ?></h4>
15
  <div class="block_content">
10
  </div>
11
  </div>
12
 
13
+ <div class="block">
14
+ <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Add a apple-touch-icon', 'wp-total-hacks'); ?></h4>
15
+ <div class="block_content">
16
+ <p><?php _e('Please upload .png image.', 'wp-total-hacks'); ?></p>
17
+ <input type="text" id="wfb_apple_icon" name="wfb_apple_icon" class="media" value="<?php $this->op('wfb_apple_icon'); ?>" />
18
+ <a class="media-upload" href="JavaScript:void(0);" rel="wfb_apple_icon"><?php _e('Select File', 'wp-total-hacks'); ?></a>
19
+ </div>
20
+ </div>
21
+
22
  <div class="block">
23
  <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Remove "wlwmanifest" and "xmlrpc" from meta.', 'wp-total-hacks'); ?></h4>
24
  <div class="block_content">
langs/wp-total-hacks-de_DE.mo DELETED
Binary file
langs/wp-total-hacks-it_IT.mo DELETED
Binary file
langs/wp-total-hacks-ja.mo DELETED
Binary file
langs/wp-total-hacks-nl_NL.mo DELETED
Binary file
langs/wp-total-hacks-nl_NL.po DELETED
@@ -1,359 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: PACKAGE VERSION\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-05-23 14:56+0900\n"
6
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
7
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
- "Language-Team: LANGUAGE <LL@li.org>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=CHARSET\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: \n"
14
- "X-Poedit-Country: \n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
- "X-Poedit-Basepath: \n"
18
- "X-Poedit-Bookmarks: \n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
-
22
- #: includes/form/appearance.php:3
23
- #@ wp-total-hacks
24
- msgid "Appearance in admin"
25
- msgstr "Verschijning in admin"
26
-
27
- #: includes/form/appearance.php:6
28
- #@ wp-total-hacks
29
- msgid "Change admin header logo"
30
- msgstr "Wijzig admin header logo"
31
-
32
- #: includes/form/appearance.php:8
33
- #@ wp-total-hacks
34
- msgid "Upload 30 x 30 pixel image for admin header logo."
35
- msgstr "Upload een afbeelding voor de admin header (30 x 30 pixel)"
36
-
37
- #: includes/form/appearance.php:11
38
- #: includes/form/appearance.php:35
39
- #: includes/form/site.php:9
40
- #@ wp-total-hacks
41
- msgid "Select File"
42
- msgstr "Selecteer een bestand"
43
-
44
- #: includes/form/appearance.php:16
45
- #@ wp-total-hacks
46
- msgid "Change admin footer text"
47
- msgstr "Wijzig de admin footer text"
48
-
49
- #: includes/form/appearance.php:18
50
- #@ wp-total-hacks
51
- msgid "You can edit admin footer text. Line breaks will remove."
52
- msgstr "U kan de admin footer tekst wijzigen. Regel overgangen worden verwijderd."
53
-
54
- #: includes/form/appearance.php:29
55
- #@ wp-total-hacks
56
- msgid "Change login logo"
57
- msgstr "Wijzig het login logo"
58
-
59
- #: includes/form/appearance.php:31
60
- #@ wp-total-hacks
61
- msgid "You can customize logo, URL and Title. The logo image size is recommended 310 x 70 pixel."
62
- msgstr "U kan het logo, de URL en de titel aanpassen. Aanbevolen afmeting voor het logo is 310 x 70 pixels."
63
-
64
- #: includes/form/appearance.php:34
65
- #@ wp-total-hacks
66
- msgid "Logo"
67
- msgstr "Logo"
68
-
69
- #: includes/form/appearance.php:36
70
- #@ wp-total-hacks
71
- msgid "URL"
72
- msgstr "URL"
73
-
74
- #: includes/form/appearance.php:38
75
- #@ wp-total-hacks
76
- msgid "Title"
77
- msgstr "Titel"
78
-
79
- #: includes/form/footer.php:2
80
- #@ wp-total-hacks
81
- msgid "Translators"
82
- msgstr "Vertalers"
83
-
84
- #: includes/form/footer.php:7
85
- #@ wp-total-hacks
86
- msgid "Contributors"
87
- msgstr "Medewerkers"
88
-
89
- #: includes/form/other.php:2
90
- #@ wp-total-hacks
91
- msgid "Other"
92
- msgstr "Andere"
93
-
94
- #: includes/form/other.php:5
95
- #@ wp-total-hacks
96
- msgid "Deactive Dashboard Widgets"
97
- msgstr "Schakel Dashboard Widgets uit"
98
-
99
- #: includes/form/other.php:7
100
- #: includes/form/post.php:8
101
- #: includes/form/post.php:27
102
- #@ wp-total-hacks
103
- msgid "Click on the check box that you want to delete."
104
- msgstr "Click op de check box die je wil wissen."
105
-
106
- #: includes/form/other.php:24
107
- #@ wp-total-hacks
108
- msgid "Add role \"Webmaster\""
109
- msgstr "Voeg de functie \"Webmaster\" toe"
110
-
111
- #: includes/form/other.php:26
112
- #@ wp-total-hacks
113
- msgid "\"Webmaster\" is role able to \"Editor\" + \"edit_theme_options\"."
114
- msgstr "\"Webmaster\" is functie van \"Editor\" + \"edit_theme_options\"."
115
-
116
- #: includes/form/other.php:32
117
- #@ wp-total-hacks
118
- msgid "Change the default eamil address"
119
- msgstr "Wijzig uw standaard email adres"
120
-
121
- #: includes/form/other.php:34
122
- #@ wp-total-hacks
123
- msgid "Change the default eamil address and sender name."
124
- msgstr "Wijzig us standaard email adres en weergegeven naam."
125
-
126
- #: includes/form/other.php:36
127
- #@ default
128
- msgid "Name"
129
- msgstr ""
130
-
131
- #: includes/form/other.php:38
132
- #@ default
133
- msgid "Email"
134
- msgstr ""
135
-
136
- #: includes/form/other.php:45
137
- #@ wp-total-hacks
138
- msgid "Delete default contact methods"
139
- msgstr "Wis de standaard contact methodes"
140
-
141
- #: includes/form/other.php:47
142
- #@ wp-total-hacks
143
- msgid "Delete default contact methods from user profile."
144
- msgstr "Wis de standaard contact methodes van het gebruikersprofiel"
145
-
146
- #: includes/form/other.php:64
147
- #@ wp-total-hacks
148
- msgid "Remove Update Notification"
149
- msgstr "Wis Update Aankondiging"
150
-
151
- #: includes/form/other.php:66
152
- #@ wp-total-hacks
153
- msgid "Remove Update Notification for all users except Admin User."
154
- msgstr "Wis Update Aankondiging voor alle gebruikers behalve Admin User."
155
-
156
- #: includes/form/post.php:3
157
- #@ wp-total-hacks
158
- msgid "Posts & Pages"
159
- msgstr "Berichten & Pagina's"
160
-
161
- #: includes/form/post.php:6
162
- #@ wp-total-hacks
163
- msgid "Delete meta boxes for Posts"
164
- msgstr "Wis meta boxes voor berichten"
165
-
166
- #: includes/form/post.php:25
167
- #@ wp-total-hacks
168
- msgid "Delete meta boxes for Pages"
169
- msgstr "Wis meta boxes voor pagina 's"
170
-
171
- #: includes/form/post.php:44
172
- #@ wp-total-hacks
173
- msgid "Revision Control"
174
- msgstr "Versie Controle"
175
-
176
- #: includes/form/post.php:46
177
- #@ wp-total-hacks
178
- msgid "Please select limit the number of allowed revisions."
179
- msgstr "Gelieve een maximum van herzieningen op te geven."
180
-
181
- #: includes/form/post.php:48
182
- #@ wp-total-hacks
183
- msgid "Store All"
184
- msgstr "Sla alles op"
185
-
186
- #: includes/form/post.php:64
187
- #@ wp-total-hacks
188
- msgid "Disable Auto Save"
189
- msgstr "Schakel Auto Opslaan uit"
190
-
191
- #: includes/form/post.php:71
192
- #@ wp-total-hacks
193
- msgid "Stop Self Pings"
194
- msgstr "Stop Self Pings"
195
-
196
- #: includes/form/post.php:73
197
- #@ wp-total-hacks
198
- msgid "Stop sending pings from your own site to your own site when you write posts."
199
- msgstr "Stop het versturen van pings van uw site naar uw site tijdens het schrijven van berichten."
200
-
201
- #: includes/form/post.php:79
202
- #@ wp-total-hacks
203
- msgid "Add \"Excerpt\" support for Pages."
204
- msgstr "Voeg \"Excerpt\" ondersteuning toe voor Pagina 's"
205
-
206
- #: includes/form/post.php:81
207
- #@ wp-total-hacks
208
- msgid "Requires to add excerpt text in a Pages."
209
- msgstr "Verplicht om excerpt tekst toe te voegen bij Pagina 's"
210
-
211
- #: includes/form/sidebar.php:2
212
- #@ wp-total-hacks
213
- msgid "WordPress Plugins"
214
- msgstr "WordPress Plugins"
215
-
216
- #: includes/form/sidebar.php:13
217
- #@ wp-total-hacks
218
- msgid "This Plugin needs your support"
219
- msgstr "Deze Plugin heeft uw aandacht nodig"
220
-
221
- #: includes/form/sidebar.php:14
222
- #@ wp-total-hacks
223
- msgid "Please help support the continued development."
224
- msgstr "Help ons het verdere ontwikkelen te realiseren."
225
-
226
- #: includes/form/sidebar.php:16
227
- #@ wp-total-hacks
228
- msgid "$200+ makes you an official contributor."
229
- msgstr "Bij stortingen van mer dan 200 $ wordt u een officieel medewerker."
230
-
231
- #: includes/form/sidebar.php:20
232
- #@ wp-total-hacks
233
- msgid "Contact"
234
- msgstr "Contact"
235
-
236
- #: includes/form/site.php:2
237
- #@ wp-total-hacks
238
- msgid "Site Settings"
239
- msgstr "Site Instellingen"
240
-
241
- #: includes/form/site.php:5
242
- #@ wp-total-hacks
243
- msgid "Add a favicon"
244
- msgstr "Voeg een favicon toe"
245
-
246
- #: includes/form/site.php:7
247
- #@ wp-total-hacks
248
- msgid "Please upload .ico image."
249
- msgstr "Upload een .ico afbeelding."
250
-
251
- #: includes/form/site.php:14
252
- #@ wp-total-hacks
253
- msgid "Enable auto remove \"wlwmanifest\" and \"xmlrpc\" from meta."
254
- msgstr "Schakel automatisch verwijderen \"wlwmanifest\" en \"xmlrpc\" van meta in."
255
-
256
- #: includes/form/site.php:16
257
- #, php-format
258
- #@ wp-total-hacks
259
- msgid "If you don't use \"<a href=\"%s\">Remote Publishing</a>\", remove unnecessary tags from head."
260
- msgstr "Als u geen gebruik maakt van \"<a href=\"%s\">Remote Publishing</a>\", verwijder dan onnodige tags uit de header."
261
-
262
- #: includes/form/site.php:22
263
- #@ wp-total-hacks
264
- msgid "Remove adjacent posts rel links from head on Pages"
265
- msgstr "Verwijder gelijkaardige posts rel links van de hoofdpagina"
266
-
267
- #: includes/form/site.php:24
268
- #@ wp-total-hacks
269
- msgid "Remove adjacent posts rel links from head on Pages.<br /><span class=\"ex\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
270
- msgstr "Verwijder opvolgende posts rel links van de hoofding op pagina 's.<br /><span class=\"ex\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
271
-
272
- #: includes/form/site.php:30
273
- #@ wp-total-hacks
274
- msgid "Remove version number from head"
275
- msgstr "Verwijder versie nummer van de hoofding"
276
-
277
- #: includes/form/site.php:32
278
- #@ wp-total-hacks
279
- msgid "Remove generator tag from head. <span class=\"ex\">e.g. &lt;meta name=\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
280
- msgstr "Verwijder generator tag van de hoofding. <span class=\"ex\">e.g. &lt;meta name=\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
281
-
282
- #: includes/form/site.php:38
283
- #@ wp-total-hacks
284
- msgid "Remove #more anchor"
285
- msgstr "Verwijder #lees meer bladwijzer"
286
-
287
- #: includes/form/site.php:40
288
- #@ wp-total-hacks
289
- msgid "Remove #more-xxx anchor from more links."
290
- msgstr "Verwijder #lees meer-xxx bladwijzer van de meer links."
291
-
292
- #: includes/form/site.php:46
293
- #@ wp-total-hacks
294
- msgid "Remove \"[...]\" from excerpt"
295
- msgstr "Verwijder \"[...]\" van excerpt"
296
-
297
- #: includes/form/site.php:48
298
- #@ wp-total-hacks
299
- msgid "Remove \"[...]\" from output of the_excerpt()."
300
- msgstr "Verwijder \"[...]\" van de uitput van the_excerpt()."
301
-
302
- #: includes/form/site.php:54
303
- #@ wp-total-hacks
304
- msgid "Install Google Analytics"
305
- msgstr "Installeer Google Analytics"
306
-
307
- #: includes/form/site.php:56
308
- #@ wp-total-hacks
309
- msgid "Add Google analytics code."
310
- msgstr "Voeg Google Analytics code toe."
311
-
312
- #: includes/form/site.php:63
313
- #@ wp-total-hacks
314
- msgid "Exclude user logged in."
315
- msgstr "Sluit ingelogde gebruiker uit."
316
-
317
- #: includes/form/site.php:68
318
- #@ wp-total-hacks
319
- msgid "Webmaster Tools Verification"
320
- msgstr "Webmaster Tools verificatie"
321
-
322
- #: includes/form/site.php:70
323
- #@ wp-total-hacks
324
- msgid "Enter your meta key \"content\" value to verify your blog with <a href=\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a href=\"https://siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</a>, and <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
325
- msgstr "Voeg uw meta sleutel \"content\" waarde in om uw blog te verrifiêren met <a href=\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a href=\"https://siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</a>, and <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
326
-
327
- #: includes/wpbiz_admin.php:338
328
- #@ default
329
- msgid "Save Changes"
330
- msgstr ""
331
-
332
- #: includes/wpbiz_admin.php:362
333
- #@ default
334
- msgid "Deactivate"
335
- msgstr ""
336
-
337
- #: includes/wpbiz_admin.php:364
338
- #: includes/wpbiz_admin.php:366
339
- #@ default
340
- msgid "Activate"
341
- msgstr ""
342
-
343
- #: wp-total-hacks.php:281
344
- #@ default
345
- msgid "Settings"
346
- msgstr ""
347
-
348
- #: wp-total-hacks.php:284
349
- #@ wp-total-hacks
350
- msgid "Donate"
351
- msgstr "Steun ons"
352
-
353
- #: includes/form/other.php:16
354
- #: includes/form/post.php:17
355
- #: includes/form/post.php:36
356
- #@ default
357
- msgid "title"
358
- msgstr ""
359
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
langs/wp-total-hacks-tr_TR.mo DELETED
Binary file
languages/wp-total-hacks-de_DE.mo ADDED
Binary file
{langs → languages}/wp-total-hacks-de_DE.po RENAMED
@@ -5,14 +5,37 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: 0.2.1\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2011-05-23 14:56+0900\n"
9
  "PO-Revision-Date: 2011-06-03 09:49+0100\n"
10
  "Last-Translator: Felix Kern <kernfel@gmail.com>\n"
11
  "Language-Team: \n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=utf-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  #: ../includes/form/appearance.php:3
17
  msgid "Appearance in admin"
18
  msgstr "Admin-Erscheinungsbild"
@@ -25,36 +48,37 @@ msgstr "Admin-Kopfzeilenlogo ändern"
25
  msgid "Upload 30 x 30 pixel image for admin header logo."
26
  msgstr "Lade ein Kopfzeilenlogo hoch (Bilddatei, 30*30 Pixel)."
27
 
28
- #: ../includes/form/appearance.php:11
29
- #: ../includes/form/appearance.php:36
30
- msgid "Select File"
31
- msgstr "Datei auswählen..."
32
-
33
  #: ../includes/form/appearance.php:16
34
  msgid "Change admin footer text"
35
  msgstr "Admin-Fußzeilentext ändern"
36
 
37
  #: ../includes/form/appearance.php:18
38
  msgid "You can edit admin footer text. Line breaks will remove."
39
- msgstr "Du kannst deinen eigenen Fußzeilentext festlegen. (Zeilenumbrüche werden entfernt!)"
 
 
40
 
41
- #: ../includes/form/appearance.php:30
42
  msgid "Change login logo"
43
  msgstr "Login-Logo ändern"
44
 
45
- #: ../includes/form/appearance.php:32
46
- msgid "You can customize logo, URL and Title. The logo image size is recommended 310 x 70 pixel."
47
- msgstr "Du kannst das Logo, die URL und den Titel der Loginseite ändern. Das Logo sollte 310*70 Pixel groß sein."
 
 
 
 
48
 
49
- #: ../includes/form/appearance.php:35
50
  msgid "Logo"
51
  msgstr "Logo"
52
 
53
- #: ../includes/form/appearance.php:37
54
  msgid "URL"
55
  msgstr "URL"
56
 
57
- #: ../includes/form/appearance.php:39
58
  msgid "Title"
59
  msgstr "Titel"
60
 
@@ -74,8 +98,7 @@ msgstr "Diverse"
74
  msgid "Deactivate Dashboard Widgets"
75
  msgstr "Dashboard-Widgets deaktivieren"
76
 
77
- #: ../includes/form/other.php:7
78
- #: ../includes/form/post.php:8
79
  #: ../includes/form/post.php:27
80
  msgid "Choose the items you want to remove."
81
  msgstr "Wähle die Elemente, die nicht angezeigt werden sollen."
@@ -85,15 +108,21 @@ msgid "Add role \"Webmaster\""
85
  msgstr "Benutzerrolle \"Webmaster\" hinzufügen"
86
 
87
  #: ../includes/form/other.php:26
88
- msgid "This role has the capabilities of an \"Editor\", but can also edit theme options."
89
- msgstr "\"Webmaster\" haben die gleichen Befugnisse wie \"Redakteure\" und können zusätzlich Theme-Optionen bearbeiten."
 
 
 
 
90
 
91
  #: ../includes/form/other.php:32
92
  msgid "Change default email address"
93
  msgstr "E-Mail-Adresse ändern"
94
 
95
  #: ../includes/form/other.php:34
96
- msgid "Change the email address and sender name used by automatic email notifications."
 
 
97
  msgstr "Ändere den Absender automatischer versandter E-Mails."
98
 
99
  #: ../includes/form/other.php:36
@@ -153,8 +182,11 @@ msgid "Stop self-pingbacks"
153
  msgstr "Pingbacks auf eigene Artikel verhindern"
154
 
155
  #: ../includes/form/post.php:73
156
- msgid "Stop sending pingbacks from your own site to your own site when writing posts."
157
- msgstr "Verhindert, dass deine Artikel Pingbacks von anderen deiner Artikel erhalten."
 
 
 
158
 
159
  #: ../includes/form/post.php:79
160
  msgid "Add \"Excerpt\" support for Pages."
@@ -197,84 +229,95 @@ msgid "Please upload .ico image."
197
  msgstr "Lade eine .ico-Bilddatei hoch."
198
 
199
  #: ../includes/form/site.php:14
 
 
 
 
 
 
 
 
200
  msgid "Remove \"wlwmanifest\" and \"xmlrpc\" from meta."
201
  msgstr "\"wlwmanifest\"- und \"xmlrpc\"-Tags entfernen"
202
 
203
- #: ../includes/form/site.php:16
204
  #, php-format
205
- msgid "If you don't use \"<a href=\"%s\">Remote Publishing</a>\", remove unnecessary tags from head."
206
- msgstr "Wenn du \"<a href=\"%s\">Fernpublizieren</a>\" nicht verwendest, kannst du diese unnötigen Tags aus dem &lt;head&gt; entfernen."
 
 
 
 
207
 
208
- #: ../includes/form/site.php:22
209
  msgid "Remove adjacent posts rel links from head on Pages"
210
- msgstr "rel-Links zu angrenzenden Artikel aus dem &lt;head&gt; von Seiten entfernen"
 
211
 
212
- #: ../includes/form/site.php:24
213
- msgid "Remove adjacent posts rel links from head on Pages.<br /><span class=\"ex\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
214
- msgstr "Entfernt diese bei Seiten unnötigen Links.<br /><span class=\"ex\">z.B. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
 
 
 
 
215
 
216
- #: ../includes/form/site.php:30
217
  msgid "Remove version number from head"
218
  msgstr "Versionsnummer aus dem &lt;head&gt; entfernen"
219
 
220
- #: ../includes/form/site.php:32
221
- msgid "Remove generator tag from head. <span class=\"ex\">e.g. &lt;meta name=\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
222
- msgstr "Entfernt den Generator-Tag (<span class=\"ex\">&lt;meta name=\"generator\" content=\"WordPress x.x.x\" /&gt;</span>) aus dem &lt;head&gt;."
 
 
 
 
223
 
224
- #: ../includes/form/site.php:38
225
  msgid "Remove #more anchor"
226
  msgstr "#more-Anker entfernen"
227
 
228
- #: ../includes/form/site.php:40
229
  msgid "Remove #more-xxx anchor from more links."
230
  msgstr "Entfernt den \"#more-xxx\"-Anker aus den \"Weiterlesen\"-Links."
231
 
232
- #: ../includes/form/site.php:46
233
  msgid "Remove \"[...]\" from excerpt"
234
  msgstr "\"[...]\" aus Auszügen entfernen"
235
 
236
- #: ../includes/form/site.php:48
237
  msgid "Remove \"[...]\" from output of the_excerpt()."
238
  msgstr "Entfernt \"[...]\" aus dem mit the_excerpt() angeforderten Text."
239
 
240
- #: ../includes/form/site.php:54
241
  msgid "Install Google Analytics"
242
  msgstr "Google Analytics installieren"
243
 
244
- #: ../includes/form/site.php:56
245
  msgid "Add Google analytics code."
246
  msgstr "Fügt Google-Analytics-Code ein."
247
 
248
- #: ../includes/form/site.php:63
249
  msgid "Exclude user logged in."
250
  msgstr "Nur für nicht eingeloggte Benutzer"
251
 
252
- #: ../includes/form/site.php:68
253
  msgid "Webmaster Tools Verification"
254
  msgstr ""
255
 
256
- #: ../includes/form/site.php:70
257
- msgid "Enter your meta key \"content\" value to verify your blog with <a href=\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a href=\"https://siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</a>, and <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
258
- msgstr ""
259
-
260
- #: ../includes/wpbiz_admin.php:313
261
- msgid "Save Changes"
262
- msgstr ""
263
-
264
- #: ../includes/wpbiz_admin.php:337
265
- msgid "Deactivate"
266
- msgstr ""
267
-
268
- #: ../includes/wpbiz_admin.php:339
269
- #: ../includes/wpbiz_admin.php:341
270
- msgid "Activate"
271
  msgstr ""
272
 
273
- #: ../wp-total-hacks.php:282
274
  msgid "Settings"
275
  msgstr ""
276
 
277
- #: ../wp-total-hacks.php:285
278
  msgid "Donate"
279
  msgstr "Spenden"
280
-
5
  msgstr ""
6
  "Project-Id-Version: 0.2.1\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2011-09-21 02:55+0900\n"
9
  "PO-Revision-Date: 2011-06-03 09:49+0100\n"
10
  "Last-Translator: Felix Kern <kernfel@gmail.com>\n"
11
  "Language-Team: \n"
12
+ "Language: \n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=utf-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
 
17
+ #: ../includes/admin.php:245 ../includes/form/appearance.php:11
18
+ #: ../includes/form/appearance.php:35 ../includes/form/site.php:9
19
+ #: ../includes/form/site.php:18
20
+ msgid "Select File"
21
+ msgstr "Datei auswählen..."
22
+
23
+ #: ../includes/admin.php:382
24
+ msgid "Saved."
25
+ msgstr ""
26
+
27
+ #: ../includes/admin.php:389
28
+ msgid "Save Changes"
29
+ msgstr ""
30
+
31
+ #: ../includes/admin.php:434
32
+ msgid "Deactivate"
33
+ msgstr ""
34
+
35
+ #: ../includes/admin.php:436 ../includes/admin.php:438
36
+ msgid "Activate"
37
+ msgstr ""
38
+
39
  #: ../includes/form/appearance.php:3
40
  msgid "Appearance in admin"
41
  msgstr "Admin-Erscheinungsbild"
48
  msgid "Upload 30 x 30 pixel image for admin header logo."
49
  msgstr "Lade ein Kopfzeilenlogo hoch (Bilddatei, 30*30 Pixel)."
50
 
 
 
 
 
 
51
  #: ../includes/form/appearance.php:16
52
  msgid "Change admin footer text"
53
  msgstr "Admin-Fußzeilentext ändern"
54
 
55
  #: ../includes/form/appearance.php:18
56
  msgid "You can edit admin footer text. Line breaks will remove."
57
+ msgstr ""
58
+ "Du kannst deinen eigenen Fußzeilentext festlegen. (Zeilenumbrüche werden "
59
+ "entfernt!)"
60
 
61
+ #: ../includes/form/appearance.php:29
62
  msgid "Change login logo"
63
  msgstr "Login-Logo ändern"
64
 
65
+ #: ../includes/form/appearance.php:31
66
+ msgid ""
67
+ "You can customize logo, URL and Title. The logo image size is recommended "
68
+ "310 x 70 pixel."
69
+ msgstr ""
70
+ "Du kannst das Logo, die URL und den Titel der Loginseite ändern. Das Logo "
71
+ "sollte 310*70 Pixel groß sein."
72
 
73
+ #: ../includes/form/appearance.php:34
74
  msgid "Logo"
75
  msgstr "Logo"
76
 
77
+ #: ../includes/form/appearance.php:36
78
  msgid "URL"
79
  msgstr "URL"
80
 
81
+ #: ../includes/form/appearance.php:38
82
  msgid "Title"
83
  msgstr "Titel"
84
 
98
  msgid "Deactivate Dashboard Widgets"
99
  msgstr "Dashboard-Widgets deaktivieren"
100
 
101
+ #: ../includes/form/other.php:7 ../includes/form/post.php:8
 
102
  #: ../includes/form/post.php:27
103
  msgid "Choose the items you want to remove."
104
  msgstr "Wähle die Elemente, die nicht angezeigt werden sollen."
108
  msgstr "Benutzerrolle \"Webmaster\" hinzufügen"
109
 
110
  #: ../includes/form/other.php:26
111
+ msgid ""
112
+ "This role has the capabilities of an \"Editor\", but can also edit theme "
113
+ "options."
114
+ msgstr ""
115
+ "\"Webmaster\" haben die gleichen Befugnisse wie \"Redakteure\" und können "
116
+ "zusätzlich Theme-Optionen bearbeiten."
117
 
118
  #: ../includes/form/other.php:32
119
  msgid "Change default email address"
120
  msgstr "E-Mail-Adresse ändern"
121
 
122
  #: ../includes/form/other.php:34
123
+ msgid ""
124
+ "Change the email address and sender name used by automatic email "
125
+ "notifications."
126
  msgstr "Ändere den Absender automatischer versandter E-Mails."
127
 
128
  #: ../includes/form/other.php:36
182
  msgstr "Pingbacks auf eigene Artikel verhindern"
183
 
184
  #: ../includes/form/post.php:73
185
+ msgid ""
186
+ "Stop sending pingbacks from your own site to your own site when writing "
187
+ "posts."
188
+ msgstr ""
189
+ "Verhindert, dass deine Artikel Pingbacks von anderen deiner Artikel erhalten."
190
 
191
  #: ../includes/form/post.php:79
192
  msgid "Add \"Excerpt\" support for Pages."
229
  msgstr "Lade eine .ico-Bilddatei hoch."
230
 
231
  #: ../includes/form/site.php:14
232
+ msgid "Add a apple-touch-icon"
233
+ msgstr "apple-touch-icon hinzufügen"
234
+
235
+ #: ../includes/form/site.php:16
236
+ msgid "Please upload .png image."
237
+ msgstr "Lade eine .png-Bilddatei hoch."
238
+
239
+ #: ../includes/form/site.php:23
240
  msgid "Remove \"wlwmanifest\" and \"xmlrpc\" from meta."
241
  msgstr "\"wlwmanifest\"- und \"xmlrpc\"-Tags entfernen"
242
 
243
+ #: ../includes/form/site.php:25
244
  #, php-format
245
+ msgid ""
246
+ "If you don't use \"<a href=\"%s\">Remote Publishing</a>\", remove "
247
+ "unnecessary tags from head."
248
+ msgstr ""
249
+ "Wenn du \"<a href=\"%s\">Fernpublizieren</a>\" nicht verwendest, kannst du "
250
+ "diese unnötigen Tags aus dem &lt;head&gt; entfernen."
251
 
252
+ #: ../includes/form/site.php:31
253
  msgid "Remove adjacent posts rel links from head on Pages"
254
+ msgstr ""
255
+ "rel-Links zu angrenzenden Artikel aus dem &lt;head&gt; von Seiten entfernen"
256
 
257
+ #: ../includes/form/site.php:33
258
+ msgid ""
259
+ "Remove adjacent posts rel links from head on Pages.<br /><span class=\"ex"
260
+ "\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
261
+ msgstr ""
262
+ "Entfernt diese bei Seiten unnötigen Links.<br /><span class=\"ex\">z.B. &lt;"
263
+ "link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
264
 
265
+ #: ../includes/form/site.php:39
266
  msgid "Remove version number from head"
267
  msgstr "Versionsnummer aus dem &lt;head&gt; entfernen"
268
 
269
+ #: ../includes/form/site.php:41
270
+ msgid ""
271
+ "Remove generator tag from head. <span class=\"ex\">e.g. &lt;meta name="
272
+ "\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
273
+ msgstr ""
274
+ "Entfernt den Generator-Tag (<span class=\"ex\">&lt;meta name=\"generator\" "
275
+ "content=\"WordPress x.x.x\" /&gt;</span>) aus dem &lt;head&gt;."
276
 
277
+ #: ../includes/form/site.php:47
278
  msgid "Remove #more anchor"
279
  msgstr "#more-Anker entfernen"
280
 
281
+ #: ../includes/form/site.php:49
282
  msgid "Remove #more-xxx anchor from more links."
283
  msgstr "Entfernt den \"#more-xxx\"-Anker aus den \"Weiterlesen\"-Links."
284
 
285
+ #: ../includes/form/site.php:55
286
  msgid "Remove \"[...]\" from excerpt"
287
  msgstr "\"[...]\" aus Auszügen entfernen"
288
 
289
+ #: ../includes/form/site.php:57
290
  msgid "Remove \"[...]\" from output of the_excerpt()."
291
  msgstr "Entfernt \"[...]\" aus dem mit the_excerpt() angeforderten Text."
292
 
293
+ #: ../includes/form/site.php:63
294
  msgid "Install Google Analytics"
295
  msgstr "Google Analytics installieren"
296
 
297
+ #: ../includes/form/site.php:65
298
  msgid "Add Google analytics code."
299
  msgstr "Fügt Google-Analytics-Code ein."
300
 
301
+ #: ../includes/form/site.php:72
302
  msgid "Exclude user logged in."
303
  msgstr "Nur für nicht eingeloggte Benutzer"
304
 
305
+ #: ../includes/form/site.php:77
306
  msgid "Webmaster Tools Verification"
307
  msgstr ""
308
 
309
+ #: ../includes/form/site.php:79
310
+ msgid ""
311
+ "Enter your meta key \"content\" value to verify your blog with <a href="
312
+ "\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a "
313
+ "href=\"https://siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</a>, "
314
+ "and <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
 
 
 
 
 
 
 
 
 
315
  msgstr ""
316
 
317
+ #: ../wp-total-hacks.php:292
318
  msgid "Settings"
319
  msgstr ""
320
 
321
+ #: ../wp-total-hacks.php:295
322
  msgid "Donate"
323
  msgstr "Spenden"
 
languages/wp-total-hacks-it_IT.mo ADDED
Binary file
{langs → languages}/wp-total-hacks-it_IT.po RENAMED
@@ -7,7 +7,7 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: PACKAGE VERSION\n"
9
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2011-05-23 14:56+0900\n"
11
  "PO-Revision-Date: 2011-05-23 09:15+0100\n"
12
  "Last-Translator: Andrea Bersi\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,6 +16,28 @@ msgstr ""
16
  "Content-Type: text/plain; charset=utf-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  #: ../includes/form/appearance.php:3
20
  msgid "Appearance in admin"
21
  msgstr "Aspetto in amministrazione"
@@ -28,36 +50,37 @@ msgstr "Cambia logo in testata amministrazione"
28
  msgid "Upload 30 x 30 pixel image for admin header logo."
29
  msgstr "Carica immagine 30 x 30 pixel per logo amministrazione"
30
 
31
- #: ../includes/form/appearance.php:11
32
- #: ../includes/form/appearance.php:36
33
- msgid "Select File"
34
- msgstr "Seleziona file"
35
-
36
  #: ../includes/form/appearance.php:16
37
  msgid "Change admin footer text"
38
  msgstr "Cambia testo piè di pagina amministrazione"
39
 
40
  #: ../includes/form/appearance.php:18
41
  msgid "You can edit admin footer text. Line breaks will remove."
42
- msgstr "Puoi cambiare il testo del pié di pagina amministrazione. Gli a capo vengono rimosssi"
 
 
43
 
44
- #: ../includes/form/appearance.php:30
45
  msgid "Change login logo"
46
  msgstr "Cambia logo finestra accesso backend"
47
 
48
- #: ../includes/form/appearance.php:32
49
- msgid "You can customize logo, URL and Title. The logo image size is recommended 310 x 70 pixel."
50
- msgstr "Puoi personalizzare logo, URL e titolo. L'immagine del logo raccomandata è 310 x 70 pixel."
 
 
 
 
51
 
52
- #: ../includes/form/appearance.php:35
53
  msgid "Logo"
54
  msgstr "Logo"
55
 
56
- #: ../includes/form/appearance.php:37
57
  msgid "URL"
58
  msgstr "URL"
59
 
60
- #: ../includes/form/appearance.php:39
61
  msgid "Title"
62
  msgstr "Titolo"
63
 
@@ -77,8 +100,7 @@ msgstr "Altro"
77
  msgid "Deactivate Dashboard Widgets"
78
  msgstr "Disattiva Widgets Bacheca"
79
 
80
- #: ../includes/form/other.php:7
81
- #: ../includes/form/post.php:8
82
  #: ../includes/form/post.php:27
83
  msgid "Choose the items you want to remove."
84
  msgstr "Click sul check box per cancellare"
@@ -88,7 +110,9 @@ msgid "Add role \"Webmaster\""
88
  msgstr "Aggiungi ruolo \"Webmaster\""
89
 
90
  #: ../includes/form/other.php:26
91
- msgid "This role has the capabilities of an \"Editor\", but can also edit theme options."
 
 
92
  msgstr "\"Webmaster\" è ruolo analogo a \"Editor\" + \"edit_theme_options\" "
93
 
94
  #: ../includes/form/other.php:32
@@ -96,7 +120,9 @@ msgid "Change default email address"
96
  msgstr "Cambia valore email di default"
97
 
98
  #: ../includes/form/other.php:34
99
- msgid "Change the email address and sender name used by automatic email notifications."
 
 
100
  msgstr "Cambia valore email di default e nome del sender"
101
 
102
  #: ../includes/form/other.php:36
@@ -121,7 +147,8 @@ msgstr "Rimuovi notifiche di aggiornamento"
121
 
122
  #: ../includes/form/other.php:66
123
  msgid "Remove Update Notification for all users except Admin User."
124
- msgstr "Rimuovi notifiche di aggiornamento per tutti utenti tranne Amministratore"
 
125
 
126
  #: ../includes/form/post.php:3
127
  msgid "Posts &amp; Pages"
@@ -156,7 +183,9 @@ msgid "Stop self-pingbacks"
156
  msgstr "Stop self-pingbacks"
157
 
158
  #: ../includes/form/post.php:73
159
- msgid "Stop sending pingbacks from your own site to your own site when writing posts."
 
 
160
  msgstr "Stop sending pings verso altri siti quando pubblichi contenuti."
161
 
162
  #: ../includes/form/post.php:79
@@ -200,84 +229,98 @@ msgid "Please upload .ico image."
200
  msgstr "Caricare una immagine .ico"
201
 
202
  #: ../includes/form/site.php:14
 
 
 
 
 
 
 
 
203
  msgid "Remove \"wlwmanifest\" and \"xmlrpc\" from meta."
204
  msgstr "Abilita la rimozione di \"wlwmanifest\" e \"xmlrpc\" dai meta tag"
205
 
206
- #: ../includes/form/site.php:16
207
  #, php-format
208
- msgid "If you don't use \"<a href=\"%s\">Remote Publishing</a>\", remove unnecessary tags from head."
209
- msgstr "Se non usi \"<a href=\"%s\">Pubblucazione da remoto</a>\" rimuovi i tag relativi dai meta tag"
 
 
 
 
210
 
211
- #: ../includes/form/site.php:22
212
  msgid "Remove adjacent posts rel links from head on Pages"
213
  msgstr "Rimuovi rel links dall'head nelle pagine"
214
 
215
- #: ../includes/form/site.php:24
216
- msgid "Remove adjacent posts rel links from head on Pages.<br /><span class=\"ex\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
217
- msgstr "Rimuovi rel links dall'head nelle pagine<br /><span class=\"ex\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
 
 
 
 
218
 
219
- #: ../includes/form/site.php:30
220
  msgid "Remove version number from head"
221
  msgstr "Rimuovi tag di versione dai meta tag"
222
 
223
- #: ../includes/form/site.php:32
224
- msgid "Remove generator tag from head. <span class=\"ex\">e.g. &lt;meta name=\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
225
- msgstr "Rimuovi tag di versione dai meta tag. <span class=\"ex\">e.g. &lt;meta name=\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
 
 
 
 
226
 
227
- #: ../includes/form/site.php:38
228
  msgid "Remove #more anchor"
229
  msgstr "Rimuovi il tag #more "
230
 
231
- #: ../includes/form/site.php:40
232
  msgid "Remove #more-xxx anchor from more links."
233
  msgstr "Rimuovi il tag #more-xxx dai link"
234
 
235
- #: ../includes/form/site.php:46
236
  msgid "Remove \"[...]\" from excerpt"
237
  msgstr "Rimuovi [...] dai riassunti"
238
 
239
- #: ../includes/form/site.php:48
240
  msgid "Remove \"[...]\" from output of the_excerpt()."
241
  msgstr "Rimuovi [...] dal testo dei riassunti"
242
 
243
- #: ../includes/form/site.php:54
244
  msgid "Install Google Analytics"
245
  msgstr "Installa Google Analytics"
246
 
247
- #: ../includes/form/site.php:56
248
  msgid "Add Google analytics code."
249
  msgstr "Aggiungi codice pe rGoogle Analytics"
250
 
251
- #: ../includes/form/site.php:63
252
  msgid "Exclude user logged in."
253
  msgstr "Escludi utente loggato"
254
 
255
- #: ../includes/form/site.php:68
256
  msgid "Webmaster Tools Verification"
257
  msgstr "Webmaster Tools Verification"
258
 
259
- #: ../includes/form/site.php:70
260
- msgid "Enter your meta key \"content\" value to verify your blog with <a href=\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a href=\"https://siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</a>, and <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
261
- msgstr "Inserisci la chiave dei meta tag \"content\" per verificare il sito su <a href=\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a href=\"https://siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</a>, e <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
262
-
263
- #: ../includes/wpbiz_admin.php:313
264
- msgid "Save Changes"
265
- msgstr "Salva"
266
-
267
- #: ../includes/wpbiz_admin.php:337
268
- msgid "Deactivate"
269
- msgstr "Disattiva"
270
-
271
- #: ../includes/wpbiz_admin.php:339
272
- #: ../includes/wpbiz_admin.php:341
273
- msgid "Activate"
274
- msgstr "Attiva"
275
 
276
- #: ../wp-total-hacks.php:282
277
  msgid "Settings"
278
  msgstr "Impostazioni"
279
 
280
- #: ../wp-total-hacks.php:285
281
  msgid "Donate"
282
  msgstr "Dona"
283
-
7
  msgstr ""
8
  "Project-Id-Version: PACKAGE VERSION\n"
9
  "Report-Msgid-Bugs-To: \n"
10
+ "POT-Creation-Date: 2011-09-21 02:55+0900\n"
11
  "PO-Revision-Date: 2011-05-23 09:15+0100\n"
12
  "Last-Translator: Andrea Bersi\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
  "Content-Type: text/plain; charset=utf-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
 
19
+ #: ../includes/admin.php:245 ../includes/form/appearance.php:11
20
+ #: ../includes/form/appearance.php:35 ../includes/form/site.php:9
21
+ #: ../includes/form/site.php:18
22
+ msgid "Select File"
23
+ msgstr "Seleziona file"
24
+
25
+ #: ../includes/admin.php:382
26
+ msgid "Saved."
27
+ msgstr ""
28
+
29
+ #: ../includes/admin.php:389
30
+ msgid "Save Changes"
31
+ msgstr "Salva"
32
+
33
+ #: ../includes/admin.php:434
34
+ msgid "Deactivate"
35
+ msgstr "Disattiva"
36
+
37
+ #: ../includes/admin.php:436 ../includes/admin.php:438
38
+ msgid "Activate"
39
+ msgstr "Attiva"
40
+
41
  #: ../includes/form/appearance.php:3
42
  msgid "Appearance in admin"
43
  msgstr "Aspetto in amministrazione"
50
  msgid "Upload 30 x 30 pixel image for admin header logo."
51
  msgstr "Carica immagine 30 x 30 pixel per logo amministrazione"
52
 
 
 
 
 
 
53
  #: ../includes/form/appearance.php:16
54
  msgid "Change admin footer text"
55
  msgstr "Cambia testo piè di pagina amministrazione"
56
 
57
  #: ../includes/form/appearance.php:18
58
  msgid "You can edit admin footer text. Line breaks will remove."
59
+ msgstr ""
60
+ "Puoi cambiare il testo del pié di pagina amministrazione. Gli a capo vengono "
61
+ "rimosssi"
62
 
63
+ #: ../includes/form/appearance.php:29
64
  msgid "Change login logo"
65
  msgstr "Cambia logo finestra accesso backend"
66
 
67
+ #: ../includes/form/appearance.php:31
68
+ msgid ""
69
+ "You can customize logo, URL and Title. The logo image size is recommended "
70
+ "310 x 70 pixel."
71
+ msgstr ""
72
+ "Puoi personalizzare logo, URL e titolo. L'immagine del logo raccomandata è "
73
+ "310 x 70 pixel."
74
 
75
+ #: ../includes/form/appearance.php:34
76
  msgid "Logo"
77
  msgstr "Logo"
78
 
79
+ #: ../includes/form/appearance.php:36
80
  msgid "URL"
81
  msgstr "URL"
82
 
83
+ #: ../includes/form/appearance.php:38
84
  msgid "Title"
85
  msgstr "Titolo"
86
 
100
  msgid "Deactivate Dashboard Widgets"
101
  msgstr "Disattiva Widgets Bacheca"
102
 
103
+ #: ../includes/form/other.php:7 ../includes/form/post.php:8
 
104
  #: ../includes/form/post.php:27
105
  msgid "Choose the items you want to remove."
106
  msgstr "Click sul check box per cancellare"
110
  msgstr "Aggiungi ruolo \"Webmaster\""
111
 
112
  #: ../includes/form/other.php:26
113
+ msgid ""
114
+ "This role has the capabilities of an \"Editor\", but can also edit theme "
115
+ "options."
116
  msgstr "\"Webmaster\" è ruolo analogo a \"Editor\" + \"edit_theme_options\" "
117
 
118
  #: ../includes/form/other.php:32
120
  msgstr "Cambia valore email di default"
121
 
122
  #: ../includes/form/other.php:34
123
+ msgid ""
124
+ "Change the email address and sender name used by automatic email "
125
+ "notifications."
126
  msgstr "Cambia valore email di default e nome del sender"
127
 
128
  #: ../includes/form/other.php:36
147
 
148
  #: ../includes/form/other.php:66
149
  msgid "Remove Update Notification for all users except Admin User."
150
+ msgstr ""
151
+ "Rimuovi notifiche di aggiornamento per tutti utenti tranne Amministratore"
152
 
153
  #: ../includes/form/post.php:3
154
  msgid "Posts &amp; Pages"
183
  msgstr "Stop self-pingbacks"
184
 
185
  #: ../includes/form/post.php:73
186
+ msgid ""
187
+ "Stop sending pingbacks from your own site to your own site when writing "
188
+ "posts."
189
  msgstr "Stop sending pings verso altri siti quando pubblichi contenuti."
190
 
191
  #: ../includes/form/post.php:79
229
  msgstr "Caricare una immagine .ico"
230
 
231
  #: ../includes/form/site.php:14
232
+ msgid "Add a apple-touch-icon"
233
+ msgstr "Aggiungi apple-touch-icon"
234
+
235
+ #: ../includes/form/site.php:16
236
+ msgid "Please upload .png image."
237
+ msgstr "Caricare una immagine .png"
238
+
239
+ #: ../includes/form/site.php:23
240
  msgid "Remove \"wlwmanifest\" and \"xmlrpc\" from meta."
241
  msgstr "Abilita la rimozione di \"wlwmanifest\" e \"xmlrpc\" dai meta tag"
242
 
243
+ #: ../includes/form/site.php:25
244
  #, php-format
245
+ msgid ""
246
+ "If you don't use \"<a href=\"%s\">Remote Publishing</a>\", remove "
247
+ "unnecessary tags from head."
248
+ msgstr ""
249
+ "Se non usi \"<a href=\"%s\">Pubblucazione da remoto</a>\" rimuovi i tag "
250
+ "relativi dai meta tag"
251
 
252
+ #: ../includes/form/site.php:31
253
  msgid "Remove adjacent posts rel links from head on Pages"
254
  msgstr "Rimuovi rel links dall'head nelle pagine"
255
 
256
+ #: ../includes/form/site.php:33
257
+ msgid ""
258
+ "Remove adjacent posts rel links from head on Pages.<br /><span class=\"ex"
259
+ "\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
260
+ msgstr ""
261
+ "Rimuovi rel links dall'head nelle pagine<br /><span class=\"ex\">e.g. &lt;"
262
+ "link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
263
 
264
+ #: ../includes/form/site.php:39
265
  msgid "Remove version number from head"
266
  msgstr "Rimuovi tag di versione dai meta tag"
267
 
268
+ #: ../includes/form/site.php:41
269
+ msgid ""
270
+ "Remove generator tag from head. <span class=\"ex\">e.g. &lt;meta name="
271
+ "\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
272
+ msgstr ""
273
+ "Rimuovi tag di versione dai meta tag. <span class=\"ex\">e.g. &lt;meta name="
274
+ "\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
275
 
276
+ #: ../includes/form/site.php:47
277
  msgid "Remove #more anchor"
278
  msgstr "Rimuovi il tag #more "
279
 
280
+ #: ../includes/form/site.php:49
281
  msgid "Remove #more-xxx anchor from more links."
282
  msgstr "Rimuovi il tag #more-xxx dai link"
283
 
284
+ #: ../includes/form/site.php:55
285
  msgid "Remove \"[...]\" from excerpt"
286
  msgstr "Rimuovi [...] dai riassunti"
287
 
288
+ #: ../includes/form/site.php:57
289
  msgid "Remove \"[...]\" from output of the_excerpt()."
290
  msgstr "Rimuovi [...] dal testo dei riassunti"
291
 
292
+ #: ../includes/form/site.php:63
293
  msgid "Install Google Analytics"
294
  msgstr "Installa Google Analytics"
295
 
296
+ #: ../includes/form/site.php:65
297
  msgid "Add Google analytics code."
298
  msgstr "Aggiungi codice pe rGoogle Analytics"
299
 
300
+ #: ../includes/form/site.php:72
301
  msgid "Exclude user logged in."
302
  msgstr "Escludi utente loggato"
303
 
304
+ #: ../includes/form/site.php:77
305
  msgid "Webmaster Tools Verification"
306
  msgstr "Webmaster Tools Verification"
307
 
308
+ #: ../includes/form/site.php:79
309
+ msgid ""
310
+ "Enter your meta key \"content\" value to verify your blog with <a href="
311
+ "\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a "
312
+ "href=\"https://siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</a>, "
313
+ "and <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
314
+ msgstr ""
315
+ "Inserisci la chiave dei meta tag \"content\" per verificare il sito su <a "
316
+ "href=\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</"
317
+ "a>, <a href=\"https://siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</"
318
+ "a>, e <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
 
 
 
 
 
319
 
320
+ #: ../wp-total-hacks.php:292
321
  msgid "Settings"
322
  msgstr "Impostazioni"
323
 
324
+ #: ../wp-total-hacks.php:295
325
  msgid "Donate"
326
  msgstr "Dona"
 
languages/wp-total-hacks-ja.mo ADDED
Binary file
{langs → languages}/wp-total-hacks-ja.po RENAMED
@@ -8,7 +8,7 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2011-05-23 14:56+0900\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,6 +17,28 @@ msgstr ""
17
  "Content-Type: text/plain; charset=utf-8\n"
18
  "Content-Transfer-Encoding: 8bit\n"
19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #: ../includes/form/appearance.php:3
21
  msgid "Appearance in admin"
22
  msgstr "外観"
@@ -29,10 +51,6 @@ msgstr "管理画面のヘッダーのロゴを変更"
29
  msgid "Upload 30 x 30 pixel image for admin header logo."
30
  msgstr "30 x 30 ピクセルの画像をアップロードしてください。"
31
 
32
- #: ../includes/form/appearance.php:11 ../includes/form/appearance.php:36
33
- msgid "Select File"
34
- msgstr "ファイルを選択"
35
-
36
  #: ../includes/form/appearance.php:16
37
  msgid "Change admin footer text"
38
  msgstr "管理画面フッターを変更"
@@ -41,11 +59,11 @@ msgstr "管理画面フッターを変更"
41
  msgid "You can edit admin footer text. Line breaks will remove."
42
  msgstr "管理画面フッターのテキストを変更できます。改行は無視されます。"
43
 
44
- #: ../includes/form/appearance.php:30
45
  msgid "Change login logo"
46
  msgstr "ログイン画面のロゴを変更"
47
 
48
- #: ../includes/form/appearance.php:32
49
  msgid ""
50
  "You can customize logo, URL and Title. The logo image size is recommended "
51
  "310 x 70 pixel."
@@ -53,15 +71,15 @@ msgstr ""
53
  "ログイン画面のロゴ、リンク先URL、リンクタイトルを変更できます。ロゴ画像のサイ"
54
  "ズは、310 x 70 ピクセルをおすすめします。"
55
 
56
- #: ../includes/form/appearance.php:35
57
  msgid "Logo"
58
  msgstr "ロゴ"
59
 
60
- #: ../includes/form/appearance.php:37
61
  msgid "URL"
62
  msgstr "URL"
63
 
64
- #: ../includes/form/appearance.php:39
65
  msgid "Title"
66
  msgstr "タイトル"
67
 
@@ -91,7 +109,9 @@ msgid "Add role \"Webmaster\""
91
  msgstr "\"Webmaster\" 権限を追加"
92
 
93
  #: ../includes/form/other.php:26
94
- msgid "This role has the capabilities of an \"Editor\", but can also edit theme options."
 
 
95
  msgstr ""
96
  "\"Webmaster\" は、\"Editor\" 権限と \"edit_theme_options\" が可能です。"
97
 
@@ -100,7 +120,9 @@ msgid "Change default email address"
100
  msgstr "デフォルトのメールアドレスを変更"
101
 
102
  #: ../includes/form/other.php:34
103
- msgid "Change the email address and sender name used by automatic email notifications."
 
 
104
  msgstr "デフォルトのメールアドレスと送信者名を変更します。"
105
 
106
  #: ../includes/form/other.php:36
@@ -161,7 +183,8 @@ msgstr "セルフピンバックを停止"
161
 
162
  #: ../includes/form/post.php:73
163
  msgid ""
164
- "Stop sending pingbacks from your own site to your own site when writing posts."
 
165
  msgstr "あなたのサイトからあなたのサイトへのピンバックを停止する。"
166
 
167
  #: ../includes/form/post.php:79
@@ -205,10 +228,18 @@ msgid "Please upload .ico image."
205
  msgstr ".ico 画像をアップロードしてください。"
206
 
207
  #: ../includes/form/site.php:14
 
 
 
 
 
 
 
 
208
  msgid "Remove \"wlwmanifest\" and \"xmlrpc\" from meta."
209
  msgstr "\"wlwmanifest\" と \"xmlrpc\" の自動削除"
210
 
211
- #: ../includes/form/site.php:16
212
  #, php-format
213
  msgid ""
214
  "If you don't use \"<a href=\"%s\">Remote Publishing</a>\", remove "
@@ -217,11 +248,11 @@ msgstr ""
217
  "もし、\"<a href=\"%s\">リモート投稿</a>\" を使用しないなら、不必要なタグを "
218
  "head から取り除きます。"
219
 
220
- #: ../includes/form/site.php:22
221
  msgid "Remove adjacent posts rel links from head on Pages"
222
  msgstr "前後の投稿へのリンクをページで無効化"
223
 
224
- #: ../includes/form/site.php:24
225
  msgid ""
226
  "Remove adjacent posts rel links from head on Pages.<br /><span class=\"ex"
227
  "\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
@@ -229,11 +260,11 @@ msgstr ""
229
  "前後の投稿へのリンクをページで無効にする。<br /><span class=\"ex\">e.g. &lt;"
230
  "link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
231
 
232
- #: ../includes/form/site.php:30
233
  msgid "Remove version number from head"
234
  msgstr "バージョン情報を head から削除"
235
 
236
- #: ../includes/form/site.php:32
237
  msgid ""
238
  "Remove generator tag from head. <span class=\"ex\">e.g. &lt;meta name="
239
  "\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
@@ -241,39 +272,39 @@ msgstr ""
241
  "generator タグを head から削除します。<span class=\"ex\">e.g. &lt;meta name="
242
  "\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
243
 
244
- #: ../includes/form/site.php:38
245
  msgid "Remove #more anchor"
246
  msgstr "#more アンカーの削除"
247
 
248
- #: ../includes/form/site.php:40
249
  msgid "Remove #more-xxx anchor from more links."
250
  msgstr "more リンクから、#more-xxx アンカーを削除します。"
251
 
252
- #: ../includes/form/site.php:46
253
  msgid "Remove \"[...]\" from excerpt"
254
  msgstr "抜粋から、[...] を削除"
255
 
256
- #: ../includes/form/site.php:48
257
  msgid "Remove \"[...]\" from output of the_excerpt()."
258
  msgstr "the_excerpt() の出力結果から、[...] を削除します。"
259
 
260
- #: ../includes/form/site.php:54
261
  msgid "Install Google Analytics"
262
  msgstr "Google Analytics をインストール"
263
 
264
- #: ../includes/form/site.php:56
265
  msgid "Add Google analytics code."
266
  msgstr "Google Analytics コードを入力してください。"
267
 
268
- #: ../includes/form/site.php:63
269
  msgid "Exclude user logged in."
270
  msgstr "ログインユーザーには無効にする。"
271
 
272
- #: ../includes/form/site.php:68
273
  msgid "Webmaster Tools Verification"
274
  msgstr "ウェブマスターツールの認証"
275
 
276
- #: ../includes/form/site.php:70
277
  msgid ""
278
  "Enter your meta key \"content\" value to verify your blog with <a href="
279
  "\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a "
@@ -285,22 +316,10 @@ msgstr ""
285
  "siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</a>, and <a href="
286
  "\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
287
 
288
- #: ../includes/wpbiz_admin.php:313
289
- msgid "Save Changes"
290
- msgstr ""
291
-
292
- #: ../includes/wpbiz_admin.php:337
293
- msgid "Deactivate"
294
- msgstr ""
295
-
296
- #: ../includes/wpbiz_admin.php:339 ../includes/wpbiz_admin.php:341
297
- msgid "Activate"
298
- msgstr ""
299
-
300
- #: ../wp-total-hacks.php:282
301
  msgid "Settings"
302
  msgstr "設定"
303
 
304
- #: ../wp-total-hacks.php:285
305
  msgid "Donate"
306
  msgstr "寄付"
8
  msgstr ""
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
  "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2011-09-21 02:55+0900\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
17
  "Content-Type: text/plain; charset=utf-8\n"
18
  "Content-Transfer-Encoding: 8bit\n"
19
 
20
+ #: ../includes/admin.php:245 ../includes/form/appearance.php:11
21
+ #: ../includes/form/appearance.php:35 ../includes/form/site.php:9
22
+ #: ../includes/form/site.php:18
23
+ msgid "Select File"
24
+ msgstr "ファイルを選択"
25
+
26
+ #: ../includes/admin.php:382
27
+ msgid "Saved."
28
+ msgstr ""
29
+
30
+ #: ../includes/admin.php:389
31
+ msgid "Save Changes"
32
+ msgstr ""
33
+
34
+ #: ../includes/admin.php:434
35
+ msgid "Deactivate"
36
+ msgstr ""
37
+
38
+ #: ../includes/admin.php:436 ../includes/admin.php:438
39
+ msgid "Activate"
40
+ msgstr ""
41
+
42
  #: ../includes/form/appearance.php:3
43
  msgid "Appearance in admin"
44
  msgstr "外観"
51
  msgid "Upload 30 x 30 pixel image for admin header logo."
52
  msgstr "30 x 30 ピクセルの画像をアップロードしてください。"
53
 
 
 
 
 
54
  #: ../includes/form/appearance.php:16
55
  msgid "Change admin footer text"
56
  msgstr "管理画面フッターを変更"
59
  msgid "You can edit admin footer text. Line breaks will remove."
60
  msgstr "管理画面フッターのテキストを変更できます。改行は無視されます。"
61
 
62
+ #: ../includes/form/appearance.php:29
63
  msgid "Change login logo"
64
  msgstr "ログイン画面のロゴを変更"
65
 
66
+ #: ../includes/form/appearance.php:31
67
  msgid ""
68
  "You can customize logo, URL and Title. The logo image size is recommended "
69
  "310 x 70 pixel."
71
  "ログイン画面のロゴ、リンク先URL、リンクタイトルを変更できます。ロゴ画像のサイ"
72
  "ズは、310 x 70 ピクセルをおすすめします。"
73
 
74
+ #: ../includes/form/appearance.php:34
75
  msgid "Logo"
76
  msgstr "ロゴ"
77
 
78
+ #: ../includes/form/appearance.php:36
79
  msgid "URL"
80
  msgstr "URL"
81
 
82
+ #: ../includes/form/appearance.php:38
83
  msgid "Title"
84
  msgstr "タイトル"
85
 
109
  msgstr "\"Webmaster\" 権限を追加"
110
 
111
  #: ../includes/form/other.php:26
112
+ msgid ""
113
+ "This role has the capabilities of an \"Editor\", but can also edit theme "
114
+ "options."
115
  msgstr ""
116
  "\"Webmaster\" は、\"Editor\" 権限と \"edit_theme_options\" が可能です。"
117
 
120
  msgstr "デフォルトのメールアドレスを変更"
121
 
122
  #: ../includes/form/other.php:34
123
+ msgid ""
124
+ "Change the email address and sender name used by automatic email "
125
+ "notifications."
126
  msgstr "デフォルトのメールアドレスと送信者名を変更します。"
127
 
128
  #: ../includes/form/other.php:36
183
 
184
  #: ../includes/form/post.php:73
185
  msgid ""
186
+ "Stop sending pingbacks from your own site to your own site when writing "
187
+ "posts."
188
  msgstr "あなたのサイトからあなたのサイトへのピンバックを停止する。"
189
 
190
  #: ../includes/form/post.php:79
228
  msgstr ".ico 画像をアップロードしてください。"
229
 
230
  #: ../includes/form/site.php:14
231
+ msgid "Add a apple-touch-icon"
232
+ msgstr "apple-touch-icon を追加"
233
+
234
+ #: ../includes/form/site.php:16
235
+ msgid "Please upload .png image."
236
+ msgstr ".png 画像をアップロードしてください。"
237
+
238
+ #: ../includes/form/site.php:23
239
  msgid "Remove \"wlwmanifest\" and \"xmlrpc\" from meta."
240
  msgstr "\"wlwmanifest\" と \"xmlrpc\" の自動削除"
241
 
242
+ #: ../includes/form/site.php:25
243
  #, php-format
244
  msgid ""
245
  "If you don't use \"<a href=\"%s\">Remote Publishing</a>\", remove "
248
  "もし、\"<a href=\"%s\">リモート投稿</a>\" を使用しないなら、不必要なタグを "
249
  "head から取り除きます。"
250
 
251
+ #: ../includes/form/site.php:31
252
  msgid "Remove adjacent posts rel links from head on Pages"
253
  msgstr "前後の投稿へのリンクをページで無効化"
254
 
255
+ #: ../includes/form/site.php:33
256
  msgid ""
257
  "Remove adjacent posts rel links from head on Pages.<br /><span class=\"ex"
258
  "\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
260
  "前後の投稿へのリンクをページで無効にする。<br /><span class=\"ex\">e.g. &lt;"
261
  "link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
262
 
263
+ #: ../includes/form/site.php:39
264
  msgid "Remove version number from head"
265
  msgstr "バージョン情報を head から削除"
266
 
267
+ #: ../includes/form/site.php:41
268
  msgid ""
269
  "Remove generator tag from head. <span class=\"ex\">e.g. &lt;meta name="
270
  "\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
272
  "generator タグを head から削除します。<span class=\"ex\">e.g. &lt;meta name="
273
  "\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
274
 
275
+ #: ../includes/form/site.php:47
276
  msgid "Remove #more anchor"
277
  msgstr "#more アンカーの削除"
278
 
279
+ #: ../includes/form/site.php:49
280
  msgid "Remove #more-xxx anchor from more links."
281
  msgstr "more リンクから、#more-xxx アンカーを削除します。"
282
 
283
+ #: ../includes/form/site.php:55
284
  msgid "Remove \"[...]\" from excerpt"
285
  msgstr "抜粋から、[...] を削除"
286
 
287
+ #: ../includes/form/site.php:57
288
  msgid "Remove \"[...]\" from output of the_excerpt()."
289
  msgstr "the_excerpt() の出力結果から、[...] を削除します。"
290
 
291
+ #: ../includes/form/site.php:63
292
  msgid "Install Google Analytics"
293
  msgstr "Google Analytics をインストール"
294
 
295
+ #: ../includes/form/site.php:65
296
  msgid "Add Google analytics code."
297
  msgstr "Google Analytics コードを入力してください。"
298
 
299
+ #: ../includes/form/site.php:72
300
  msgid "Exclude user logged in."
301
  msgstr "ログインユーザーには無効にする。"
302
 
303
+ #: ../includes/form/site.php:77
304
  msgid "Webmaster Tools Verification"
305
  msgstr "ウェブマスターツールの認証"
306
 
307
+ #: ../includes/form/site.php:79
308
  msgid ""
309
  "Enter your meta key \"content\" value to verify your blog with <a href="
310
  "\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a "
316
  "siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</a>, and <a href="
317
  "\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
318
 
319
+ #: ../wp-total-hacks.php:292
 
 
 
 
 
 
 
 
 
 
 
 
320
  msgid "Settings"
321
  msgstr "設定"
322
 
323
+ #: ../wp-total-hacks.php:295
324
  msgid "Donate"
325
  msgstr "寄付"
languages/wp-total-hacks-nl_NL.mo ADDED
Binary file
languages/wp-total-hacks-nl_NL.po ADDED
@@ -0,0 +1,415 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: PACKAGE VERSION\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-09-21 02:55+0900\n"
6
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
7
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
+ "Language-Team: LANGUAGE <LL@li.org>\n"
9
+ "Language: \n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=utf-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Poedit-Language: \n"
15
+ "X-Poedit-Country: \n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
18
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
19
+ "X-Poedit-Basepath: \n"
20
+ "X-Poedit-Bookmarks: \n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Textdomain-Support: yes\n"
23
+
24
+ # @ wp-total-hacks
25
+ #: ../includes/admin.php:245 ../includes/form/appearance.php:11
26
+ #: ../includes/form/appearance.php:35 ../includes/form/site.php:9
27
+ #: ../includes/form/site.php:18
28
+ msgid "Select File"
29
+ msgstr "Selecteer een bestand"
30
+
31
+ #: ../includes/admin.php:382
32
+ msgid "Saved."
33
+ msgstr ""
34
+
35
+ # @ default
36
+ #: ../includes/admin.php:389
37
+ msgid "Save Changes"
38
+ msgstr ""
39
+
40
+ # @ default
41
+ #: ../includes/admin.php:434
42
+ msgid "Deactivate"
43
+ msgstr ""
44
+
45
+ # @ default
46
+ #: ../includes/admin.php:436 ../includes/admin.php:438
47
+ msgid "Activate"
48
+ msgstr ""
49
+
50
+ # @ wp-total-hacks
51
+ #: ../includes/form/appearance.php:3
52
+ msgid "Appearance in admin"
53
+ msgstr "Verschijning in admin"
54
+
55
+ # @ wp-total-hacks
56
+ #: ../includes/form/appearance.php:6
57
+ msgid "Change admin header logo"
58
+ msgstr "Wijzig admin header logo"
59
+
60
+ # @ wp-total-hacks
61
+ #: ../includes/form/appearance.php:8
62
+ msgid "Upload 30 x 30 pixel image for admin header logo."
63
+ msgstr "Upload een afbeelding voor de admin header (30 x 30 pixel)"
64
+
65
+ # @ wp-total-hacks
66
+ #: ../includes/form/appearance.php:16
67
+ msgid "Change admin footer text"
68
+ msgstr "Wijzig de admin footer text"
69
+
70
+ # @ wp-total-hacks
71
+ #: ../includes/form/appearance.php:18
72
+ msgid "You can edit admin footer text. Line breaks will remove."
73
+ msgstr ""
74
+ "U kan de admin footer tekst wijzigen. Regel overgangen worden verwijderd."
75
+
76
+ # @ wp-total-hacks
77
+ #: ../includes/form/appearance.php:29
78
+ msgid "Change login logo"
79
+ msgstr "Wijzig het login logo"
80
+
81
+ # @ wp-total-hacks
82
+ #: ../includes/form/appearance.php:31
83
+ msgid ""
84
+ "You can customize logo, URL and Title. The logo image size is recommended "
85
+ "310 x 70 pixel."
86
+ msgstr ""
87
+ "U kan het logo, de URL en de titel aanpassen. Aanbevolen afmeting voor het "
88
+ "logo is 310 x 70 pixels."
89
+
90
+ # @ wp-total-hacks
91
+ #: ../includes/form/appearance.php:34
92
+ msgid "Logo"
93
+ msgstr "Logo"
94
+
95
+ # @ wp-total-hacks
96
+ #: ../includes/form/appearance.php:36
97
+ msgid "URL"
98
+ msgstr "URL"
99
+
100
+ # @ wp-total-hacks
101
+ #: ../includes/form/appearance.php:38
102
+ msgid "Title"
103
+ msgstr "Titel"
104
+
105
+ # @ wp-total-hacks
106
+ #: ../includes/form/footer.php:2
107
+ msgid "Translators"
108
+ msgstr "Vertalers"
109
+
110
+ # @ wp-total-hacks
111
+ #: ../includes/form/footer.php:7
112
+ msgid "Contributors"
113
+ msgstr "Medewerkers"
114
+
115
+ # @ wp-total-hacks
116
+ #: ../includes/form/other.php:2
117
+ msgid "Other"
118
+ msgstr "Andere"
119
+
120
+ # @ wp-total-hacks
121
+ #: ../includes/form/other.php:5
122
+ #, fuzzy
123
+ msgid "Deactivate Dashboard Widgets"
124
+ msgstr "Schakel Dashboard Widgets uit"
125
+
126
+ #: ../includes/form/other.php:7 ../includes/form/post.php:8
127
+ #: ../includes/form/post.php:27
128
+ msgid "Choose the items you want to remove."
129
+ msgstr ""
130
+
131
+ # @ wp-total-hacks
132
+ #: ../includes/form/other.php:24
133
+ msgid "Add role \"Webmaster\""
134
+ msgstr "Voeg de functie \"Webmaster\" toe"
135
+
136
+ # @ wp-total-hacks
137
+ #: ../includes/form/other.php:26
138
+ #, fuzzy
139
+ msgid ""
140
+ "This role has the capabilities of an \"Editor\", but can also edit theme "
141
+ "options."
142
+ msgstr "\"Webmaster\" is functie van \"Editor\" + \"edit_theme_options\"."
143
+
144
+ # @ wp-total-hacks
145
+ #: ../includes/form/other.php:32
146
+ #, fuzzy
147
+ msgid "Change default email address"
148
+ msgstr "Wijzig uw standaard email adres"
149
+
150
+ # @ wp-total-hacks
151
+ #: ../includes/form/other.php:34
152
+ #, fuzzy
153
+ msgid ""
154
+ "Change the email address and sender name used by automatic email "
155
+ "notifications."
156
+ msgstr "Wijzig us standaard email adres en weergegeven naam."
157
+
158
+ # @ default
159
+ #: ../includes/form/other.php:36
160
+ msgid "Name"
161
+ msgstr ""
162
+
163
+ # @ default
164
+ #: ../includes/form/other.php:38
165
+ msgid "Email"
166
+ msgstr ""
167
+
168
+ # @ wp-total-hacks
169
+ #: ../includes/form/other.php:45
170
+ msgid "Delete default contact methods"
171
+ msgstr "Wis de standaard contact methodes"
172
+
173
+ # @ wp-total-hacks
174
+ #: ../includes/form/other.php:47
175
+ msgid "Delete default contact methods from user profile."
176
+ msgstr "Wis de standaard contact methodes van het gebruikersprofiel"
177
+
178
+ # @ wp-total-hacks
179
+ #: ../includes/form/other.php:64
180
+ msgid "Remove Update Notification"
181
+ msgstr "Wis Update Aankondiging"
182
+
183
+ # @ wp-total-hacks
184
+ #: ../includes/form/other.php:66
185
+ msgid "Remove Update Notification for all users except Admin User."
186
+ msgstr "Wis Update Aankondiging voor alle gebruikers behalve Admin User."
187
+
188
+ # @ wp-total-hacks
189
+ #: ../includes/form/post.php:3
190
+ #, fuzzy
191
+ msgid "Posts &amp; Pages"
192
+ msgstr "Berichten & Pagina's"
193
+
194
+ # @ wp-total-hacks
195
+ #: ../includes/form/post.php:6
196
+ #, fuzzy
197
+ msgid "Remove meta boxes for Posts"
198
+ msgstr "Wis meta boxes voor berichten"
199
+
200
+ # @ wp-total-hacks
201
+ #: ../includes/form/post.php:25
202
+ #, fuzzy
203
+ msgid "Remove meta boxes for Pages"
204
+ msgstr "Wis meta boxes voor pagina 's"
205
+
206
+ # @ wp-total-hacks
207
+ #: ../includes/form/post.php:44
208
+ msgid "Revision Control"
209
+ msgstr "Versie Controle"
210
+
211
+ # @ wp-total-hacks
212
+ #: ../includes/form/post.php:46
213
+ #, fuzzy
214
+ msgid "Limit the number of revisions allowed."
215
+ msgstr "Gelieve een maximum van herzieningen op te geven."
216
+
217
+ # @ wp-total-hacks
218
+ #: ../includes/form/post.php:48
219
+ msgid "Store All"
220
+ msgstr "Sla alles op"
221
+
222
+ # @ wp-total-hacks
223
+ #: ../includes/form/post.php:64
224
+ msgid "Disable Auto Save"
225
+ msgstr "Schakel Auto Opslaan uit"
226
+
227
+ # @ wp-total-hacks
228
+ #: ../includes/form/post.php:71
229
+ #, fuzzy
230
+ msgid "Stop self-pingbacks"
231
+ msgstr "Stop Self Pings"
232
+
233
+ # @ wp-total-hacks
234
+ #: ../includes/form/post.php:73
235
+ #, fuzzy
236
+ msgid ""
237
+ "Stop sending pingbacks from your own site to your own site when writing "
238
+ "posts."
239
+ msgstr ""
240
+ "Stop het versturen van pings van uw site naar uw site tijdens het schrijven "
241
+ "van berichten."
242
+
243
+ # @ wp-total-hacks
244
+ #: ../includes/form/post.php:79
245
+ msgid "Add \"Excerpt\" support for Pages."
246
+ msgstr "Voeg \"Excerpt\" ondersteuning toe voor Pagina 's"
247
+
248
+ # @ wp-total-hacks
249
+ #: ../includes/form/post.php:81
250
+ #, fuzzy
251
+ msgid "Allows you to add excerpt text to pages."
252
+ msgstr "Verplicht om excerpt tekst toe te voegen bij Pagina 's"
253
+
254
+ # @ wp-total-hacks
255
+ #: ../includes/form/sidebar.php:2
256
+ msgid "WordPress Plugins"
257
+ msgstr "WordPress Plugins"
258
+
259
+ # @ wp-total-hacks
260
+ #: ../includes/form/sidebar.php:13
261
+ msgid "This Plugin needs your support"
262
+ msgstr "Deze Plugin heeft uw aandacht nodig"
263
+
264
+ # @ wp-total-hacks
265
+ #: ../includes/form/sidebar.php:14
266
+ msgid "Please help support the continued development."
267
+ msgstr "Help ons het verdere ontwikkelen te realiseren."
268
+
269
+ # @ wp-total-hacks
270
+ #: ../includes/form/sidebar.php:16
271
+ msgid "$200+ makes you an official contributor."
272
+ msgstr "Bij stortingen van mer dan 200 $ wordt u een officieel medewerker."
273
+
274
+ # @ wp-total-hacks
275
+ #: ../includes/form/sidebar.php:20
276
+ msgid "Contact"
277
+ msgstr "Contact"
278
+
279
+ # @ wp-total-hacks
280
+ #: ../includes/form/site.php:2
281
+ msgid "Site Settings"
282
+ msgstr "Site Instellingen"
283
+
284
+ # @ wp-total-hacks
285
+ #: ../includes/form/site.php:5
286
+ msgid "Add a favicon"
287
+ msgstr "Voeg een favicon toe"
288
+
289
+ # @ wp-total-hacks
290
+ #: ../includes/form/site.php:7
291
+ msgid "Please upload .ico image."
292
+ msgstr "Upload een .ico afbeelding."
293
+
294
+ # @ wp-total-hacks
295
+ #: ../includes/form/site.php:14
296
+ msgid "Add a apple-touch-icon"
297
+ msgstr "Voeg een apple-touch-icon toe"
298
+
299
+ # @ wp-total-hacks
300
+ #: ../includes/form/site.php:16
301
+ msgid "Please upload .png image."
302
+ msgstr "Upload een .png afbeelding."
303
+
304
+ # @ wp-total-hacks
305
+ #: ../includes/form/site.php:23
306
+ #, fuzzy
307
+ msgid "Remove \"wlwmanifest\" and \"xmlrpc\" from meta."
308
+ msgstr ""
309
+ "Schakel automatisch verwijderen \"wlwmanifest\" en \"xmlrpc\" van meta in."
310
+
311
+ # @ wp-total-hacks
312
+ #: ../includes/form/site.php:25
313
+ #, php-format
314
+ msgid ""
315
+ "If you don't use \"<a href=\"%s\">Remote Publishing</a>\", remove "
316
+ "unnecessary tags from head."
317
+ msgstr ""
318
+ "Als u geen gebruik maakt van \"<a href=\"%s\">Remote Publishing</a>\", "
319
+ "verwijder dan onnodige tags uit de header."
320
+
321
+ # @ wp-total-hacks
322
+ #: ../includes/form/site.php:31
323
+ msgid "Remove adjacent posts rel links from head on Pages"
324
+ msgstr "Verwijder gelijkaardige posts rel links van de hoofdpagina"
325
+
326
+ # @ wp-total-hacks
327
+ #: ../includes/form/site.php:33
328
+ msgid ""
329
+ "Remove adjacent posts rel links from head on Pages.<br /><span class=\"ex"
330
+ "\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
331
+ msgstr ""
332
+ "Verwijder opvolgende posts rel links van de hoofding op pagina 's.<br /"
333
+ "><span class=\"ex\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev"
334
+ "\" ...&gt;</span>"
335
+
336
+ # @ wp-total-hacks
337
+ #: ../includes/form/site.php:39
338
+ msgid "Remove version number from head"
339
+ msgstr "Verwijder versie nummer van de hoofding"
340
+
341
+ # @ wp-total-hacks
342
+ #: ../includes/form/site.php:41
343
+ msgid ""
344
+ "Remove generator tag from head. <span class=\"ex\">e.g. &lt;meta name="
345
+ "\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
346
+ msgstr ""
347
+ "Verwijder generator tag van de hoofding. <span class=\"ex\">e.g. &lt;meta "
348
+ "name=\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
349
+
350
+ # @ wp-total-hacks
351
+ #: ../includes/form/site.php:47
352
+ msgid "Remove #more anchor"
353
+ msgstr "Verwijder #lees meer bladwijzer"
354
+
355
+ # @ wp-total-hacks
356
+ #: ../includes/form/site.php:49
357
+ msgid "Remove #more-xxx anchor from more links."
358
+ msgstr "Verwijder #lees meer-xxx bladwijzer van de meer links."
359
+
360
+ # @ wp-total-hacks
361
+ #: ../includes/form/site.php:55
362
+ msgid "Remove \"[...]\" from excerpt"
363
+ msgstr "Verwijder \"[...]\" van excerpt"
364
+
365
+ # @ wp-total-hacks
366
+ #: ../includes/form/site.php:57
367
+ msgid "Remove \"[...]\" from output of the_excerpt()."
368
+ msgstr "Verwijder \"[...]\" van de uitput van the_excerpt()."
369
+
370
+ # @ wp-total-hacks
371
+ #: ../includes/form/site.php:63
372
+ msgid "Install Google Analytics"
373
+ msgstr "Installeer Google Analytics"
374
+
375
+ # @ wp-total-hacks
376
+ #: ../includes/form/site.php:65
377
+ msgid "Add Google analytics code."
378
+ msgstr "Voeg Google Analytics code toe."
379
+
380
+ # @ wp-total-hacks
381
+ #: ../includes/form/site.php:72
382
+ msgid "Exclude user logged in."
383
+ msgstr "Sluit ingelogde gebruiker uit."
384
+
385
+ # @ wp-total-hacks
386
+ #: ../includes/form/site.php:77
387
+ msgid "Webmaster Tools Verification"
388
+ msgstr "Webmaster Tools verificatie"
389
+
390
+ # @ wp-total-hacks
391
+ #: ../includes/form/site.php:79
392
+ msgid ""
393
+ "Enter your meta key \"content\" value to verify your blog with <a href="
394
+ "\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a "
395
+ "href=\"https://siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</a>, "
396
+ "and <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
397
+ msgstr ""
398
+ "Voeg uw meta sleutel \"content\" waarde in om uw blog te verrifiêren met <a "
399
+ "href=\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</"
400
+ "a>, <a href=\"https://siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</"
401
+ "a>, and <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
402
+
403
+ # @ default
404
+ #: ../wp-total-hacks.php:292
405
+ msgid "Settings"
406
+ msgstr ""
407
+
408
+ # @ wp-total-hacks
409
+ #: ../wp-total-hacks.php:295
410
+ msgid "Donate"
411
+ msgstr "Steun ons"
412
+
413
+ # @ wp-total-hacks
414
+ #~ msgid "Click on the check box that you want to delete."
415
+ #~ msgstr "Click op de check box die je wil wissen."
{langs → languages}/wp-total-hacks-ru_RU.mo RENAMED
File without changes
{langs → languages}/wp-total-hacks-ru_RU.po RENAMED
@@ -2,20 +2,44 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wp-total-hacks\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-05-23 14:56+0900\n"
6
  "PO-Revision-Date: 2011-05-24 23:36+0300\n"
7
  "Last-Translator: LiVsI <livsi1977@list.ru>\n"
8
  "Language-Team: LiVsI <pered@li.ru>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: _;gettext;gettext_noop\n"
13
  "X-Poedit-Basepath: .\n"
14
- "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n%10==1 && n%100!=11) ? 3 : ((n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20)) ? 1 : 2);\n"
 
15
  "X-Poedit-Language: Russian\n"
16
  "X-Poedit-Country: RUSSIAN FEDERATION\n"
17
  "X-Poedit-SourceCharset: utf-8\n"
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  #: ../includes/form/appearance.php:3
20
  msgid "Appearance in admin"
21
  msgstr "Админинтерфейс"
@@ -26,12 +50,8 @@ msgstr "Изменить логотип в заголовке админинте
26
 
27
  #: ../includes/form/appearance.php:8
28
  msgid "Upload 30 x 30 pixel image for admin header logo."
29
- msgstr "Загрузить изображение (30 x 30px) для логотипа в заголовке админинтерфейса."
30
-
31
- #: ../includes/form/appearance.php:11
32
- #: ../includes/form/appearance.php:36
33
- msgid "Select File"
34
- msgstr "Выберите файл"
35
 
36
  #: ../includes/form/appearance.php:16
37
  msgid "Change admin footer text"
@@ -39,25 +59,30 @@ msgstr "Изменить текст в \"подвале\" админинтерф
39
 
40
  #: ../includes/form/appearance.php:18
41
  msgid "You can edit admin footer text. Line breaks will remove."
42
- msgstr "Можно отредактировать текст в \"подвале\". Разрывы строк будут удалены."
 
43
 
44
- #: ../includes/form/appearance.php:30
45
  msgid "Change login logo"
46
  msgstr "Изменить логотип в форме входа"
47
 
48
- #: ../includes/form/appearance.php:32
49
- msgid "You can customize logo, URL and Title. The logo image size is recommended 310 x 70 pixel."
50
- msgstr "Можно изменить логотип, URL и заголовое страницы входа. Рекомендуемый размер логотипа - 310 x 70&nbsp;px."
 
 
 
 
51
 
52
- #: ../includes/form/appearance.php:35
53
  msgid "Logo"
54
  msgstr "Логотип"
55
 
56
- #: ../includes/form/appearance.php:37
57
  msgid "URL"
58
  msgstr "URL"
59
 
60
- #: ../includes/form/appearance.php:39
61
  msgid "Title"
62
  msgstr "Заголовок"
63
 
@@ -77,8 +102,7 @@ msgstr "Дополнительно"
77
  msgid "Deactivate Dashboard Widgets"
78
  msgstr "Деактивировать виджеты в консоли"
79
 
80
- #: ../includes/form/other.php:7
81
- #: ../includes/form/post.php:8
82
  #: ../includes/form/post.php:27
83
  msgid "Choose the items you want to remove."
84
  msgstr "Отметьте какие блоки Вы хотели бы скрыть."
@@ -88,15 +112,20 @@ msgid "Add role \"Webmaster\""
88
  msgstr "Добавить роль \"Webmaster\""
89
 
90
  #: ../includes/form/other.php:26
91
- msgid "This role has the capabilities of an \"Editor\", but can also edit theme options."
92
- msgstr "\"Webmaster\" - роль с возможностями \"Editor\" + \"edit_theme_options\"."
 
 
 
93
 
94
  #: ../includes/form/other.php:32
95
  msgid "Change default email address"
96
  msgstr "Изменить e-mail по умолчанию"
97
 
98
  #: ../includes/form/other.php:34
99
- msgid "Change the email address and sender name used by automatic email notifications."
 
 
100
  msgstr "Изменение e-mail адреса и имени отправителя по умолчанию."
101
 
102
  #: ../includes/form/other.php:36
@@ -121,7 +150,9 @@ msgstr "Убрать уведомления по обновлению"
121
 
122
  #: ../includes/form/other.php:66
123
  msgid "Remove Update Notification for all users except Admin User."
124
- msgstr "Убрать уведомления о обновлениях для всех пользователей за исключением Администратора."
 
 
125
 
126
  #: ../includes/form/post.php:3
127
  msgid "Posts &amp; Pages"
@@ -156,8 +187,12 @@ msgid "Stop self-pingbacks"
156
  msgstr "Остановить пинг внутри сайта"
157
 
158
  #: ../includes/form/post.php:73
159
- msgid "Stop sending pingbacks from your own site to your own site when writing posts."
160
- msgstr "Остановить отсылку пингов внутри сайта (при написании записей, ссылающихся на уже существующие)."
 
 
 
 
161
 
162
  #: ../includes/form/post.php:79
163
  msgid "Add \"Excerpt\" support for Pages."
@@ -200,84 +235,103 @@ msgid "Please upload .ico image."
200
  msgstr "Загрузите .ico файл."
201
 
202
  #: ../includes/form/site.php:14
203
- msgid "Remove \"wlwmanifest\" and \"xmlrpc\" from meta."
204
- msgstr "Установить автоматическое удаление \"wlwmanifest\" и \"xmlrpc\" из блока <head>."
 
205
 
206
  #: ../includes/form/site.php:16
 
 
 
 
 
 
 
 
 
 
 
207
  #, php-format
208
- msgid "If you don't use \"<a href=\"%s\">Remote Publishing</a>\", remove unnecessary tags from head."
209
- msgstr "Если \"<a href=\"%s\">Удалённая публикация</a>\" не используется, можно удалить \"лишние\" теги из секции <b>head</b> html разметки."
 
 
 
 
210
 
211
- #: ../includes/form/site.php:22
212
  msgid "Remove adjacent posts rel links from head on Pages"
213
  msgstr "Удалить ссылки на \"смежные\" записи из <head> секции html разметки"
214
 
215
- #: ../includes/form/site.php:24
216
- msgid "Remove adjacent posts rel links from head on Pages.<br /><span class=\"ex\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
217
- msgstr "Удалить ссылки на смежные записи из <head> секции html разметки на Страницах.<br /><span class=\"ex\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
 
 
 
 
 
218
 
219
- #: ../includes/form/site.php:30
220
  msgid "Remove version number from head"
221
  msgstr "Удалить номер версии Wordpress из секции <head> html разметки"
222
 
223
- #: ../includes/form/site.php:32
224
- msgid "Remove generator tag from head. <span class=\"ex\">e.g. &lt;meta name=\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
225
- msgstr "Удалить тег \"generator\" из секции <head> html разметки: <span class=\"ex\">e.g. &lt;meta name=\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
 
 
 
 
226
 
227
- #: ../includes/form/site.php:38
228
  msgid "Remove #more anchor"
229
  msgstr "Удалить #more якорь"
230
 
231
- #: ../includes/form/site.php:40
232
  msgid "Remove #more-xxx anchor from more links."
233
  msgstr "Удалить #more-xxx якорь для ссылок \"Подробнее\"."
234
 
235
- #: ../includes/form/site.php:46
236
  msgid "Remove \"[...]\" from excerpt"
237
  msgstr "Удалить \"[...]\" из отрывков"
238
 
239
- #: ../includes/form/site.php:48
240
  msgid "Remove \"[...]\" from output of the_excerpt()."
241
  msgstr "Удалить \"[...]\" из вывода функции the_excerpt()."
242
 
243
- #: ../includes/form/site.php:54
244
  msgid "Install Google Analytics"
245
  msgstr "Установить код Google Analytics"
246
 
247
- #: ../includes/form/site.php:56
248
  msgid "Add Google analytics code."
249
  msgstr "Добавить код Google analytics."
250
 
251
- #: ../includes/form/site.php:63
252
  msgid "Exclude user logged in."
253
  msgstr "Exclude user logged in."
254
 
255
- #: ../includes/form/site.php:68
256
  msgid "Webmaster Tools Verification"
257
  msgstr "Подтверждение прав на управление сайтом"
258
 
259
- #: ../includes/form/site.php:70
260
- msgid "Enter your meta key \"content\" value to verify your blog with <a href=\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a href=\"https://siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</a>, and <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
261
- msgstr "Введите ключ для отслеживания блога с помощью <a href=\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a href=\"https://siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</a>, и <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
262
-
263
- #: ../includes/wpbiz_admin.php:313
264
- msgid "Save Changes"
265
- msgstr "Сохранить изменения"
266
-
267
- #: ../includes/wpbiz_admin.php:337
268
- msgid "Deactivate"
269
- msgstr "Выключить"
270
-
271
- #: ../includes/wpbiz_admin.php:339
272
- #: ../includes/wpbiz_admin.php:341
273
- msgid "Activate"
274
- msgstr "Включить"
275
 
276
- #: ../wp-total-hacks.php:282
277
  msgid "Settings"
278
  msgstr "Настройки"
279
 
280
- #: ../wp-total-hacks.php:285
281
  msgid "Donate"
282
  msgstr "Спонсировать"
283
-
2
  msgstr ""
3
  "Project-Id-Version: wp-total-hacks\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-09-21 02:55+0900\n"
6
  "PO-Revision-Date: 2011-05-24 23:36+0300\n"
7
  "Last-Translator: LiVsI <livsi1977@list.ru>\n"
8
  "Language-Team: LiVsI <pered@li.ru>\n"
9
+ "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop\n"
14
  "X-Poedit-Basepath: .\n"
15
+ "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n%10==1 && n%100!=11) ? 3 : "
16
+ "((n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20)) ? 1 : 2);\n"
17
  "X-Poedit-Language: Russian\n"
18
  "X-Poedit-Country: RUSSIAN FEDERATION\n"
19
  "X-Poedit-SourceCharset: utf-8\n"
20
 
21
+ #: ../includes/admin.php:245 ../includes/form/appearance.php:11
22
+ #: ../includes/form/appearance.php:35 ../includes/form/site.php:9
23
+ #: ../includes/form/site.php:18
24
+ msgid "Select File"
25
+ msgstr "Выберите файл"
26
+
27
+ #: ../includes/admin.php:382
28
+ msgid "Saved."
29
+ msgstr ""
30
+
31
+ #: ../includes/admin.php:389
32
+ msgid "Save Changes"
33
+ msgstr "Сохранить изменения"
34
+
35
+ #: ../includes/admin.php:434
36
+ msgid "Deactivate"
37
+ msgstr "Выключить"
38
+
39
+ #: ../includes/admin.php:436 ../includes/admin.php:438
40
+ msgid "Activate"
41
+ msgstr "Включить"
42
+
43
  #: ../includes/form/appearance.php:3
44
  msgid "Appearance in admin"
45
  msgstr "Админинтерфейс"
50
 
51
  #: ../includes/form/appearance.php:8
52
  msgid "Upload 30 x 30 pixel image for admin header logo."
53
+ msgstr ""
54
+ "Загрузить изображение (30 x 30px) для логотипа в заголовке админинтерфейса."
 
 
 
 
55
 
56
  #: ../includes/form/appearance.php:16
57
  msgid "Change admin footer text"
59
 
60
  #: ../includes/form/appearance.php:18
61
  msgid "You can edit admin footer text. Line breaks will remove."
62
+ msgstr ""
63
+ "Можно отредактировать текст в \"подвале\". Разрывы строк будут удалены."
64
 
65
+ #: ../includes/form/appearance.php:29
66
  msgid "Change login logo"
67
  msgstr "Изменить логотип в форме входа"
68
 
69
+ #: ../includes/form/appearance.php:31
70
+ msgid ""
71
+ "You can customize logo, URL and Title. The logo image size is recommended "
72
+ "310 x 70 pixel."
73
+ msgstr ""
74
+ "Можно изменить логотип, URL и заголовое страницы входа. Рекомендуемый размер "
75
+ "логотипа - 310 x 70&nbsp;px."
76
 
77
+ #: ../includes/form/appearance.php:34
78
  msgid "Logo"
79
  msgstr "Логотип"
80
 
81
+ #: ../includes/form/appearance.php:36
82
  msgid "URL"
83
  msgstr "URL"
84
 
85
+ #: ../includes/form/appearance.php:38
86
  msgid "Title"
87
  msgstr "Заголовок"
88
 
102
  msgid "Deactivate Dashboard Widgets"
103
  msgstr "Деактивировать виджеты в консоли"
104
 
105
+ #: ../includes/form/other.php:7 ../includes/form/post.php:8
 
106
  #: ../includes/form/post.php:27
107
  msgid "Choose the items you want to remove."
108
  msgstr "Отметьте какие блоки Вы хотели бы скрыть."
112
  msgstr "Добавить роль \"Webmaster\""
113
 
114
  #: ../includes/form/other.php:26
115
+ msgid ""
116
+ "This role has the capabilities of an \"Editor\", but can also edit theme "
117
+ "options."
118
+ msgstr ""
119
+ "\"Webmaster\" - роль с возможностями \"Editor\" + \"edit_theme_options\"."
120
 
121
  #: ../includes/form/other.php:32
122
  msgid "Change default email address"
123
  msgstr "Изменить e-mail по умолчанию"
124
 
125
  #: ../includes/form/other.php:34
126
+ msgid ""
127
+ "Change the email address and sender name used by automatic email "
128
+ "notifications."
129
  msgstr "Изменение e-mail адреса и имени отправителя по умолчанию."
130
 
131
  #: ../includes/form/other.php:36
150
 
151
  #: ../includes/form/other.php:66
152
  msgid "Remove Update Notification for all users except Admin User."
153
+ msgstr ""
154
+ "Убрать уведомления о обновлениях для всех пользователей за исключением "
155
+ "Администратора."
156
 
157
  #: ../includes/form/post.php:3
158
  msgid "Posts &amp; Pages"
187
  msgstr "Остановить пинг внутри сайта"
188
 
189
  #: ../includes/form/post.php:73
190
+ msgid ""
191
+ "Stop sending pingbacks from your own site to your own site when writing "
192
+ "posts."
193
+ msgstr ""
194
+ "Остановить отсылку пингов внутри сайта (при написании записей, ссылающихся "
195
+ "на уже существующие)."
196
 
197
  #: ../includes/form/post.php:79
198
  msgid "Add \"Excerpt\" support for Pages."
235
  msgstr "Загрузите .ico файл."
236
 
237
  #: ../includes/form/site.php:14
238
+ #, fuzzy
239
+ msgid "Add a apple-touch-icon"
240
+ msgstr "Добавить иконку для сайта"
241
 
242
  #: ../includes/form/site.php:16
243
+ #, fuzzy
244
+ msgid "Please upload .png image."
245
+ msgstr "Загрузите .ico файл."
246
+
247
+ #: ../includes/form/site.php:23
248
+ msgid "Remove \"wlwmanifest\" and \"xmlrpc\" from meta."
249
+ msgstr ""
250
+ "Установить автоматическое удаление \"wlwmanifest\" и \"xmlrpc\" из блока "
251
+ "<head>."
252
+
253
+ #: ../includes/form/site.php:25
254
  #, php-format
255
+ msgid ""
256
+ "If you don't use \"<a href=\"%s\">Remote Publishing</a>\", remove "
257
+ "unnecessary tags from head."
258
+ msgstr ""
259
+ "Если \"<a href=\"%s\">Удалённая публикация</a>\" не используется, можно "
260
+ "удалить \"лишние\" теги из секции <b>head</b> html разметки."
261
 
262
+ #: ../includes/form/site.php:31
263
  msgid "Remove adjacent posts rel links from head on Pages"
264
  msgstr "Удалить ссылки на \"смежные\" записи из <head> секции html разметки"
265
 
266
+ #: ../includes/form/site.php:33
267
+ msgid ""
268
+ "Remove adjacent posts rel links from head on Pages.<br /><span class=\"ex"
269
+ "\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
270
+ msgstr ""
271
+ "Удалить ссылки на смежные записи из <head> секции html разметки на Страницах."
272
+ "<br /><span class=\"ex\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel="
273
+ "\"prev\" ...&gt;</span>"
274
 
275
+ #: ../includes/form/site.php:39
276
  msgid "Remove version number from head"
277
  msgstr "Удалить номер версии Wordpress из секции <head> html разметки"
278
 
279
+ #: ../includes/form/site.php:41
280
+ msgid ""
281
+ "Remove generator tag from head. <span class=\"ex\">e.g. &lt;meta name="
282
+ "\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
283
+ msgstr ""
284
+ "Удалить тег \"generator\" из секции <head> html разметки: <span class=\"ex"
285
+ "\">e.g. &lt;meta name=\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
286
 
287
+ #: ../includes/form/site.php:47
288
  msgid "Remove #more anchor"
289
  msgstr "Удалить #more якорь"
290
 
291
+ #: ../includes/form/site.php:49
292
  msgid "Remove #more-xxx anchor from more links."
293
  msgstr "Удалить #more-xxx якорь для ссылок \"Подробнее\"."
294
 
295
+ #: ../includes/form/site.php:55
296
  msgid "Remove \"[...]\" from excerpt"
297
  msgstr "Удалить \"[...]\" из отрывков"
298
 
299
+ #: ../includes/form/site.php:57
300
  msgid "Remove \"[...]\" from output of the_excerpt()."
301
  msgstr "Удалить \"[...]\" из вывода функции the_excerpt()."
302
 
303
+ #: ../includes/form/site.php:63
304
  msgid "Install Google Analytics"
305
  msgstr "Установить код Google Analytics"
306
 
307
+ #: ../includes/form/site.php:65
308
  msgid "Add Google analytics code."
309
  msgstr "Добавить код Google analytics."
310
 
311
+ #: ../includes/form/site.php:72
312
  msgid "Exclude user logged in."
313
  msgstr "Exclude user logged in."
314
 
315
+ #: ../includes/form/site.php:77
316
  msgid "Webmaster Tools Verification"
317
  msgstr "Подтверждение прав на управление сайтом"
318
 
319
+ #: ../includes/form/site.php:79
320
+ msgid ""
321
+ "Enter your meta key \"content\" value to verify your blog with <a href="
322
+ "\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a "
323
+ "href=\"https://siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</a>, "
324
+ "and <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
325
+ msgstr ""
326
+ "Введите ключ для отслеживания блога с помощью <a href=\"https://www.google."
327
+ "com/webmasters/tools/\">Google Webmaster Tools</a>, <a href=\"https://"
328
+ "siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</a>, и <a href="
329
+ "\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
 
 
 
 
 
330
 
331
+ #: ../wp-total-hacks.php:292
332
  msgid "Settings"
333
  msgstr "Настройки"
334
 
335
+ #: ../wp-total-hacks.php:295
336
  msgid "Donate"
337
  msgstr "Спонсировать"
 
languages/wp-total-hacks-tr_TR.mo ADDED
Binary file
{langs → languages}/wp-total-hacks-tr_TR.po RENAMED
@@ -7,7 +7,7 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Total Hacks Turkish\n"
9
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2011-05-23 14:56+0900\n"
11
  "PO-Revision-Date: 2011-05-25 04:56+0200\n"
12
  "Last-Translator: Serkan Algur <info@kaisercrazy.com>\n"
13
  "Language-Team: kaisercrazy <info@kaisercrazy.com>\n"
@@ -19,6 +19,28 @@ msgstr ""
19
  "X-Poedit-Country: TURKEY\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  #: ../includes/form/appearance.php:3
23
  msgid "Appearance in admin"
24
  msgstr "Yönetim alanındaki görünüm"
@@ -31,36 +53,37 @@ msgstr "Yönetim Alanı Logosunu Değiştir"
31
  msgid "Upload 30 x 30 pixel image for admin header logo."
32
  msgstr "Yönetim alanı logosu için 30 x 30 piksel bir resim yükleyin"
33
 
34
- #: ../includes/form/appearance.php:11
35
- #: ../includes/form/appearance.php:36
36
- msgid "Select File"
37
- msgstr "Gözat"
38
-
39
  #: ../includes/form/appearance.php:16
40
  msgid "Change admin footer text"
41
  msgstr "Yönetim alanı alt kısım yazısını değiştir."
42
 
43
  #: ../includes/form/appearance.php:18
44
  msgid "You can edit admin footer text. Line breaks will remove."
45
- msgstr "Yönetim alanı alt kısım yazsını düzenleyebilirsiniz. Alt satıra geçme etkisiz."
 
 
46
 
47
- #: ../includes/form/appearance.php:30
48
  msgid "Change login logo"
49
  msgstr "Giriş alanı logosunu değiştir."
50
 
51
- #: ../includes/form/appearance.php:32
52
- msgid "You can customize logo, URL and Title. The logo image size is recommended 310 x 70 pixel."
53
- msgstr "Logo, link ve başlığı değiştirebilirsiniz. Logo boyutu 310 x 70 piksel idealdir."
 
 
 
 
54
 
55
- #: ../includes/form/appearance.php:35
56
  msgid "Logo"
57
  msgstr "Logo"
58
 
59
- #: ../includes/form/appearance.php:37
60
  msgid "URL"
61
  msgstr "Link"
62
 
63
- #: ../includes/form/appearance.php:39
64
  msgid "Title"
65
  msgstr "Başlık"
66
 
@@ -80,8 +103,7 @@ msgstr "Diğer"
80
  msgid "Deactivate Dashboard Widgets"
81
  msgstr "Yönetim alanı bileşenlerini etkisizleştir"
82
 
83
- #: ../includes/form/other.php:7
84
- #: ../includes/form/post.php:8
85
  #: ../includes/form/post.php:27
86
  msgid "Choose the items you want to remove."
87
  msgstr "Kaldırmak istediklerinizin yanındaki seçim kutucuğuna tıkalyın"
@@ -91,7 +113,9 @@ msgid "Add role \"Webmaster\""
91
  msgstr "\"Webmaster\" rolü ekle"
92
 
93
  #: ../includes/form/other.php:26
94
- msgid "This role has the capabilities of an \"Editor\", but can also edit theme options."
 
 
95
  msgstr "\"Webmaster\" rolü \"Editor\" + \"edit_theme_options\"."
96
 
97
  #: ../includes/form/other.php:32
@@ -99,7 +123,9 @@ msgid "Change default email address"
99
  msgstr "Varsayılan e-posta adresini değiştir"
100
 
101
  #: ../includes/form/other.php:34
102
- msgid "Change the email address and sender name used by automatic email notifications."
 
 
103
  msgstr "Varsayılan e-posta adresi ve gönderen ismini değiştir."
104
 
105
  #: ../includes/form/other.php:36
@@ -159,8 +185,12 @@ msgid "Stop self-pingbacks"
159
  msgstr "Kendine ping atmasını durdur"
160
 
161
  #: ../includes/form/post.php:73
162
- msgid "Stop sending pingbacks from your own site to your own site when writing posts."
163
- msgstr "Sitenizin kendi kendisine ping atmasını engeller (site içi linkler ile ilgili)"
 
 
 
 
164
 
165
  #: ../includes/form/post.php:79
166
  msgid "Add \"Excerpt\" support for Pages."
@@ -203,84 +233,98 @@ msgid "Please upload .ico image."
203
  msgstr "Lütfen .ico dosyası yükleyin"
204
 
205
  #: ../includes/form/site.php:14
 
 
 
 
 
 
 
 
206
  msgid "Remove \"wlwmanifest\" and \"xmlrpc\" from meta."
207
  msgstr "\"wlwmanifest\" ve \"xmlrpc\" nin otomatik olarak silinmesini aktif et"
208
 
209
- #: ../includes/form/site.php:16
210
  #, php-format
211
- msgid "If you don't use \"<a href=\"%s\">Remote Publishing</a>\", remove unnecessary tags from head."
212
- msgstr " \"<a href=\"%s\">Yönlendirmeli yayın</a>\" kullanmıyorsanız bu gereksiz eklentileri kaldırın"
 
 
 
 
213
 
214
- #: ../includes/form/site.php:22
215
  msgid "Remove adjacent posts rel links from head on Pages"
216
  msgstr "Sayfalardan gelişmiş yazı rel linklerini kaldır"
217
 
218
- #: ../includes/form/site.php:24
219
- msgid "Remove adjacent posts rel links from head on Pages.<br /><span class=\"ex\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
220
- msgstr "Sayfalardan gelişmiş yazı rel linklerini kaldır<br />örn: <span class=\"ex\">&lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
 
 
 
 
221
 
222
- #: ../includes/form/site.php:30
223
  msgid "Remove version number from head"
224
  msgstr "Üst kısımdan WordPress versiyonunu kaldır"
225
 
226
- #: ../includes/form/site.php:32
227
- msgid "Remove generator tag from head. <span class=\"ex\">e.g. &lt;meta name=\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
228
- msgstr "Üst kısımdan generator (oluşturucu) alanını kaldır örn: <span class=\"ex\"> &lt;meta name=\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
 
 
 
 
229
 
230
- #: ../includes/form/site.php:38
231
  msgid "Remove #more anchor"
232
  msgstr "#more ifadesini kaldır "
233
 
234
- #: ../includes/form/site.php:40
235
  msgid "Remove #more-xxx anchor from more links."
236
  msgstr "Yazı linklerinin sonundaki #more-xxx ifadesini kaldır"
237
 
238
- #: ../includes/form/site.php:46
239
  msgid "Remove \"[...]\" from excerpt"
240
  msgstr "Devamını oku alanından \"[...]\" ifadesini kaldır"
241
 
242
- #: ../includes/form/site.php:48
243
  msgid "Remove \"[...]\" from output of the_excerpt()."
244
  msgstr "the_excerpt() kodundan \"[...]\" ifadesini kaldır"
245
 
246
- #: ../includes/form/site.php:54
247
  msgid "Install Google Analytics"
248
  msgstr "Google Analytics Ekle"
249
 
250
- #: ../includes/form/site.php:56
251
  msgid "Add Google analytics code."
252
  msgstr "Google Analytics kodunuzu ekleyin"
253
 
254
- #: ../includes/form/site.php:63
255
  msgid "Exclude user logged in."
256
  msgstr "Kullanıcı girişini durdurun"
257
 
258
- #: ../includes/form/site.php:68
259
  msgid "Webmaster Tools Verification"
260
  msgstr "Webmaster Tools Onayı"
261
 
262
- #: ../includes/form/site.php:70
263
- msgid "Enter your meta key \"content\" value to verify your blog with <a href=\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a href=\"https://siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</a>, and <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
264
- msgstr "<a href=\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a href=\"https://siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</a> ve <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a> sistemleriden aldığınızı meta \"content\" anahtarını girin "
265
-
266
- #: ../includes/wpbiz_admin.php:313
267
- msgid "Save Changes"
268
- msgstr "Değişiklikleri Kaydet"
269
-
270
- #: ../includes/wpbiz_admin.php:337
271
- msgid "Deactivate"
272
- msgstr "Etkisizleştir"
273
-
274
- #: ../includes/wpbiz_admin.php:339
275
- #: ../includes/wpbiz_admin.php:341
276
- msgid "Activate"
277
- msgstr "Etkinleştir"
278
 
279
- #: ../wp-total-hacks.php:282
280
  msgid "Settings"
281
  msgstr "Seçenekler"
282
 
283
- #: ../wp-total-hacks.php:285
284
  msgid "Donate"
285
  msgstr "Bağış Yap"
286
-
7
  msgstr ""
8
  "Project-Id-Version: Total Hacks Turkish\n"
9
  "Report-Msgid-Bugs-To: \n"
10
+ "POT-Creation-Date: 2011-09-21 02:55+0900\n"
11
  "PO-Revision-Date: 2011-05-25 04:56+0200\n"
12
  "Last-Translator: Serkan Algur <info@kaisercrazy.com>\n"
13
  "Language-Team: kaisercrazy <info@kaisercrazy.com>\n"
19
  "X-Poedit-Country: TURKEY\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
 
22
+ #: ../includes/admin.php:245 ../includes/form/appearance.php:11
23
+ #: ../includes/form/appearance.php:35 ../includes/form/site.php:9
24
+ #: ../includes/form/site.php:18
25
+ msgid "Select File"
26
+ msgstr "Gözat"
27
+
28
+ #: ../includes/admin.php:382
29
+ msgid "Saved."
30
+ msgstr ""
31
+
32
+ #: ../includes/admin.php:389
33
+ msgid "Save Changes"
34
+ msgstr "Değişiklikleri Kaydet"
35
+
36
+ #: ../includes/admin.php:434
37
+ msgid "Deactivate"
38
+ msgstr "Etkisizleştir"
39
+
40
+ #: ../includes/admin.php:436 ../includes/admin.php:438
41
+ msgid "Activate"
42
+ msgstr "Etkinleştir"
43
+
44
  #: ../includes/form/appearance.php:3
45
  msgid "Appearance in admin"
46
  msgstr "Yönetim alanındaki görünüm"
53
  msgid "Upload 30 x 30 pixel image for admin header logo."
54
  msgstr "Yönetim alanı logosu için 30 x 30 piksel bir resim yükleyin"
55
 
 
 
 
 
 
56
  #: ../includes/form/appearance.php:16
57
  msgid "Change admin footer text"
58
  msgstr "Yönetim alanı alt kısım yazısını değiştir."
59
 
60
  #: ../includes/form/appearance.php:18
61
  msgid "You can edit admin footer text. Line breaks will remove."
62
+ msgstr ""
63
+ "Yönetim alanı alt kısım yazsını düzenleyebilirsiniz. Alt satıra geçme "
64
+ "etkisiz."
65
 
66
+ #: ../includes/form/appearance.php:29
67
  msgid "Change login logo"
68
  msgstr "Giriş alanı logosunu değiştir."
69
 
70
+ #: ../includes/form/appearance.php:31
71
+ msgid ""
72
+ "You can customize logo, URL and Title. The logo image size is recommended "
73
+ "310 x 70 pixel."
74
+ msgstr ""
75
+ "Logo, link ve başlığı değiştirebilirsiniz. Logo boyutu 310 x 70 piksel "
76
+ "idealdir."
77
 
78
+ #: ../includes/form/appearance.php:34
79
  msgid "Logo"
80
  msgstr "Logo"
81
 
82
+ #: ../includes/form/appearance.php:36
83
  msgid "URL"
84
  msgstr "Link"
85
 
86
+ #: ../includes/form/appearance.php:38
87
  msgid "Title"
88
  msgstr "Başlık"
89
 
103
  msgid "Deactivate Dashboard Widgets"
104
  msgstr "Yönetim alanı bileşenlerini etkisizleştir"
105
 
106
+ #: ../includes/form/other.php:7 ../includes/form/post.php:8
 
107
  #: ../includes/form/post.php:27
108
  msgid "Choose the items you want to remove."
109
  msgstr "Kaldırmak istediklerinizin yanındaki seçim kutucuğuna tıkalyın"
113
  msgstr "\"Webmaster\" rolü ekle"
114
 
115
  #: ../includes/form/other.php:26
116
+ msgid ""
117
+ "This role has the capabilities of an \"Editor\", but can also edit theme "
118
+ "options."
119
  msgstr "\"Webmaster\" rolü \"Editor\" + \"edit_theme_options\"."
120
 
121
  #: ../includes/form/other.php:32
123
  msgstr "Varsayılan e-posta adresini değiştir"
124
 
125
  #: ../includes/form/other.php:34
126
+ msgid ""
127
+ "Change the email address and sender name used by automatic email "
128
+ "notifications."
129
  msgstr "Varsayılan e-posta adresi ve gönderen ismini değiştir."
130
 
131
  #: ../includes/form/other.php:36
185
  msgstr "Kendine ping atmasını durdur"
186
 
187
  #: ../includes/form/post.php:73
188
+ msgid ""
189
+ "Stop sending pingbacks from your own site to your own site when writing "
190
+ "posts."
191
+ msgstr ""
192
+ "Sitenizin kendi kendisine ping atmasını engeller (site içi linkler ile "
193
+ "ilgili)"
194
 
195
  #: ../includes/form/post.php:79
196
  msgid "Add \"Excerpt\" support for Pages."
233
  msgstr "Lütfen .ico dosyası yükleyin"
234
 
235
  #: ../includes/form/site.php:14
236
+ msgid "Add a apple-touch-icon"
237
+ msgstr "apple-touch-icon Ekle"
238
+
239
+ #: ../includes/form/site.php:16
240
+ msgid "Please upload .png image."
241
+ msgstr "Lütfen .png dosyası yükleyin"
242
+
243
+ #: ../includes/form/site.php:23
244
  msgid "Remove \"wlwmanifest\" and \"xmlrpc\" from meta."
245
  msgstr "\"wlwmanifest\" ve \"xmlrpc\" nin otomatik olarak silinmesini aktif et"
246
 
247
+ #: ../includes/form/site.php:25
248
  #, php-format
249
+ msgid ""
250
+ "If you don't use \"<a href=\"%s\">Remote Publishing</a>\", remove "
251
+ "unnecessary tags from head."
252
+ msgstr ""
253
+ " \"<a href=\"%s\">Yönlendirmeli yayın</a>\" kullanmıyorsanız bu gereksiz "
254
+ "eklentileri kaldırın"
255
 
256
+ #: ../includes/form/site.php:31
257
  msgid "Remove adjacent posts rel links from head on Pages"
258
  msgstr "Sayfalardan gelişmiş yazı rel linklerini kaldır"
259
 
260
+ #: ../includes/form/site.php:33
261
+ msgid ""
262
+ "Remove adjacent posts rel links from head on Pages.<br /><span class=\"ex"
263
+ "\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
264
+ msgstr ""
265
+ "Sayfalardan gelişmiş yazı rel linklerini kaldır<br />örn: <span class=\"ex"
266
+ "\">&lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
267
 
268
+ #: ../includes/form/site.php:39
269
  msgid "Remove version number from head"
270
  msgstr "Üst kısımdan WordPress versiyonunu kaldır"
271
 
272
+ #: ../includes/form/site.php:41
273
+ msgid ""
274
+ "Remove generator tag from head. <span class=\"ex\">e.g. &lt;meta name="
275
+ "\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
276
+ msgstr ""
277
+ "Üst kısımdan generator (oluşturucu) alanını kaldır örn: <span class=\"ex\"> "
278
+ "&lt;meta name=\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
279
 
280
+ #: ../includes/form/site.php:47
281
  msgid "Remove #more anchor"
282
  msgstr "#more ifadesini kaldır "
283
 
284
+ #: ../includes/form/site.php:49
285
  msgid "Remove #more-xxx anchor from more links."
286
  msgstr "Yazı linklerinin sonundaki #more-xxx ifadesini kaldır"
287
 
288
+ #: ../includes/form/site.php:55
289
  msgid "Remove \"[...]\" from excerpt"
290
  msgstr "Devamını oku alanından \"[...]\" ifadesini kaldır"
291
 
292
+ #: ../includes/form/site.php:57
293
  msgid "Remove \"[...]\" from output of the_excerpt()."
294
  msgstr "the_excerpt() kodundan \"[...]\" ifadesini kaldır"
295
 
296
+ #: ../includes/form/site.php:63
297
  msgid "Install Google Analytics"
298
  msgstr "Google Analytics Ekle"
299
 
300
+ #: ../includes/form/site.php:65
301
  msgid "Add Google analytics code."
302
  msgstr "Google Analytics kodunuzu ekleyin"
303
 
304
+ #: ../includes/form/site.php:72
305
  msgid "Exclude user logged in."
306
  msgstr "Kullanıcı girişini durdurun"
307
 
308
+ #: ../includes/form/site.php:77
309
  msgid "Webmaster Tools Verification"
310
  msgstr "Webmaster Tools Onayı"
311
 
312
+ #: ../includes/form/site.php:79
313
+ msgid ""
314
+ "Enter your meta key \"content\" value to verify your blog with <a href="
315
+ "\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a "
316
+ "href=\"https://siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</a>, "
317
+ "and <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
318
+ msgstr ""
319
+ "<a href=\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</"
320
+ "a>, <a href=\"https://siteexplorer.search.yahoo.com/\">Yahoo! Site Explorer</"
321
+ "a> ve <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a> "
322
+ "sistemleriden aldığınızı meta \"content\" anahtarını girin "
 
 
 
 
 
323
 
324
+ #: ../wp-total-hacks.php:292
325
  msgid "Settings"
326
  msgstr "Seçenekler"
327
 
328
+ #: ../wp-total-hacks.php:295
329
  msgid "Donate"
330
  msgstr "Bağış Yap"
 
{langs → languages}/wp-total-hacks.pot RENAMED
@@ -8,7 +8,7 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2011-05-23 14:56+0900\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,6 +17,28 @@ msgstr ""
17
  "Content-Type: text/plain; charset=CHARSET\n"
18
  "Content-Transfer-Encoding: 8bit\n"
19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #: ../includes/form/appearance.php:3
21
  msgid "Appearance in admin"
22
  msgstr ""
@@ -29,10 +51,6 @@ msgstr ""
29
  msgid "Upload 30 x 30 pixel image for admin header logo."
30
  msgstr ""
31
 
32
- #: ../includes/form/appearance.php:11 ../includes/form/appearance.php:36
33
- msgid "Select File"
34
- msgstr ""
35
-
36
  #: ../includes/form/appearance.php:16
37
  msgid "Change admin footer text"
38
  msgstr ""
@@ -41,25 +59,25 @@ msgstr ""
41
  msgid "You can edit admin footer text. Line breaks will remove."
42
  msgstr ""
43
 
44
- #: ../includes/form/appearance.php:30
45
  msgid "Change login logo"
46
  msgstr ""
47
 
48
- #: ../includes/form/appearance.php:32
49
  msgid ""
50
  "You can customize logo, URL and Title. The logo image size is recommended "
51
  "310 x 70 pixel."
52
  msgstr ""
53
 
54
- #: ../includes/form/appearance.php:35
55
  msgid "Logo"
56
  msgstr ""
57
 
58
- #: ../includes/form/appearance.php:37
59
  msgid "URL"
60
  msgstr ""
61
 
62
- #: ../includes/form/appearance.php:39
63
  msgid "Title"
64
  msgstr ""
65
 
@@ -89,7 +107,9 @@ msgid "Add role \"Webmaster\""
89
  msgstr ""
90
 
91
  #: ../includes/form/other.php:26
92
- msgid "This role has the capabilities of an \"Editor\", but can also edit theme options."
 
 
93
  msgstr ""
94
 
95
  #: ../includes/form/other.php:32
@@ -97,7 +117,9 @@ msgid "Change default email address"
97
  msgstr ""
98
 
99
  #: ../includes/form/other.php:34
100
- msgid "Change the email address and sender name used by automatic email notifications."
 
 
101
  msgstr ""
102
 
103
  #: ../includes/form/other.php:36
@@ -158,7 +180,8 @@ msgstr ""
158
 
159
  #: ../includes/form/post.php:73
160
  msgid ""
161
- "Stop sending pingbacks from your own site to your own site when writing posts."
 
162
  msgstr ""
163
 
164
  #: ../includes/form/post.php:79
@@ -202,69 +225,77 @@ msgid "Please upload .ico image."
202
  msgstr ""
203
 
204
  #: ../includes/form/site.php:14
205
- msgid "Remove \"wlwmanifest\" and \"xmlrpc\" from meta."
206
  msgstr ""
207
 
208
  #: ../includes/form/site.php:16
 
 
 
 
 
 
 
 
209
  #, php-format
210
  msgid ""
211
  "If you don't use \"<a href=\"%s\">Remote Publishing</a>\", remove "
212
  "unnecessary tags from head."
213
  msgstr ""
214
 
215
- #: ../includes/form/site.php:22
216
  msgid "Remove adjacent posts rel links from head on Pages"
217
  msgstr ""
218
 
219
- #: ../includes/form/site.php:24
220
  msgid ""
221
  "Remove adjacent posts rel links from head on Pages.<br /><span class=\"ex"
222
  "\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
223
  msgstr ""
224
 
225
- #: ../includes/form/site.php:30
226
  msgid "Remove version number from head"
227
  msgstr ""
228
 
229
- #: ../includes/form/site.php:32
230
  msgid ""
231
  "Remove generator tag from head. <span class=\"ex\">e.g. &lt;meta name="
232
  "\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
233
  msgstr ""
234
 
235
- #: ../includes/form/site.php:38
236
  msgid "Remove #more anchor"
237
  msgstr ""
238
 
239
- #: ../includes/form/site.php:40
240
  msgid "Remove #more-xxx anchor from more links."
241
  msgstr ""
242
 
243
- #: ../includes/form/site.php:46
244
  msgid "Remove \"[...]\" from excerpt"
245
  msgstr ""
246
 
247
- #: ../includes/form/site.php:48
248
  msgid "Remove \"[...]\" from output of the_excerpt()."
249
  msgstr ""
250
 
251
- #: ../includes/form/site.php:54
252
  msgid "Install Google Analytics"
253
  msgstr ""
254
 
255
- #: ../includes/form/site.php:56
256
  msgid "Add Google analytics code."
257
  msgstr ""
258
 
259
- #: ../includes/form/site.php:63
260
  msgid "Exclude user logged in."
261
  msgstr ""
262
 
263
- #: ../includes/form/site.php:68
264
  msgid "Webmaster Tools Verification"
265
  msgstr ""
266
 
267
- #: ../includes/form/site.php:70
268
  msgid ""
269
  "Enter your meta key \"content\" value to verify your blog with <a href="
270
  "\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a "
@@ -272,22 +303,10 @@ msgid ""
272
  "and <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
273
  msgstr ""
274
 
275
- #: ../includes/wpbiz_admin.php:313
276
- msgid "Save Changes"
277
- msgstr ""
278
-
279
- #: ../includes/wpbiz_admin.php:337
280
- msgid "Deactivate"
281
- msgstr ""
282
-
283
- #: ../includes/wpbiz_admin.php:339 ../includes/wpbiz_admin.php:341
284
- msgid "Activate"
285
- msgstr ""
286
-
287
- #: ../wp-total-hacks.php:282
288
  msgid "Settings"
289
  msgstr ""
290
 
291
- #: ../wp-total-hacks.php:285
292
  msgid "Donate"
293
  msgstr ""
8
  msgstr ""
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
  "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2011-09-21 02:55+0900\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
17
  "Content-Type: text/plain; charset=CHARSET\n"
18
  "Content-Transfer-Encoding: 8bit\n"
19
 
20
+ #: ../includes/admin.php:245 ../includes/form/appearance.php:11
21
+ #: ../includes/form/appearance.php:35 ../includes/form/site.php:9
22
+ #: ../includes/form/site.php:18
23
+ msgid "Select File"
24
+ msgstr ""
25
+
26
+ #: ../includes/admin.php:382
27
+ msgid "Saved."
28
+ msgstr ""
29
+
30
+ #: ../includes/admin.php:389
31
+ msgid "Save Changes"
32
+ msgstr ""
33
+
34
+ #: ../includes/admin.php:434
35
+ msgid "Deactivate"
36
+ msgstr ""
37
+
38
+ #: ../includes/admin.php:436 ../includes/admin.php:438
39
+ msgid "Activate"
40
+ msgstr ""
41
+
42
  #: ../includes/form/appearance.php:3
43
  msgid "Appearance in admin"
44
  msgstr ""
51
  msgid "Upload 30 x 30 pixel image for admin header logo."
52
  msgstr ""
53
 
 
 
 
 
54
  #: ../includes/form/appearance.php:16
55
  msgid "Change admin footer text"
56
  msgstr ""
59
  msgid "You can edit admin footer text. Line breaks will remove."
60
  msgstr ""
61
 
62
+ #: ../includes/form/appearance.php:29
63
  msgid "Change login logo"
64
  msgstr ""
65
 
66
+ #: ../includes/form/appearance.php:31
67
  msgid ""
68
  "You can customize logo, URL and Title. The logo image size is recommended "
69
  "310 x 70 pixel."
70
  msgstr ""
71
 
72
+ #: ../includes/form/appearance.php:34
73
  msgid "Logo"
74
  msgstr ""
75
 
76
+ #: ../includes/form/appearance.php:36
77
  msgid "URL"
78
  msgstr ""
79
 
80
+ #: ../includes/form/appearance.php:38
81
  msgid "Title"
82
  msgstr ""
83
 
107
  msgstr ""
108
 
109
  #: ../includes/form/other.php:26
110
+ msgid ""
111
+ "This role has the capabilities of an \"Editor\", but can also edit theme "
112
+ "options."
113
  msgstr ""
114
 
115
  #: ../includes/form/other.php:32
117
  msgstr ""
118
 
119
  #: ../includes/form/other.php:34
120
+ msgid ""
121
+ "Change the email address and sender name used by automatic email "
122
+ "notifications."
123
  msgstr ""
124
 
125
  #: ../includes/form/other.php:36
180
 
181
  #: ../includes/form/post.php:73
182
  msgid ""
183
+ "Stop sending pingbacks from your own site to your own site when writing "
184
+ "posts."
185
  msgstr ""
186
 
187
  #: ../includes/form/post.php:79
225
  msgstr ""
226
 
227
  #: ../includes/form/site.php:14
228
+ msgid "Add a apple-touch-icon"
229
  msgstr ""
230
 
231
  #: ../includes/form/site.php:16
232
+ msgid "Please upload .png image."
233
+ msgstr ""
234
+
235
+ #: ../includes/form/site.php:23
236
+ msgid "Remove \"wlwmanifest\" and \"xmlrpc\" from meta."
237
+ msgstr ""
238
+
239
+ #: ../includes/form/site.php:25
240
  #, php-format
241
  msgid ""
242
  "If you don't use \"<a href=\"%s\">Remote Publishing</a>\", remove "
243
  "unnecessary tags from head."
244
  msgstr ""
245
 
246
+ #: ../includes/form/site.php:31
247
  msgid "Remove adjacent posts rel links from head on Pages"
248
  msgstr ""
249
 
250
+ #: ../includes/form/site.php:33
251
  msgid ""
252
  "Remove adjacent posts rel links from head on Pages.<br /><span class=\"ex"
253
  "\">e.g. &lt;link rel=\"next\" ...&gt; &lt;link rel=\"prev\" ...&gt;</span>"
254
  msgstr ""
255
 
256
+ #: ../includes/form/site.php:39
257
  msgid "Remove version number from head"
258
  msgstr ""
259
 
260
+ #: ../includes/form/site.php:41
261
  msgid ""
262
  "Remove generator tag from head. <span class=\"ex\">e.g. &lt;meta name="
263
  "\"generator\" content=\"WordPress x.x.x\" /&gt;</span>"
264
  msgstr ""
265
 
266
+ #: ../includes/form/site.php:47
267
  msgid "Remove #more anchor"
268
  msgstr ""
269
 
270
+ #: ../includes/form/site.php:49
271
  msgid "Remove #more-xxx anchor from more links."
272
  msgstr ""
273
 
274
+ #: ../includes/form/site.php:55
275
  msgid "Remove \"[...]\" from excerpt"
276
  msgstr ""
277
 
278
+ #: ../includes/form/site.php:57
279
  msgid "Remove \"[...]\" from output of the_excerpt()."
280
  msgstr ""
281
 
282
+ #: ../includes/form/site.php:63
283
  msgid "Install Google Analytics"
284
  msgstr ""
285
 
286
+ #: ../includes/form/site.php:65
287
  msgid "Add Google analytics code."
288
  msgstr ""
289
 
290
+ #: ../includes/form/site.php:72
291
  msgid "Exclude user logged in."
292
  msgstr ""
293
 
294
+ #: ../includes/form/site.php:77
295
  msgid "Webmaster Tools Verification"
296
  msgstr ""
297
 
298
+ #: ../includes/form/site.php:79
299
  msgid ""
300
  "Enter your meta key \"content\" value to verify your blog with <a href="
301
  "\"https://www.google.com/webmasters/tools/\">Google Webmaster Tools</a>, <a "
303
  "and <a href=\"http://www.bing.com/webmaster\">Bing Webmaster Center</a>."
304
  msgstr ""
305
 
306
+ #: ../wp-total-hacks.php:292
 
 
 
 
 
 
 
 
 
 
 
 
307
  msgid "Settings"
308
  msgstr ""
309
 
310
+ #: ../wp-total-hacks.php:295
311
  msgid "Donate"
312
  msgstr ""
readme.txt CHANGED
@@ -4,9 +4,10 @@ Donate link: http://firegoby.theta.ne.jp/
4
  Tags: head, post, page, functions.php, admin, logo, auto save, revision, meta box, dashboard
5
  Requires at least: 3.1
6
  Tested up to: 3.2
7
- Stable tag: 0.4.0
8
 
9
  WP Total Hacks can customize more than 20 settings on your WordPress Site.
 
10
 
11
  == Description ==
12
 
@@ -19,6 +20,7 @@ http://www.youtube.com/watch?v=05LFDZJwPAE
19
  = Some features: =
20
 
21
  All items you can select to Active or Deactive.
 
22
 
23
  * Add a favicon.
24
  * Change admin header logo.
@@ -75,8 +77,9 @@ Please contact to me.
75
 
76
  == Changelog ==
77
 
78
- = 0.4.0 =
79
- * fixed to WordPress 3.2
 
80
 
81
  = 0.3.0 =
82
  * Bug fix for admin UI
4
  Tags: head, post, page, functions.php, admin, logo, auto save, revision, meta box, dashboard
5
  Requires at least: 3.1
6
  Tested up to: 3.2
7
+ Stable tag: 0.5.0
8
 
9
  WP Total Hacks can customize more than 20 settings on your WordPress Site.
10
+ PHP5 is required!
11
 
12
  == Description ==
13
 
20
  = Some features: =
21
 
22
  All items you can select to Active or Deactive.
23
+ PHP5 is required!
24
 
25
  * Add a favicon.
26
  * Change admin header logo.
77
 
78
  == Changelog ==
79
 
80
+ = 0.5.0 =
81
+ * Security fix.
82
+ * apple-touch-icon
83
 
84
  = 0.3.0 =
85
  * Bug fix for admin UI
wp-total-hacks.php CHANGED
@@ -5,25 +5,22 @@ Author: Takayuki Miyauchi
5
  Plugin URI: http://firegoby.theta.ne.jp/wp/wp-total-hacks
6
  Description: WP Total Hacks can customize your WordPress.
7
  Author: Takayuki Miyauchi
8
- Version: 0.4.0
9
  Author URI: http://firegoby.theta.ne.jp/
 
 
10
  */
11
 
12
 
13
- new WPBIZ();
14
 
15
- class WPBIZ {
16
 
17
  public function __construct()
18
  {
19
- load_plugin_textdomain(
20
- "wp-total-hacks",
21
- PLUGINDIR.'/'.dirname(plugin_basename(__FILE__)).'/langs',
22
- dirname(plugin_basename(__FILE__)).'/langs'
23
- );
24
  if (is_admin()) {
25
- require_once(dirname(__FILE__).'/includes/wpbiz_admin.php');
26
- new WPBIZ_ADMIN(WP_PLUGIN_URL.'/'.dirname(plugin_basename(__FILE__)));
27
  }
28
  if (strlen($this->op('wfb_revision'))) {
29
  if (!defined('WP_POST_REVISIONS')) {
@@ -31,6 +28,7 @@ public function __construct()
31
  }
32
  }
33
  add_action('init', array(&$this, 'init'));
 
34
  add_action('get_header', array(&$this, 'get_header'));
35
  add_action('wp_head', array(&$this, 'wp_head'));
36
  add_action('admin_head', array(&$this, 'admin_head'));
@@ -50,6 +48,15 @@ public function __construct()
50
  add_filter('excerpt_more', array(&$this, 'excerpt_more'));
51
  }
52
 
 
 
 
 
 
 
 
 
 
53
  public function excerpt_more($str)
54
  {
55
  if ($this->op('wfb_remove_excerpt')) {
@@ -108,7 +115,7 @@ public function wp_print_scripts()
108
  public function the_content_more_link($str)
109
  {
110
  if ($this->op('wfb_remove_more')) {
111
- $str = preg_replace('/#more-[\d]+/i', '', $str);
112
  }
113
  return $str;
114
  }
@@ -188,8 +195,12 @@ public function wp_head()
188
  }
189
  }
190
  if ($this->op('wfb_favicon')) {
191
- $link = '<link rel="Shortcut Icon" type="image/x-icon" href="%s" />';
192
- printf($link, $this->op("wfb_favicon"));
 
 
 
 
193
  }
194
  echo $this->get_meta('google-site-verification', $this->op('wfb_google'));
195
  echo $this->get_meta('y_key', $this->op('wfb_yahoo'));
@@ -204,16 +215,16 @@ public function admin_head()
204
  $style = '<style type="text/css">';
205
  $style .= '#header-logo{background-image: url(%s) !important;}';
206
  $style .= '</style>';
207
- printf($style, $this->op("wfb_custom_logo"));
208
  }
209
 
210
  private function get_meta($name, $content)
211
  {
212
  if ($name && $content) {
213
  return sprintf(
214
- '<meta name="%s" content="%s" />',
215
  $name,
216
- $content
217
  );
218
  }
219
  }
@@ -232,7 +243,7 @@ public function login_head()
232
  if ($this->op("wfb_login_logo")) {
233
  printf(
234
  '<style type="text/css">h1 a {background-image: url(%s) !important;}</style>',
235
- $this->op('wfb_login_logo')
236
  );
237
  }
238
  }
@@ -281,7 +292,7 @@ public function plugin_row_meta($links, $file)
281
  __("Settings")
282
  );
283
  $url = "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8NDYFAG2ZM9TU";
284
- $links[] = sprintf($link, $url, __("Donate", "wp-total-hacks"));
285
  }
286
  return $links;
287
  }
5
  Plugin URI: http://firegoby.theta.ne.jp/wp/wp-total-hacks
6
  Description: WP Total Hacks can customize your WordPress.
7
  Author: Takayuki Miyauchi
8
+ Version: 0.5.0
9
  Author URI: http://firegoby.theta.ne.jp/
10
+ Domain Path: /languages
11
+ Text Domain: wp-total-hacks
12
  */
13
 
14
 
15
+ new TotalHacks();
16
 
17
+ class TotalHacks {
18
 
19
  public function __construct()
20
  {
 
 
 
 
 
21
  if (is_admin()) {
22
+ require_once(dirname(__FILE__).'/includes/admin.php');
23
+ new TotalHacksAdmin(WP_PLUGIN_URL.'/'.dirname(plugin_basename(__FILE__)));
24
  }
25
  if (strlen($this->op('wfb_revision'))) {
26
  if (!defined('WP_POST_REVISIONS')) {
28
  }
29
  }
30
  add_action('init', array(&$this, 'init'));
31
+ add_action('plugins_loaded', array(&$this, 'plugins_loaded'));
32
  add_action('get_header', array(&$this, 'get_header'));
33
  add_action('wp_head', array(&$this, 'wp_head'));
34
  add_action('admin_head', array(&$this, 'admin_head'));
48
  add_filter('excerpt_more', array(&$this, 'excerpt_more'));
49
  }
50
 
51
+ public function plugins_loaded()
52
+ {
53
+ load_plugin_textdomain(
54
+ "wp-total-hacks",
55
+ false,
56
+ dirname(plugin_basename(__FILE__)).'/languages'
57
+ );
58
+ }
59
+
60
  public function excerpt_more($str)
61
  {
62
  if ($this->op('wfb_remove_excerpt')) {
115
  public function the_content_more_link($str)
116
  {
117
  if ($this->op('wfb_remove_more')) {
118
+ $str = preg_replace('/#more-[0-9]+/i', '', $str);
119
  }
120
  return $str;
121
  }
195
  }
196
  }
197
  if ($this->op('wfb_favicon')) {
198
+ $link = '<link rel="Shortcut Icon" type="image/x-icon" href="%s" />'."\n";
199
+ printf($link, esc_url($this->op("wfb_favicon")));
200
+ }
201
+ if ($this->op('wfb_apple_icon')) {
202
+ $link = '<link rel="apple-touch-icon" href="%s" />'."\n";
203
+ printf($link, esc_url($this->op("wfb_apple_icon")));
204
  }
205
  echo $this->get_meta('google-site-verification', $this->op('wfb_google'));
206
  echo $this->get_meta('y_key', $this->op('wfb_yahoo'));
215
  $style = '<style type="text/css">';
216
  $style .= '#header-logo{background-image: url(%s) !important;}';
217
  $style .= '</style>';
218
+ printf($style, esc_url($this->op("wfb_custom_logo")));
219
  }
220
 
221
  private function get_meta($name, $content)
222
  {
223
  if ($name && $content) {
224
  return sprintf(
225
+ '<meta name="%s" content="%s" />'."\n",
226
  $name,
227
+ esc_attr($content)
228
  );
229
  }
230
  }
243
  if ($this->op("wfb_login_logo")) {
244
  printf(
245
  '<style type="text/css">h1 a {background-image: url(%s) !important;}</style>',
246
+ esc_url($this->op('wfb_login_logo'))
247
  );
248
  }
249
  }
292
  __("Settings")
293
  );
294
  $url = "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8NDYFAG2ZM9TU";
295
+ $links[] = sprintf($link, esc_url($url), __("Donate", "wp-total-hacks"));
296
  }
297
  return $links;
298
  }