codestyling
Forum Replies Created
-
Forum: Plugins
In reply to: [Codestyling Localization] Textdomain conflictHow gets the plugin loaded cause I don’t know a core way to provide plugins from other dirs than wp-content/plugins or wp-content/mu-plugins ?
Did your call require within the functions.php the plugins main file by your own?
If a theme has pre-conditions, than it should either perform an API base sub-install and activation of the required plugins or switch back to the default theme, if some dependencies are not available.This theme is not written to be translatable! I recycles some texts from WordPress main translation file if the texts are contained there. But it doesn’t load any own translation file (no support coded by theme author) and it uses many hard coded strings within the theme files (admin as also frontend php files).
Please contact the Theme Author and ask for a translatable version of this theme.Forum: Plugins
In reply to: [WP Native Dashboard] Login Widget support?Utilization of selectbox by template tag whereever needed + optional setting to enable template tag output will be available within version 1.3.9 and the help screen of plugin explains usage.
Has been made optional, enabled by default. You can disable the locale abbreviations now if you like. This will be available with version 1.3.9 now.
Forum: Plugins
In reply to: [WP Native Dashboard] Login Widget support?Looks like a feature request, will see, what can be done in upcomming version 1.3.9 and will add a desciption within the help of the plugins page.
Forum: Plugins
In reply to: [WP Native Dashboard] [Plugin: WP Native Dashboard] default optionsI can’t understand the issue, please describe it more in detail.
Cause the page should be Chinese in first place, I would install WordPress as Chinese version (WP_LANG set to appropriated chinese locale) and afterwards using WP Native Dashboard as selector for english backends by need.
Look like a feature request, will see if it could make it into upcomming 1.3.9 version.
Forum: Plugins
In reply to: [WP Native Dashboard] Force SSL error with WP Native DashboardHas been identified and will be solved with version 1.3.9 coming soon.
Forum: Plugins
In reply to: [Codestyling Localization] UI in EnglishThere are 2 ways to get this working:
a) you simply delete CodeStyling Localization translation in your native language.
b) you can use my other plugin (as linked at the plugins help screen) name “WP Native Dashboard” to choose your Backend Language as usual.The new one plugin (2.0) only exists at my local development system.
If all went the right way, it will be released at 01.01.2013 but will also have proconditions:
– will not run with WordPress less than 3.4
– will not run with PHP less than 5.1
There is no longer backward compatibility, so the 1.x Versions will get frozen at this time an only get patches for a short time period.The rewritten version 2.0 of CodeStyling Localization will contain 2 essential new things:
- Backup/Restore of Translation Files
- Maintainance of Translation files by re-routed folder to provide an overwrite safe way
The 2nd point will also permit synchronizations as you want it and is also included within the full backup system.
Forum: Plugins
In reply to: [Codestyling Localization] UI in EnglishCould you please more specify, what “UI is in local language” should state? Only the plugin, the entire admin area, the frontend or anthing else ?
Forum: Plugins
In reply to: [Codestyling Localization] plugin not detectedThis is correct, that my plugin doesn’t detect it!
There are several bugs within “user-submitted-posts” plugin:- it never loads a translation file
- even if seems to use translation functions, it has no own domain and all texts will be searched within WordPress main translation file
So the author of this plugin has to fix the localizations to be possible!
Forum: Plugins
In reply to: [Codestyling Localization] IDN problem, conflic withChange line 38 of idna plugin from
require_once dirname(dirname(__FILE__)) . '/idna/idna_convert.class.php';to this:
if (!class_exists('idna_convert')) require_once dirname(dirname(__FILE__)) . '/idna/idna_convert.class.php';and all works as expected.