This topic has 22 replies, 3 voices, and was last updated 9 years, 10 months ago by Anonymous.
Viewing 23 posts - 1 through 23 (of 23 total)
Those are posttypes. You can’t translate these postypes.
No, you can’t change them in database. If you want to change, you can change it in custom-search.php file line no 125
$albums_title = get_option('atp_album_slug') ? get_option('atp_album_slug'):__('Albums','musicplay');
$djmix_title = get_option('atp_djmix_slug') ? get_option('atp_djmix_slug'):__('Djmix','musicplay');
$artists_title = get_option('atp_artists_slug') ? get_option('atp_artists_slug'):__('Artists','musicplay');
Directly you have to enter your text in the below code like,
$albums_title = get_option('atp_album_slug') ? get_option('atp_album_slug'):__('Your Album Text','musicplay');
$djmix_title = get_option('atp_djmix_slug') ? get_option('atp_djmix_slug'):__('Your Djmix Text','musicplay');
$artists_title = get_option('atp_artists_slug') ? get_option('atp_artists_slug'):__('Your Artists Text','musicplay');
in custom-search.php file on line no 125
Open atp_generator.php file and find for subheader function. Next find for this line of code $title = sprintf( __( 'Albums Label for: %s', 'musicplay' ), '<span>' . $ctitle . '</span>' ); and change your text in place of “Albums Label for”. Otherwise you can use wpml plugin(A string translation plugin) which is available in wordpress repository.
They are categories. Categories can’t be translated.
Topic is set to be resolved. If you wish to update this topic please reply here instead of creating another topic.
All the translations are string translations which you can translate using the WPML Plugin as it is not recommended to translation the core files. As if we update the theme and release a new version again you will have to translate all the strings. So its better to use WPML for translating the strings. You can get http://www.wpml.org for the plugin
There are so many files to translate the strings. If you know the coding then it will be easy for you to edit the code and translate.
Glad to hear that!
Topic is set to be resolved. If you wish to update this topic please reply here instead of creating another topic.
Hi!
Sorry again, I have a few words that I was not able to translate with the translation tool, but still display in English, like “Search Results”.
I did not find the word “of” from the pagination at the bottom of a page, and “ago” from your Recent posts extended widget, and Likes in the single album page, in the theme translation files.
We have added localization code for “of,likes,search results”. Now you can translate those words using any of your translation plugin. Regarding the word “ago”, the word is coming from some other widget “Recent Posts Extended” which is not related to our theme. Kindly ask with that widget author about the issue.
Viewing 23 posts - 1 through 23 (of 23 total)
You must be logged in to reply to this topic.