yoolee
Forum Replies Created
-
ok, found a solution to my own problem, maybe others have the same thing; for some reasons the update reset the email sending options, and only the default sender, subject and message stayed.
You have to manually put all custom fields back into the email tab of the form for it to be sent.Forum: Themes and Templates
In reply to: [Photologger] Translate – textdomain issue photologger themeHere is another warning I get when trying to translate a plugin Error: The actual loaded translation content does not match the textdomain: recaptcha
Expect, that any text you translate will not occure as long as the textdomain is mismatching!
This is a coding issue at the source files you try to translate, please contact the original Author and explain this mismatch.Warning: The actual loaded translation content contains mixed textdomains and is not pure translateable within one textdomain.
It seems, that there is code contained extracted out of other plugins, themes or widgets and used by copy & paste inside some source files.
The affected unknown textdomains are:Sorry, this sounded really rude and I didn’t mean it to be. I really liked your plugin, especially that I used it for my tutorials where all the instructions where included in the description field.
Thanks, I would not be able to do any code hacking so I guess I just need to look for another gallery plugin that does what I want.
Thanks again!This is really annoying that you on one hand are more than helpful but forumpress is not answering any of my questions no matter where I post them. More kudos to you for it!
This is clearly a CodeStyling vs. ForumPress problem because I don’t have these issues with other translated plugins.The actual translation was never visible on my site. I have already turned off plugins that could mess with the translation (qTranslate) but still there is nothing showing of what I have translated.
This is what disappeared since yesterday: https://www.dropbox.com/s/d0objm17xy1wp1s/2012-05-22-Localization.png as you can see, there is nothing there although I have the files that were generated because I saved them to my pc. Could this be a problem, do I have to upload them here somehow?
I have the vasthtml_hu_Hu.mo and .po files in the appropriate folder on the server, don’t know what elso I could do.
Ok, now I have yet another interesting issue. I translated all expressions of WP Forum Server plugin yesterday and luckily saved both .mo and .po files to my pc and today I don’t see the Hungarian language in the Localization plugin next to the WP Forum Server in Dashboard/Tools! It has disappeared completely!
I tried uploading the .mo and .po files to the language folder on the server with the _ instead of the – in the file names but there is still no translation on my site.
Please let me know what to do, this is the third time I have translated the whole plugin ??
Thanks again
So is this a problem for everyone using these two plugins? I found this information on ForumPress’ website:
https://forumpress.org/localizationThey don’t seem to be aware of the -/_ problem.
Thanks, I already posted onto your website about this, just let me know where you answer and I don’t do duplicate posts about it. THanks again!
I am using WP Forum Server 1.7.4. I added my language (Hungarian) translated the expressions, clicked on generate .mo file and then went to check if the Hungarian texts appear – but they do not. Then did some backcheck, translated some other plugin – WP Favicon – to see if that is working and there are no problems there, Hungarian texts are showing.
I get this warning with WP Forum Server:
Author is using load_textdomain instead of load_plugin_textdomain function. This may break behavior of WordPress, because some filters and actions won’t be executed anymore. Please contact the Author about that.Checked the /web/wp-content/plugins/forum-server/languages folder and there are no Hungarian files there. Also checked the options panel of WP Forum Server and only the 3 default languages are shown.
Forum: Plugins
In reply to: Plugin: CodeStyling Localization – translation not showing at allMeanwhile upgraded to WP 3.3.2 and also updated the WP Forum Server to its current version, still no luck.
Forum: Plugins
In reply to: Plugin: CodeStyling Localization – translation not showing at allJust tried to translate another plugin, it work perfectly. Seems there is some problem with the WP Forum Server which I don’t see.
Forum: Plugins
In reply to: CodeStyling Localization for WP Forum ServerSame issue for me, tried translation another plugin and works perfectly, but with WP Forum Server the translation is not showing at all. In the options, just as nyski has mentioned only the 3 default languages are shown and my translation is nowhere to be seen.
Forum: Fixing WordPress
In reply to: Social Network site with or without Buddypress?sorry, 1.5.5.
Forum: Fixing WordPress
In reply to: Social Network site with or without Buddypress?bp veriosn 1.2.1
Forum: Fixing WordPress
In reply to: Separate Media Libraries for Multi User SiteI like wp forum, I always seem to find a solution to my question:) I will now try putting this in the theme’s function.php file
//Remove Media Library Tab
function remove_medialibrary_tab($tabs) {
if ( !current_user_can( ‘administrator’ ) ) {
unset($tabs[‘library’]);
return $tabs;
}
else
{
return $tabs;
}
}
add_filter(‘media_upload_tabs’,’remove_medialibrary_tab’);