WP Total Hacks - Version 0.2.2

Version Description

  • German support
Download this release

Release Info

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

Code changes from version 0.2.1 to 0.2.2

includes/form/other.php CHANGED
@@ -2,9 +2,9 @@
2
  <h3><?php _e('Other', 'wp-total-hacks'); ?></h3>
3
 
4
  <div class="block">
5
- <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Deactive Dashboard Widgets', 'wp-total-hacks'); ?></h4>
6
  <div class="block_content">
7
- <p><?php _e('Click on the check box that you want to delete.', 'wp-total-hacks'); ?></p>
8
  <ul>
9
  <?php foreach ($this->widgets as $wgt => $pos): ?>
10
  <li>
@@ -23,15 +23,15 @@
23
  <div class="block">
24
  <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Add role "Webmaster"', 'wp-total-hacks'); ?></h4>
25
  <div class="block_content">
26
- <p><?php _e('"Webmaster" is role able to "Editor" + "edit_theme_options".', 'wp-total-hacks'); ?></p>
27
  <?php $this->sel('wfb_webmaster'); ?>
28
  </div>
29
  </div>
30
 
31
  <div class="block">
32
- <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Change the default eamil address', 'wp-total-hacks'); ?></h4>
33
  <div class="block_content">
34
- <p><?php _e('Change the default eamil address and sender name.', 'wp-total-hacks'); ?></p>
35
  <dl>
36
  <dt><?php _e('Name'); ?></dt>
37
  <dd><input class="text" type="text" name="wfb_sendername" value="<?php $this->op('wfb_sendername')?>" /></dd>
2
  <h3><?php _e('Other', 'wp-total-hacks'); ?></h3>
3
 
4
  <div class="block">
5
+ <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Deactivate Dashboard Widgets', 'wp-total-hacks'); ?></h4>
6
  <div class="block_content">
7
+ <p><?php _e('Choose the items you want to remove.', 'wp-total-hacks'); ?></p>
8
  <ul>
9
  <?php foreach ($this->widgets as $wgt => $pos): ?>
10
  <li>
23
  <div class="block">
24
  <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Add role "Webmaster"', 'wp-total-hacks'); ?></h4>
25
  <div class="block_content">
26
+ <p><?php _e('This role has the capabilities of an "Editor", but can also edit theme options.', 'wp-total-hacks'); ?></p>
27
  <?php $this->sel('wfb_webmaster'); ?>
28
  </div>
29
  </div>
30
 
31
  <div class="block">
32
+ <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Change default email address', 'wp-total-hacks'); ?></h4>
33
  <div class="block_content">
34
+ <p><?php _e('Change the email address and sender name used by automatic email notifications.', 'wp-total-hacks'); ?></p>
35
  <dl>
36
  <dt><?php _e('Name'); ?></dt>
37
  <dd><input class="text" type="text" name="wfb_sendername" value="<?php $this->op('wfb_sendername')?>" /></dd>
includes/form/post.php CHANGED
@@ -1,11 +1,11 @@
1
 
2
  <div id="post" class="tab">
3
- <h3><?php _e('Posts & Pages', 'wp-total-hacks'); ?></h3>
4
 
5
  <div class="block">
6
- <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Delete meta boxes for Posts', 'wp-total-hacks'); ?></h4>
7
  <div class="block_content">
8
- <p><?php _e('Click on the check box that you want to delete.', 'wp-total-hacks'); ?></p>
9
  <ul>
10
  <?php foreach ($this->post_metas as $wgt => $pos): ?>
11
  <li>
@@ -22,9 +22,9 @@
22
  </div>
23
 
24
  <div class="block">
25
- <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Delete meta boxes for Pages', 'wp-total-hacks'); ?></h4>
26
  <div class="block_content">
27
- <p><?php _e('Click on the check box that you want to delete.', 'wp-total-hacks'); ?></p>
28
  <ul>
29
  <?php foreach ($this->page_metas as $wgt => $pos): ?>
30
  <li>
@@ -43,7 +43,7 @@
43
  <div class="block">
44
  <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Revision Control', 'wp-total-hacks'); ?></h4>
45
  <div class="block_content">
46
- <p><?php _e('Please select limit the number of allowed revisions.', 'wp-total-hacks'); ?></p>
47
  <select name="wfb_revision" id="wfb_revision">
48
  <option value=""><?php _e('Store All', 'wp-total-hacks'); ?></option>
49
  <?php for($i=0; $i<21; $i++): ?>
@@ -68,9 +68,9 @@
68
  </div>
69
 
70
  <div class="block">
71
- <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Stop Self Pings', 'wp-total-hacks'); ?></h4>
72
  <div class="block_content">
73
- <p><?php _e('Stop sending pings from your own site to your own site when you write posts.', 'wp-total-hacks'); ?></p>
74
  <?php $this->sel('wfb_selfping'); ?>
75
  </div>
76
  </div>
@@ -78,7 +78,7 @@
78
  <div class="block">
79
  <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Add "Excerpt" support for Pages.', 'wp-total-hacks'); ?></h4>
80
  <div class="block_content">
81
- <p><?php _e('Requires to add excerpt text in a Pages.', 'wp-total-hacks'); ?></p>
82
  <?php $this->sel('wfb_pageexcerpt'); ?>
83
  </div>
84
  </div>
1
 
2
  <div id="post" class="tab">
3
+ <h3><?php _e('Posts &amp; Pages', 'wp-total-hacks'); ?></h3>
4
 
5
  <div class="block">
6
+ <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Remove meta boxes for Posts', 'wp-total-hacks'); ?></h4>
7
  <div class="block_content">
