Skip to content
Snippets Groups Projects
Commit 915c3f83 authored by Erick Hitter's avatar Erick Hitter
Browse files

Fix i18n

parent 337a763e
No related branches found
No related tags found
1 merge request!11Fix i18n
Pipeline #4891 passed with stages
in 2 minutes and 27 seconds
This commit is part of merge request !11. Comments created here will be created in the context of that merge request.
......@@ -4,7 +4,7 @@
**Tags:** tag, tags, taxonomy, sidebar, widget, widgets, dropdown, drop down
**Requires at least:** 2.8
**Tested up to:** 6.0
**Stable tag:** 2.3.1
**Stable tag:** 2.3.2
**License:** GPLv2 or later
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
......@@ -80,6 +80,9 @@ To make targeting a specific filter reference possible should you use multiple i
## Changelog ##
### 2.3.2 ###
* Ready plugin for translation.
### 2.3.1 ###
* PHP 7.3 compatibility
......@@ -110,7 +113,6 @@ To make targeting a specific filter reference possible should you use multiple i
### 2.0.0.2 ###
* Fix bug in post count threshold that resulted in no terms being listed.
### 2.0.0.1 ###
* Fix bug that appended cutoff indicators when unnecessary.
......@@ -164,6 +166,9 @@ To make targeting a specific filter reference possible should you use multiple i
## Upgrade Notice ##
### 2.3.2 ###
Readies plugin for translation.
### 2.3.1 ###
Now compatible with PHP 7.3.
......
......@@ -2,7 +2,7 @@
# This file is distributed under the same license as the Taxonomy Dropdown Widget package.
msgid ""
msgstr ""
"Project-Id-Version: Taxonomy Dropdown Widget 2.3.1\n"
"Project-Id-Version: Taxonomy Dropdown Widget 2.3.2\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/tag-dropdown-widget\n"
"POT-Creation-Date: 2022-06-25 18:24:14+00:00\n"
......@@ -164,4 +164,4 @@ msgstr ""
#. Author URI of the plugin/theme
msgid "https://ethitter.com/"
msgstr ""
msgstr ""
\ No newline at end of file
......@@ -4,7 +4,7 @@ Donate link: https://ethitter.com/donate/
Tags: tag, tags, taxonomy, sidebar, widget, widgets, dropdown, drop down
Requires at least: 2.8
Tested up to: 6.0
Stable tag: 2.3.1
Stable tag: 2.3.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
......@@ -80,6 +80,9 @@ To make targeting a specific filter reference possible should you use multiple i
== Changelog ==
= 2.3.2 =
* Ready plugin for translation.
= 2.3.1 =
* PHP 7.3 compatibility
......@@ -110,7 +113,6 @@ To make targeting a specific filter reference possible should you use multiple i
= 2.0.0.2 =
* Fix bug in post count threshold that resulted in no terms being listed.
= 2.0.0.1 =
* Fix bug that appended cutoff indicators when unnecessary.
......@@ -164,6 +166,9 @@ To make targeting a specific filter reference possible should you use multiple i
== Upgrade Notice ==
= 2.3.2 =
Readies plugin for translation.
= 2.3.1 =
Now compatible with PHP 7.3.
......
<?php
// phpcs:ignoreFile -- legacy code in need of refactoring.
/*
Plugin Name: Taxonomy Dropdown Widget
Plugin URI: https://ethitter.com/plugins/taxonomy-dropdown-widget/
Description: Creates a dropdown list of non-hierarchical taxonomies as an alternative to the term (tag) cloud. Widget provides numerous options to tailor the output to fit your site. Dropdown function can also be called directly for use outside of the widget. Formerly known as <strong><em>Tag Dropdown Widget</em></strong>.
Author: Erick Hitter
Version: 2.3.1
Author URI: https://ethitter.com/
Text Domain: tag-dropdown-widget
Domain Path: /languages/
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* Plugin Name: Taxonomy Dropdown Widget
* Plugin URI: https://ethitter.com/plugins/taxonomy-dropdown-widget/
* Description: Creates a dropdown list of non-hierarchical taxonomies as an alternative to the term (tag) cloud. Widget provides numerous options to tailor the output to fit your site. Dropdown function can also be called directly for use outside of the widget. Formerly known as <strong><em>Tag Dropdown Widget</em></strong>.
* Author: Erick Hitter
* Version: 2.3.2
* Author URI: https://ethitter.com/
* Text Domain: tag-dropdown-widget
* Domain Path: /languages/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
** TAXONOMY DROPDOWN WIDGET PLUGIN
......@@ -111,7 +111,7 @@ class taxonomy_dropdown_widget_plugin {
load_plugin_textdomain(
'tag-dropdown-widget',
false,
dirname( __FILE__ ) . '/languages/'
dirname( plugin_basename( __FILE__ ) ) . '/languages/'
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment