Meta Tag Manager - Version 1.1

Version Description

  • Added danish translation
  • Fixed added slashes for apostrophe values
Download this release

Release Info

Developer netweblogic
Plugin Icon 128x128 Meta Tag Manager
Version 1.1
Comparing to
See all releases

Code changes from version 1.0 to 1.1

meta-tag-manager-admin.php CHANGED
@@ -50,7 +50,7 @@ class MetaTagManagerAdmin {
50
  $content = trim ( $_POST ["mtm_{$i}_content"] );
51
  $ref = trim ( $_POST ["mtm_{$i}_ref"] );
52
 
53
- if (get_magic_quotes_gpc ()) {
54
  $name = stripslashes ( $name );
55
  $content = stripslashes ( $content );
56
  $ref = stripslashes ( $ref );
50
  $content = trim ( $_POST ["mtm_{$i}_content"] );
51
  $ref = trim ( $_POST ["mtm_{$i}_ref"] );
52
 
53
+ if ( !get_magic_quotes_gpc() ) {
54
  $name = stripslashes ( $name );
55
  $content = stripslashes ( $content );
56
  $ref = stripslashes ( $ref );
meta-tag-manager-da_DK.mo ADDED
Binary file
meta-tag-manager-da_DK.po ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: 1.0\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/meta-tag-manager\n"
5
+ "POT-Creation-Date: 2009-09-21 15:06+0000\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Wall <wall@clan-zone.dk>\n"
8
+ "Language-Team: Wall <wall@clan-zone.dk>\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-Language: Danish\n"
13
+ "X-Poedit-Country: DENMARK\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "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;_nx:4c,1,2;_nx_noop:4c,1,2\n"
16
+ "X-Poedit-Basepath: .\n"
17
+ "X-Textdomain-Support: yes\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+
20
+ #@ meta-tag-manager
21
+ #: meta-tag-manager-admin.php:32
22
+ #: meta-tag-manager-admin.php:73
23
+ msgid "Meta Tag Manager"
24
+ msgstr "Meta-Tag Manager"
25
+
26
+ #@ meta-tag-manager
27
+ #: meta-tag-manager-admin.php:94
28
+ msgid "Enter a reference name (something to help you remember the meta tag) and then enter the values that you want the meta tag to hold."
29
+ msgstr "Indtast et reference navn (noget for at hjælpe dig med at huske meta-tag) og derefter indtaste de værdier, du ønsker, at meta-tag til at holde."
30
+
31
+ #@ meta-tag-manager
32
+ #: meta-tag-manager-admin.php:100
33
+ msgid "Reference Name"
34
+ msgstr "Reference Navn"
35
+
36
+ #@ meta-tag-manager
37
+ #: meta-tag-manager-admin.php:101
38
+ msgid "Meta Tag"
39
+ msgstr "Meta tag"
40
+
41
+ #@ meta-tag-manager
42
+ #: meta-tag-manager-admin.php:102
43
+ msgid "Homepage only"
44
+ msgstr "Hjemmeside kun"
45
+
46
+ #@ meta-tag-manager
47
+ #: meta-tag-manager-admin.php:111
48
+ #: meta-tag-manager-admin.php:120
49
+ msgid "Remove"
50
+ msgstr "Fjern"
51
+
52
+ #@ meta-tag-manager
53
+ #: meta-tag-manager-admin.php:128
54
+ msgid "Add new tag"
55
+ msgstr "Tilføj ny tag"
56
+
57
+ #: meta-tag-manager-admin.php:67
58
+ msgid "Settings saved."
59
+ msgstr ""
60
+
61
+ #: meta-tag-manager-admin.php:134
62
+ msgid "Save Changes"
63
+ msgstr ""
64
+
meta-tag-manager.php CHANGED
@@ -1,29 +1,29 @@
1
  <?php
2
- /*
3
- Plugin Name: Meta Tag Manager
4
- Plugin URI: http://netweblogic.com/wordpress/plugins/meta-tag-manager/
5
- Description: A simple plugin to manage meta tags that appear on all your pages. This can be used for verifiying google, yahoo, and more. &mdash; <a href="options-general.php?page=mtmverification">Settings page</a> &mdash; edited by <a href="http://ten-fingers-and-a-brain.com/">Martin Lormes</a>
6
- Author: NetWebLogic LLC
7
- Version: 1.0
8
- Author URI: http://netweblogic.com/
9
- Text Domain: meta-tag-manager
10
  */
11
- /*
12
- Copyright (C) 2009 NetWebLogic LLC
13
- Copyright (C) 2009 Martin Lormes
14
-
15
- This program is free software; you can redistribute it and/or modify
16
- it under the terms of the GNU General Public License as published by
17
- the Free Software Foundation; either version 3 of the License, or
18
- (at your option) any later version.
19
-
20
- This program is distributed in the hope that it will be useful,
21
- but WITHOUT ANY WARRANTY; without even the implied warranty of
22
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
- GNU General Public License for more details.
24
-
25
- You should have received a copy of the GNU General Public License
26
- along with this program. If not, see <http://www.gnu.org/licenses/>.
27
  */
28
 
29
  class MetaTagManager {
@@ -60,4 +60,4 @@ if ( is_admin() ) {
60
  }
61
 
62
  // Start this plugin once all other plugins are fully loaded
63
- add_action( 'init', array('MetaTagManager', 'init') );
1
  <?php
2
+ /*
3
+ Plugin Name: Meta Tag Manager
4
+ Plugin URI: http://netweblogic.com/wordpress/plugins/meta-tag-manager/
5
+ Description: A simple plugin to manage meta tags that appear on all your pages. This can be used for verifiying google, yahoo, and more. &mdash; <a href="options-general.php?page=mtmverification">Settings page</a> &mdash; edited by <a href="http://ten-fingers-and-a-brain.com/">Martin Lormes</a>
6
+ Author: NetWebLogic LLC
7
+ Version: 1.1
8
+ Author URI: http://netweblogic.com/
9
+ Text Domain: meta-tag-manager
10
  */
11
+ /*
12
+ Copyright (C) 2010 NetWebLogic LLC
13
+ Copyright (C) 2009 Martin Lormes
14
+
15
+ This program is free software; you can redistribute it and/or modify
16
+ it under the terms of the GNU General Public License as published by
17
+ the Free Software Foundation; either version 3 of the License, or
18
+ (at your option) any later version.
19
+
20
+ This program is distributed in the hope that it will be useful,
21
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
22
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
+ GNU General Public License for more details.
24
+
25
+ You should have received a copy of the GNU General Public License
26
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
27
  */
28
 
29
  class MetaTagManager {
60
  }
61
 
62
  // Start this plugin once all other plugins are fully loaded
63
+ add_action( 'init', array('MetaTagManager', 'init') );
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: netweblogic
3
  Tags: Google, SEO, Yahoo, Webmaster Tools, Meta, Meta Tags
4
  Requires at least: 2.5
5
- Tested up to: 2.8.5
6
- Stable tag: 1.0
7
 
8
  This plugin will allow you to easily add and manage special meta tags to your whole site, such as Yahoo and Google verification tags.
9
 
@@ -19,6 +19,15 @@ If you have any problems with the plugins, please visit our [http://netweblogic.
19
 
20
  If you find this plugin useful and would like to say thanks, a link, digg, or some other form of recognition to the plugin page on our blog would be appreciated.
21
 
 
 
 
 
 
 
 
 
 
22
  == Installation ==
23
 
24
  1. Download and unzip the plugin, then upload the entire `meta-tag-manager` directory to the `/wp-content/plugins` directory; or simply upload the zip file if you use WordPress 2.7 or newer
@@ -50,3 +59,7 @@ Please see our [http://netweblogic.com/forums/](support forums).
50
  * meta tags can be flagged to appear on the homepage only
51
  * fixed bug which threw a Notice error when no meta tags were defined
52
  * fixed the bug where the rss feeds kept breaking
 
 
 
 
2
  Contributors: netweblogic
3
  Tags: Google, SEO, Yahoo, Webmaster Tools, Meta, Meta Tags
4
  Requires at least: 2.5
5
+ Tested up to: 3.0.3
6
+ Stable tag: 1.1
7
 
8
  This plugin will allow you to easily add and manage special meta tags to your whole site, such as Yahoo and Google verification tags.
9
 
19
 
20
  If you find this plugin useful and would like to say thanks, a link, digg, or some other form of recognition to the plugin page on our blog would be appreciated.
21
 
22
+ Special thanks to Martin Lormes for help with some crucial updates.
23
+
24
+ = Translated Languages Available =
25
+
26
+ Here's a list of currently translated languages. Translations that have been submitted are greatly appreciated and hopefully make this plugin a better one. If you'd like to contribute, please have a look at the POT file in the langs folder and send us your translations.
27
+
28
+ * Danish - Christian B.
29
+ * German - Martin Lormes
30
+
31
  == Installation ==
32
 
33
  1. Download and unzip the plugin, then upload the entire `meta-tag-manager` directory to the `/wp-content/plugins` directory; or simply upload the zip file if you use WordPress 2.7 or newer
59
  * meta tags can be flagged to appear on the homepage only
60
  * fixed bug which threw a Notice error when no meta tags were defined
61
  * fixed the bug where the rss feeds kept breaking
62
+
63
+ = 1.1 =
64
+ * Added danish translation
65
+ * Fixed added slashes for apostrophe values