8
+ <p><?php _e('Choose the items you want to remove.', 'wp-total-hacks'); ?></p>
9
  <ul>
10
  <?php foreach ($this->post_metas as $wgt => $pos): ?>
11
  <li>
22
  </div>
23
 
24
  <div class="block">
25
+ <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Remove meta boxes for Pages', 'wp-total-hacks'); ?></h4>
26
  <div class="block_content">
27
+ <p><?php _e('Choose the items you want to remove.', 'wp-total-hacks'); ?></p>
28
  <ul>
29
  <?php foreach ($this->page_metas as $wgt => $pos): ?>
30
  <li>
43
  <div class="block">
44
  <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Revision Control', 'wp-total-hacks'); ?></h4>
45
  <div class="block_content">
46
+ <p><?php _e('Limit the number of revisions allowed.', 'wp-total-hacks'); ?></p>
47
  <select name="wfb_revision" id="wfb_revision">
48
  <option value=""><?php _e('Store All', 'wp-total-hacks'); ?></option>
49
  <?php for($i=0; $i<21; $i++): ?>
68
  </div>
69
 
70
  <div class="block">
71
+ <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Stop self-pingbacks', 'wp-total-hacks'); ?></h4>
72
  <div class="block_content">
73
+ <p><?php _e('Stop sending pingbacks from your own site to your own site when writing posts.', 'wp-total-hacks'); ?></p>
74
  <?php $this->sel('wfb_selfping'); ?>
75
  </div>
76
  </div>
78
  <div class="block">
79
  <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Add "Excerpt" support for Pages.', 'wp-total-hacks'); ?></h4>
80
  <div class="block_content">
81
+ <p><?php _e('Allows you to add excerpt text to pages.', 'wp-total-hacks'); ?></p>
82
  <?php $this->sel('wfb_pageexcerpt'); ?>
83
  </div>
84
  </div>
includes/form/site.php CHANGED
@@ -11,7 +11,7 @@
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('Enable auto remove "wlwmanifest" and "xmlrpc" from meta.', 'wp-total-hacks'); ?></h4>
15
  <div class="block_content">
16
  <p><?php printf(__('If you don\'t use "<a href="%s">Remote Publishing</a>", remove unnecessary tags from head.', 'wp-total-hacks'), admin_url('options-writing.php')); ?></p>
17
  <?php $this->sel('wfb_remove_xmlrpc'); ?>
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">
16
  <p><?php printf(__('If you don\'t use "<a href="%s">Remote Publishing</a>", remove unnecessary tags from head.', 'wp-total-hacks'), admin_url('options-writing.php')); ?></p>
17
  <?php $this->sel('wfb_remove_xmlrpc'); ?>
includes/wpbiz_admin.php CHANGED
@@ -9,6 +9,10 @@ private $contributors = array(
9
  'country' => 'Japan',
10
  'url' => 'http://twitter.com/#!/miya0001',
11
  ),
 
 
 
 
12
  );
13
  private $translators = array(
14
  'Takayuki Miyauchi' => array(
@@ -27,6 +31,10 @@ private $translators = array(
27
  'lang' => 'Turkish',
28
  'url' => 'http://www.kaisercrazy.com/',
29
  ),
 
 
 
 
30
  );
31
  private $role = 'manage_options';
32
  private $plugin_url = '';
9
  'country' => 'Japan',
10
  'url' => 'http://twitter.com/#!/miya0001',
11
  ),
12
+ 'Felix Kern' => array(
13
+ 'country' => 'Germany',
14
+ 'url' => 'http://twitter.com/#!/kernfel',
15
+ ),
16
  );
17
  private $translators = array(
18
  'Takayuki Miyauchi' => array(
31
  'lang' => 'Turkish',
32
  'url' => 'http://www.kaisercrazy.com/',
33
  ),
34
+ 'Felix Kern' => array(
35
+ 'lang' => 'German',
36
+ 'url' => 'http://twitter.com/#!/kernfel',
37
+ ),
38
  );
39
  private $role = 'manage_options';
40
  private $plugin_url = '';
langs/wp-total-hacks-de_DE.mo ADDED
Binary file
langs/wp-total-hacks-de_DE.po ADDED
@@ -0,0 +1,280 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This file is distributed under the same license as the PACKAGE package.
2
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
3
+ #
4
+ 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"
19
+
20
+ #: ../includes/form/appearance.php:6
21
+ msgid "Change admin header logo"
22
+ msgstr "Admin-Kopfzeilenlogo ändern"
23
+
24
+ #: ../includes/form/appearance.php:8
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
+
61
+ #: ../includes/form/footer.php:2
62
+ msgid "Translators"
63
+ msgstr "Übersetzer"
64
+
65
+ #: ../includes/form/footer.php:7
66
+ msgid "Contributors"
67
+ msgstr "Mitwirkende"
68
+
69
+ #: ../includes/form/other.php:2
70
+ msgid "Other"
71
+ msgstr "Diverse"
72
+
73
+ #: ../includes/form/other.php:5
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."
82
+
83
+ #: ../includes/form/other.php:24
84
+ 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
100
+ msgid "Name"
101
+ msgstr ""
102
+
103
+ #: ../includes/form/other.php:38
104
+ msgid "Email"
105
+ msgstr ""
106
+
107
+ #: ../includes/form/other.php:45
108
+ msgid "Delete default contact methods"
109
+ msgstr "Kontaktinfos entfernen"
110
+
111
+ #: ../includes/form/other.php:47
112
+ msgid "Delete default contact methods from user profile."
113
+ msgstr "Wähle die Kontaktinfos, die im Profil nicht angezeigt werden sollen."
114
+
115
+ #: ../includes/form/other.php:64
116
+ msgid "Remove Update Notification"
117
+ msgstr "Update-Meldungen unterdrücken"
118
+
119
+ #: ../includes/form/other.php:66
120
+ msgid "Remove Update Notification for all users except Admin User."
121
+ msgstr "Unterdrückt Update-Meldungen für alle Benutzer außer Administratoren."
122
+
123
+ #: ../includes/form/post.php:3
124
+ msgid "Posts &amp; Pages"
125
+ msgstr "Artikel &amp; Seiten"
126
+
127
+ #: ../includes/form/post.php:6
128
+ msgid "Remove meta boxes for Posts"
129
+ msgstr "Metaboxen für Artikel entfernen"
130
+
131
+ #: ../includes/form/post.php:25
132
+ msgid "Remove meta boxes for Pages"
133
+ msgstr "Metaboxen für Seiten entfernen"
134
+
135
+ #: ../includes/form/post.php:44
136
+ msgid "Revision Control"
137
+ msgstr "Revisionskontrolle"
138
+
139
+ #: ../includes/form/post.php:46
140
+ msgid "Limit the number of revisions allowed."
141
+ msgstr "Beschränke die mögliche Anzahl von Revisionen."
142
+
143
+ #: ../includes/form/post.php:48
144
+ msgid "Store All"
145
+ msgstr "Unbegrenzt"
146
+
147
+ #: ../includes/form/post.php:64
148
+ msgid "Disable Auto Save"
149
+ msgstr "Automatisches Speichern deaktivieren"
150
+
151
+ #: ../includes/form/post.php:71
152
+ 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."
161
+ msgstr "Auszüge für Seiten ermöglichen"
162
+
163
+ #: ../includes/form/post.php:81
164
+ msgid "Allows you to add excerpt text to pages."
165
+ msgstr "Ermöglicht das Hinzufügen von Auszügen bei Seiten."
166
+
167
+ #: ../includes/form/sidebar.php:2
168
+ msgid "WordPress Plugins"
169
+ msgstr "WordPress Plugins"
170
+
171
+ #: ../includes/form/sidebar.php:13
172
+ msgid "This Plugin needs your support"
173
+ msgstr "Dieses Plugin braucht deine Unterstützung"
174
+
175
+ #: ../includes/form/sidebar.php:14
176
+ msgid "Please help support the continued development."
177
+ msgstr "Hilf mit, seine weitere Entwicklung zu finanzieren."
178
+
179
+ #: ../includes/form/sidebar.php:16
180
+ msgid "$200+ makes you an official contributor."
181
+ msgstr "Ab 200$ wirst du als Mitwirkende/r aufgeführt."
182
+
183
+ #: ../includes/form/sidebar.php:20
184
+ msgid "Contact"
185
+ msgstr "Kontakt"
186
+
187
+ #: ../includes/form/site.php:2
188
+ msgid "Site Settings"
189
+ msgstr "Seiteneinstellungen"
190
+
191
+ #: ../includes/form/site.php:5
192
+ msgid "Add a favicon"
193
+ msgstr "Favicon hinzufügen"
194
+
195
+ #: ../includes/form/site.php:7
196
+ 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
+
langs/wp-total-hacks-it_IT.mo CHANGED
Binary file
langs/wp-total-hacks-it_IT.po CHANGED
@@ -74,13 +74,13 @@ msgid "Other"
74
  msgstr "Altro"
75
 
76
  #: ../includes/form/other.php:5
77
- msgid "Deactive 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 "Click on the check box that you want to delete."
84
  msgstr "Click sul check box per cancellare"
85
 
86
  #: ../includes/form/other.php:24
@@ -88,15 +88,15 @@ msgid "Add role \"Webmaster\""
88
  msgstr "Aggiungi ruolo \"Webmaster\""
89
 
90
  #: ../includes/form/other.php:26
91
- msgid "\"Webmaster\" is role able to \"Editor\" + \"edit_theme_options\"."
92
  msgstr "\"Webmaster\" è ruolo analogo a \"Editor\" + \"edit_theme_options\" "
93
 
94
  #: ../includes/form/other.php:32
95
- msgid "Change the default eamil address"
96
  msgstr "Cambia valore email di default"
97
 
98
  #: ../includes/form/other.php:34
99
- msgid "Change the default eamil address and sender name."
100
  msgstr "Cambia valore email di default e nome del sender"
101
 
102
  #: ../includes/form/other.php:36
@@ -124,15 +124,15 @@ 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 & Pages"
128
  msgstr "Articoli e Pagine"
129
 
130
  #: ../includes/form/post.php:6
131
- msgid "Delete meta boxes for Posts"
132
  msgstr "Elimina meta box per Articoli"
133
 
134
  #: ../includes/form/post.php:25
135
- msgid "Delete meta boxes for Pages"
136
  msgstr "Elimina meta box per Pagine"
137
 
138
  #: ../includes/form/post.php:44
@@ -140,7 +140,7 @@ msgid "Revision Control"
140
  msgstr "Controllo revisioni"
141
 
142
  #: ../includes/form/post.php:46
143
- msgid "Please select limit the number of allowed revisions."
144
  msgstr "Seleziona numero di revisione ammesse"
145
 
146
  #: ../includes/form/post.php:48
@@ -152,11 +152,11 @@ msgid "Disable Auto Save"
152
  msgstr "Disabilita Salvataggio Automatico"
153
 
154
  #: ../includes/form/post.php:71
155
- msgid "Stop Self Pings"
156
- msgstr "Stop Self Pings"
157
 
158
  #: ../includes/form/post.php:73
159
- msgid "Stop sending pings from your own site to your own site when you write posts."
160
  msgstr "Stop sending pings verso altri siti quando pubblichi contenuti."
161
 
162
  #: ../includes/form/post.php:79
@@ -164,7 +164,7 @@ msgid "Add \"Excerpt\" support for Pages."
164
  msgstr "Aggiungi \"Riassunto\" alle pagine"
165
 
166
  #: ../includes/form/post.php:81
167
- msgid "Requires to add excerpt text in a Pages."
168
  msgstr "Necessario per aggiungere riassunto alle pagine"
169
 
170
  #: ../includes/form/sidebar.php:2
@@ -200,7 +200,7 @@ msgid "Please upload .ico image."
200
  msgstr "Caricare una immagine .ico"
201
 
202
  #: ../includes/form/site.php:14
203
- msgid "Enable auto 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
@@ -222,7 +222,7 @@ 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 "generator タグを head から削除します。<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"
74
  msgstr "Altro"
75
 
76
  #: ../includes/form/other.php:5
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"
85
 
86
  #: ../includes/form/other.php:24
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
95
+ 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
124
  msgstr "Rimuovi notifiche di aggiornamento per tutti utenti tranne Amministratore"
125
 
126
  #: ../includes/form/post.php:3
127
+ msgid "Posts &amp; Pages"
128
  msgstr "Articoli e Pagine"
129
 
130
  #: ../includes/form/post.php:6
131
+ msgid "Remove meta boxes for Posts"
132
  msgstr "Elimina meta box per Articoli"
133
 
134
  #: ../includes/form/post.php:25
135
+ msgid "Remove meta boxes for Pages"
136
  msgstr "Elimina meta box per Pagine"
137
 
138
  #: ../includes/form/post.php:44
140
  msgstr "Controllo revisioni"
141
 
142
  #: ../includes/form/post.php:46
143
+ msgid "Limit the number of revisions allowed."
144
  msgstr "Seleziona numero di revisione ammesse"
145
 
146
  #: ../includes/form/post.php:48
152
  msgstr "Disabilita Salvataggio Automatico"
153
 
154
  #: ../includes/form/post.php:71
155
+ 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
164
  msgstr "Aggiungi \"Riassunto\" alle pagine"
165
 
166
  #: ../includes/form/post.php:81
167
+ msgid "Allows you to add excerpt text to pages."
168
  msgstr "Necessario per aggiungere riassunto alle pagine"
169
 
170
  #: ../includes/form/sidebar.php:2
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
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"
langs/wp-total-hacks-ja.mo CHANGED
Binary file
langs/wp-total-hacks-ja.po CHANGED
@@ -27,7 +27,7 @@ msgstr "管理画面のヘッダーのロゴを変更"
27
 
28
  #: ../includes/form/appearance.php:8
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"
@@ -78,12 +78,12 @@ msgid "Other"
78
  msgstr "その他"
79
 
80
  #: ../includes/form/other.php:5
81
- msgid "Deactive Dashboard Widgets"
82
  msgstr "ダッシュボードウィジェットの無効化"
83
 
84
  #: ../includes/form/other.php:7 ../includes/form/post.php:8
85
  #: ../includes/form/post.php:27
86
- msgid "Click on the check box that you want to delete."
87
  msgstr "削除したい項目をクリックしてください。"
88
 
89
  #: ../includes/form/other.php:24
@@ -91,16 +91,16 @@ msgid "Add role \"Webmaster\""
91
  msgstr "\"Webmaster\" 権限を追加"
92
 
93
  #: ../includes/form/other.php:26
94
- msgid "\"Webmaster\" is role able to \"Editor\" + \"edit_theme_options\"."
95
  msgstr ""
96
  "\"Webmaster\" は、\"Editor\" 権限と \"edit_theme_options\" が可能です。"
97
 
98
  #: ../includes/form/other.php:32
99
- msgid "Change the default eamil address"
100
  msgstr "デフォルトのメールアドレスを変更"
101
 
102
  #: ../includes/form/other.php:34
103
- msgid "Change the default eamil address and sender name."
104
  msgstr "デフォルトのメールアドレスと送信者名を変更します。"
105
 
106
  #: ../includes/form/other.php:36
@@ -128,15 +128,15 @@ msgid "Remove Update Notification for all users except Admin User."
128
  msgstr "アップデート通知を管理者以外の全てのユーザーに対して停止します。"
129
 
130
  #: ../includes/form/post.php:3
131
- msgid "Posts & Pages"
132
  msgstr "投稿 & ページ"
133
 
134
  #: ../includes/form/post.php:6
135
- msgid "Delete meta boxes for Posts"
136
  msgstr "投稿のメタボックスを削除"
137
 
138
  #: ../includes/form/post.php:25
139
- msgid "Delete meta boxes for Pages"
140
  msgstr "ページのメタボックスを削除"
141
 
142
  #: ../includes/form/post.php:44
@@ -144,7 +144,7 @@ msgid "Revision Control"
144
  msgstr "リビジョンコントロール"
145
 
146
  #: ../includes/form/post.php:46
147
- msgid "Please select limit the number of allowed revisions."
148
  msgstr "保存するリビジョン数を選択してください。"
149
 
150
  #: ../includes/form/post.php:48
@@ -156,12 +156,12 @@ msgid "Disable Auto Save"
156
  msgstr "自動保存を無効"
157
 
158
  #: ../includes/form/post.php:71
159
- msgid "Stop Self Pings"
160
  msgstr "セルフピンバックを停止"
161
 
162
  #: ../includes/form/post.php:73
163
  msgid ""
164
- "Stop sending pings from your own site to your own site when you write posts."
165
  msgstr "あなたのサイトからあなたのサイトへのピンバックを停止する。"
166
 
167
  #: ../includes/form/post.php:79
@@ -169,7 +169,7 @@ msgid "Add \"Excerpt\" support for Pages."
169
  msgstr "ページに\"抜粋\"を追加"
170
 
171
  #: ../includes/form/post.php:81
172
- msgid "Requires to add excerpt text in a Pages."
173
  msgstr "ページに\"抜粋\"を追加できます。"
174
 
175
  #: ../includes/form/sidebar.php:2
@@ -205,7 +205,7 @@ msgid "Please upload .ico image."
205
  msgstr ".ico 画像をアップロードしてください。"
206
 
207
  #: ../includes/form/site.php:14
208
- msgid "Enable auto remove \"wlwmanifest\" and \"xmlrpc\" from meta."
209
  msgstr "\"wlwmanifest\" と \"xmlrpc\" の自動削除"
210
 
211
  #: ../includes/form/site.php:16
27
 
28
  #: ../includes/form/appearance.php:8
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"
78
  msgstr "その他"
79
 
80
  #: ../includes/form/other.php:5
81
+ msgid "Deactivate Dashboard Widgets"
82
  msgstr "ダッシュボードウィジェットの無効化"
83
 
84
  #: ../includes/form/other.php:7 ../includes/form/post.php:8
85
  #: ../includes/form/post.php:27
86
+ msgid "Choose the items you want to remove."
87
  msgstr "削除したい項目をクリックしてください。"
88
 
89
  #: ../includes/form/other.php:24
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
 
98
  #: ../includes/form/other.php:32
99
+ 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
128
  msgstr "アップデート通知を管理者以外の全てのユーザーに対して停止します。"
129
 
130
  #: ../includes/form/post.php:3
131
+ msgid "Posts &amp; Pages"
132
  msgstr "投稿 & ページ"
133
 
134
  #: ../includes/form/post.php:6
135
+ msgid "Remove meta boxes for Posts"
136
  msgstr "投稿のメタボックスを削除"
137
 
138
  #: ../includes/form/post.php:25
139
+ msgid "Remove meta boxes for Pages"
140
  msgstr "ページのメタボックスを削除"
141
 
142
  #: ../includes/form/post.php:44
144
  msgstr "リビジョンコントロール"
145
 
146
  #: ../includes/form/post.php:46
147
+ msgid "Limit the number of revisions allowed."
148
  msgstr "保存するリビジョン数を選択してください。"
149
 
150
  #: ../includes/form/post.php:48
156
  msgstr "自動保存を無効"
157
 
158
  #: ../includes/form/post.php:71
159
+ msgid "Stop self-pingbacks"
160
  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
169
  msgstr "ページに\"抜粋\"を追加"
170
 
171
  #: ../includes/form/post.php:81
172
+ msgid "Allows you to add excerpt text to pages."
173
  msgstr "ページに\"抜粋\"を追加できます。"
174
 
175
  #: ../includes/form/sidebar.php:2
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
langs/wp-total-hacks-ru_RU.mo CHANGED
Binary file
langs/wp-total-hacks-ru_RU.po CHANGED
@@ -74,13 +74,13 @@ msgid "Other"
74
  msgstr "Дополнительно"
75
 
76
  #: ../includes/form/other.php:5
77
- msgid "Deactive 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 "Click on the check box that you want to delete."
84
  msgstr "Отметьте какие блоки Вы хотели бы скрыть."
85
 
86
  #: ../includes/form/other.php:24
@@ -88,15 +88,15 @@ msgid "Add role \"Webmaster\""
88
  msgstr "Добавить роль \"Webmaster\""
89
 
90
  #: ../includes/form/other.php:26
91
- msgid "\"Webmaster\" is role able to \"Editor\" + \"edit_theme_options\"."
92
  msgstr "\"Webmaster\" - роль с возможностями \"Editor\" + \"edit_theme_options\"."
93
 
94
  #: ../includes/form/other.php:32
95
- msgid "Change the default eamil address"
96
  msgstr "Изменить e-mail по умолчанию"
97
 
98
  #: ../includes/form/other.php:34
99
- msgid "Change the default eamil address and sender name."
100
  msgstr "Изменение e-mail адреса и имени отправителя по умолчанию."
101
 
102
  #: ../includes/form/other.php:36
@@ -124,15 +124,15 @@ msgid "Remove Update Notification for all users except Admin User."
124
  msgstr "Убрать уведомления о обновлениях для всех пользователей за исключением Администратора."
125
 
126
  #: ../includes/form/post.php:3
127
- msgid "Posts & Pages"
128
  msgstr "Записи и страницы"
129
 
130
  #: ../includes/form/post.php:6
131
- msgid "Delete meta boxes for Posts"
132
  msgstr "Убрать отдельные блоки из формы Записи"
133
 
134
  #: ../includes/form/post.php:25
135
- msgid "Delete meta boxes for Pages"
136
  msgstr "Убрать отдельные блоки из формы Страница"
137
 
138
  #: ../includes/form/post.php:44
@@ -140,7 +140,7 @@ msgid "Revision Control"
140
  msgstr "Контроль ревизий"
141
 
142
  #: ../includes/form/post.php:46
143
- msgid "Please select limit the number of allowed revisions."
144
  msgstr "Укажите количество сохраняемых ревизий."
145
 
146
  #: ../includes/form/post.php:48
@@ -152,11 +152,11 @@ msgid "Disable Auto Save"
152
  msgstr "Отключить автосохранение"
153
 
154
  #: ../includes/form/post.php:71
155
- msgid "Stop Self Pings"
156
  msgstr "Остановить пинг внутри сайта"
157
 
158
  #: ../includes/form/post.php:73
159
- msgid "Stop sending pings from your own site to your own site when you write posts."
160
  msgstr "Остановить отсылку пингов внутри сайта (при написании записей, ссылающихся на уже существующие)."
161
 
162
  #: ../includes/form/post.php:79
@@ -164,7 +164,7 @@ msgid "Add \"Excerpt\" support for Pages."
164
  msgstr "Добавить поддержку \"Цитат\" для Страниц."
165
 
166
  #: ../includes/form/post.php:81
167
- msgid "Requires to add excerpt text in a Pages."
168
  msgstr "Установить поддержку цитирования текста для Страниц."
169
 
170
  #: ../includes/form/sidebar.php:2
@@ -200,7 +200,7 @@ msgid "Please upload .ico image."
200
  msgstr "Загрузите .ico файл."
201
 
202
  #: ../includes/form/site.php:14
203
- msgid "Enable auto remove \"wlwmanifest\" and \"xmlrpc\" from meta."
204
  msgstr "Установить автоматическое удаление \"wlwmanifest\" и \"xmlrpc\" из блока <head>."
205
 
206
  #: ../includes/form/site.php:16
74
  msgstr "Дополнительно"
75
 
76
  #: ../includes/form/other.php:5
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 "Отметьте какие блоки Вы хотели бы скрыть."
85
 
86
  #: ../includes/form/other.php:24
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
124
  msgstr "Убрать уведомления о обновлениях для всех пользователей за исключением Администратора."
125
 
126
  #: ../includes/form/post.php:3
127
+ msgid "Posts &amp; Pages"
128
  msgstr "Записи и страницы"
129
 
130
  #: ../includes/form/post.php:6
131
+ msgid "Remove meta boxes for Posts"
132
  msgstr "Убрать отдельные блоки из формы Записи"
133
 
134
  #: ../includes/form/post.php:25
135
+ msgid "Remove meta boxes for Pages"
136
  msgstr "Убрать отдельные блоки из формы Страница"
137
 
138
  #: ../includes/form/post.php:44
140
  msgstr "Контроль ревизий"
141
 
142
  #: ../includes/form/post.php:46
143
+ msgid "Limit the number of revisions allowed."
144
  msgstr "Укажите количество сохраняемых ревизий."
145
 
146
  #: ../includes/form/post.php:48
152
  msgstr "Отключить автосохранение"
153
 
154
  #: ../includes/form/post.php:71
155
+ 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
164
  msgstr "Добавить поддержку \"Цитат\" для Страниц."
165
 
166
  #: ../includes/form/post.php:81
167
+ msgid "Allows you to add excerpt text to pages."
168
  msgstr "Установить поддержку цитирования текста для Страниц."
169
 
170
  #: ../includes/form/sidebar.php:2
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
langs/wp-total-hacks-tr_TR.mo CHANGED
Binary file
langs/wp-total-hacks-tr_TR.po CHANGED
@@ -77,13 +77,13 @@ msgid "Other"
77
  msgstr "Diğer"
78
 
79
  #: ../includes/form/other.php:5
80
- msgid "Deactive 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 "Click on the check box that you want to delete."
87
  msgstr "Kaldırmak istediklerinizin yanındaki seçim kutucuğuna tıkalyın"
88
 
89
  #: ../includes/form/other.php:24
@@ -91,15 +91,15 @@ msgid "Add role \"Webmaster\""
91
  msgstr "\"Webmaster\" rolü ekle"
92
 
93
  #: ../includes/form/other.php:26
94
- msgid "\"Webmaster\" is role able to \"Editor\" + \"edit_theme_options\"."
95
  msgstr "\"Webmaster\" rolü \"Editor\" + \"edit_theme_options\"."
96
 
97
  #: ../includes/form/other.php:32
98
- msgid "Change the default eamil address"
99
  msgstr "Varsayılan e-posta adresini değiştir"
100
 
101
  #: ../includes/form/other.php:34
102
- msgid "Change the default eamil address and sender name."
103
  msgstr "Varsayılan e-posta adresi ve gönderen ismini değiştir."
104
 
105
  #: ../includes/form/other.php:36
@@ -127,15 +127,15 @@ msgid "Remove Update Notification for all users except Admin User."
127
  msgstr "Yönetici hariç tüm kullanıcılardan güncelleme bildirimlerini kaldır"
128
 
129
  #: ../includes/form/post.php:3
130
- msgid "Posts & Pages"
131
  msgstr "Yazı ve Sayfalar"
132
 
133
  #: ../includes/form/post.php:6
134
- msgid "Delete meta boxes for Posts"
135
  msgstr "Yazıların meta kutularını kaldır"
136
 
137
  #: ../includes/form/post.php:25
138
- msgid "Delete meta boxes for Pages"
139
  msgstr "Sayfaların meta kurularını kaldır"
140
 
141
  #: ../includes/form/post.php:44
@@ -143,7 +143,7 @@ msgid "Revision Control"
143
  msgstr "Revizyon kontrolü"
144
 
145
  #: ../includes/form/post.php:46
146
- msgid "Please select limit the number of allowed revisions."
147
  msgstr "İzin verilen revizyon sayısını belirleyin"
148
 
149
  #: ../includes/form/post.php:48
@@ -155,11 +155,11 @@ msgid "Disable Auto Save"
155
  msgstr "Otomatik kaydı kapat"
156
 
157
  #: ../includes/form/post.php:71
158
- msgid "Stop Self Pings"
159
  msgstr "Kendine ping atmasını durdur"
160
 
161
  #: ../includes/form/post.php:73
162
- msgid "Stop sending pings from your own site to your own site when you write posts."
163
  msgstr "Sitenizin kendi kendisine ping atmasını engeller (site içi linkler ile ilgili)"
164
 
165
  #: ../includes/form/post.php:79
@@ -167,7 +167,7 @@ msgid "Add \"Excerpt\" support for Pages."
167
  msgstr "Sayfalar için \"Devamını oku\" desteğini aktif et"
168
 
169
  #: ../includes/form/post.php:81
170
- msgid "Requires to add excerpt text in a Pages."
171
  msgstr "Devamını oku ibaresinin sayfalara eklenmesini gerektirir."
172
 
173
  #: ../includes/form/sidebar.php:2
@@ -203,7 +203,7 @@ msgid "Please upload .ico image."
203
  msgstr "Lütfen .ico dosyası yükleyin"
204
 
205
  #: ../includes/form/site.php:14
206
- msgid "Enable auto remove \"wlwmanifest\" and \"xmlrpc\" from meta."
207
  msgstr "\"wlwmanifest\" ve \"xmlrpc\" nin otomatik olarak silinmesini aktif et"
208
 
209
  #: ../includes/form/site.php:16
77
  msgstr "Diğer"
78
 
79
  #: ../includes/form/other.php:5
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"
88
 
89
  #: ../includes/form/other.php:24
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
98
+ 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
127
  msgstr "Yönetici hariç tüm kullanıcılardan güncelleme bildirimlerini kaldır"
128
 
129
  #: ../includes/form/post.php:3
130
+ msgid "Posts &amp; Pages"
131
  msgstr "Yazı ve Sayfalar"
132
 
133
  #: ../includes/form/post.php:6
134
+ msgid "Remove meta boxes for Posts"
135
  msgstr "Yazıların meta kutularını kaldır"
136
 
137
  #: ../includes/form/post.php:25
138
+ msgid "Remove meta boxes for Pages"
139
  msgstr "Sayfaların meta kurularını kaldır"
140
 
141
  #: ../includes/form/post.php:44
143
  msgstr "Revizyon kontrolü"
144
 
145
  #: ../includes/form/post.php:46
146
+ msgid "Limit the number of revisions allowed."
147
  msgstr "İzin verilen revizyon sayısını belirleyin"
148
 
149
  #: ../includes/form/post.php:48
155
  msgstr "Otomatik kaydı kapat"
156
 
157
  #: ../includes/form/post.php:71
158
+ 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
167
  msgstr "Sayfalar için \"Devamını oku\" desteğini aktif et"
168
 
169
  #: ../includes/form/post.php:81
170
+ msgid "Allows you to add excerpt text to pages."
171
  msgstr "Devamını oku ibaresinin sayfalara eklenmesini gerektirir."
172
 
173
  #: ../includes/form/sidebar.php:2
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
langs/wp-total-hacks.pot CHANGED
@@ -76,12 +76,12 @@ msgid "Other"
76
  msgstr ""
77
 
78
  #: ../includes/form/other.php:5
79
- msgid "Deactive Dashboard Widgets"
80
  msgstr ""
81
 
82
  #: ../includes/form/other.php:7 ../includes/form/post.php:8
83
  #: ../includes/form/post.php:27
84
- msgid "Click on the check box that you want to delete."
85
  msgstr ""
86
 
87
  #: ../includes/form/other.php:24
@@ -89,15 +89,15 @@ msgid "Add role \"Webmaster\""
89
  msgstr ""
90
 
91
  #: ../includes/form/other.php:26
92
- msgid "\"Webmaster\" is role able to \"Editor\" + \"edit_theme_options\"."
93
  msgstr ""
94
 
95
  #: ../includes/form/other.php:32
96
- msgid "Change the default eamil address"
97
  msgstr ""
98
 
99
  #: ../includes/form/other.php:34
100
- msgid "Change the default eamil address and sender name."
101
  msgstr ""
102
 
103
  #: ../includes/form/other.php:36
@@ -125,15 +125,15 @@ msgid "Remove Update Notification for all users except Admin User."
125
  msgstr ""
126
 
127
  #: ../includes/form/post.php:3
128
- msgid "Posts & Pages"
129
  msgstr ""
130
 
131
  #: ../includes/form/post.php:6
132
- msgid "Delete meta boxes for Posts"
133
  msgstr ""
134
 
135
  #: ../includes/form/post.php:25
136
- msgid "Delete meta boxes for Pages"
137
  msgstr ""
138
 
139
  #: ../includes/form/post.php:44
@@ -141,7 +141,7 @@ msgid "Revision Control"
141
  msgstr ""
142
 
143
  #: ../includes/form/post.php:46
144
- msgid "Please select limit the number of allowed revisions."
145
  msgstr ""
146
 
147
  #: ../includes/form/post.php:48
@@ -153,12 +153,12 @@ msgid "Disable Auto Save"
153
  msgstr ""
154
 
155
  #: ../includes/form/post.php:71
156
- msgid "Stop Self Pings"
157
  msgstr ""
158
 
159
  #: ../includes/form/post.php:73
160
  msgid ""
161
- "Stop sending pings from your own site to your own site when you write posts."
162
  msgstr ""
163
 
164
  #: ../includes/form/post.php:79
@@ -166,7 +166,7 @@ msgid "Add \"Excerpt\" support for Pages."
166
  msgstr ""
167
 
168
  #: ../includes/form/post.php:81
169
- msgid "Requires to add excerpt text in a Pages."
170
  msgstr ""
171
 
172
  #: ../includes/form/sidebar.php:2
@@ -202,7 +202,7 @@ msgid "Please upload .ico image."
202
  msgstr ""
203
 
204
  #: ../includes/form/site.php:14
205
- msgid "Enable auto remove \"wlwmanifest\" and \"xmlrpc\" from meta."
206
  msgstr ""
207
 
208
  #: ../includes/form/site.php:16
76
  msgstr ""
77
 
78
  #: ../includes/form/other.php:5
79
+ msgid "Deactivate Dashboard Widgets"
80
  msgstr ""
81
 
82
  #: ../includes/form/other.php:7 ../includes/form/post.php:8
83
  #: ../includes/form/post.php:27
84
+ msgid "Choose the items you want to remove."
85
  msgstr ""
86
 
87
  #: ../includes/form/other.php:24
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
96
+ 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
125
  msgstr ""
126
 
127
  #: ../includes/form/post.php:3
128
+ msgid "Posts &amp; Pages"
129
  msgstr ""
130
 
131
  #: ../includes/form/post.php:6
132
+ msgid "Remove meta boxes for Posts"
133
  msgstr ""
134
 
135
  #: ../includes/form/post.php:25
136
+ msgid "Remove meta boxes for Pages"
137
  msgstr ""
138
 
139
  #: ../includes/form/post.php:44
141
  msgstr ""
142
 
143
  #: ../includes/form/post.php:46
144
+ msgid "Limit the number of revisions allowed."
145
  msgstr ""
146
 
147
  #: ../includes/form/post.php:48
153
  msgstr ""
154
 
155
  #: ../includes/form/post.php:71
156
+ msgid "Stop self-pingbacks"
157
  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
166
  msgstr ""
167
 
168
  #: ../includes/form/post.php:81
169
+ msgid "Allows you to add excerpt text to pages."
170
  msgstr ""
171
 
172
  #: ../includes/form/sidebar.php:2
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
readme.txt CHANGED
@@ -4,7 +4,7 @@ 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.1
7
- Stable tag: 0.2.1
8
 
9
  WP Total Hacks can customize more than 20 settings on your WordPress Site.
10
 
@@ -24,8 +24,8 @@ All items you can select to Active or Deactive.
24
  * Change admin header logo.
25
  * Change admin footer text.
26
  * Change login logo.
27
- * Remove selected meta boxes for Posts & Pages.
28
- * Remove selected dashboard widgets.
29
  * Remove unnecessary meta tags.
30
  * Change default email address.
31
  * Remove Update Notification for all users except Admin User.
@@ -41,6 +41,7 @@ All items you can select to Active or Deactive.
41
  * Italian(it_IT) - [Andrea Bersi](http://www.andreabersi.com/)
42
  * Russian(ru_RU) - [LiVsI](http://lezhnevs.ru/)
43
  * Turkish(tr_TR) - [Serkan Algur](http://www.kaisercrazy.com/)
 
44
 
45
  You can send your own language pack to me.
46
 
@@ -52,6 +53,7 @@ Please contact to me.
52
  = Contributors =
53
 
54
  * [Takayuki Miyauchi](http://firegoby.theta.ne.jp/)
 
55
 
56
 
57
  == Installation ==
@@ -71,6 +73,9 @@ Please contact to me.
71
 
72
  == Changelog ==
73
 
 
 
 
74
  = 0.2.1 =
75
  * fixed typo
76
  * Turkish & Russian Support
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.1
7
+ Stable tag: 0.2.2
8
 
9
  WP Total Hacks can customize more than 20 settings on your WordPress Site.
10
 
24
  * Change admin header logo.
25
  * Change admin footer text.
26
  * Change login logo.
27
+ * Deactivae selected meta boxes for Posts & Pages.
28
+ * Deactivate selected dashboard widgets.
29
  * Remove unnecessary meta tags.
30
  * Change default email address.
31
  * Remove Update Notification for all users except Admin User.
41
  * Italian(it_IT) - [Andrea Bersi](http://www.andreabersi.com/)
42
  * Russian(ru_RU) - [LiVsI](http://lezhnevs.ru/)
43
  * Turkish(tr_TR) - [Serkan Algur](http://www.kaisercrazy.com/)
44
+ * German(de_DE) - [Felix Kern](http://twitter.com/#!/kernfel)
45
 
46
  You can send your own language pack to me.
47
 
53
  = Contributors =
54
 
55
  * [Takayuki Miyauchi](http://firegoby.theta.ne.jp/)
56
+ * [Felix Kern](http://twitter.com/#!/kernfel)
57
 
58
 
59
  == Installation ==
73
 
74
  == Changelog ==
75
 
76
+ = 0.2.2 =
77
+ * German support
78
+
79
  = 0.2.1 =
80
  * fixed typo
81
  * Turkish & Russian Support
wp-total-hacks.php CHANGED
@@ -5,7 +5,7 @@ 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.2.1
9
  Author URI: http://firegoby.theta.ne.jp/
10
  */
11
 
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.2.2
9
  Author URI: http://firegoby.theta.ne.jp/
10
  */
11