Closed (duplicate)
Project:
Internationalization
Version:
6.x-1.1
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
11 Sep 2009 at 03:13 UTC
Updated:
30 Sep 2009 at 14:47 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
hass commentedNode titles are translated via content translation and in no other place.
Comment #2
haggins commentedSo the string should be found at admin/build/translate/search ? I cannot find my string there. See that I don't want to translate the original node title I set when creating the node. I mean the string which overrides the nodes title you can set in your views configuration.
Comment #3
hass commentedNo, nodes are translated with the CORE content translation module. This have all nothing to do with i18n module.
Comment #4
haggins commentedI don't want to translate a node. It's about the overwriting string in views. (see screenshot)
You can find it neither on "admin/build/translate/export" nor on "admin/build/translate/search". I think there is actual no way to translate this string. Maybe this should be a feature request.
Thanks for your help!
Comment #5
hass commentedThan this may be done via i18nviews module.
Comment #6
Anonymous (not verified) commentedThis module works as advertised, though I think I have found a strange bug.
Like many others, I need menu-block titles translatable, and my solution was to just code the menu into a custom block myself in order to be able to translate everything including title. I found out however, that refreshing block strings results in the strings getting erased. You have to go reconfigure the block and save it in order to recreate the strings, but that also means you have to retranslate it.
Hopefully this isn't just me?
Comment #7
hass commentedThis seems not the issue discussed here. The block is a different case. Please take a look in the queue.
Comment #8
haggins commentedhass, I thought so, too. I have installed and enabled "Views translation 6.x-1.1" but can't find any specific views translation section. There seems also to be a lack of documentation at this point. Can you give me an advice where to look for it?
Comment #9
sandorczettner commentedI think this is the same issue: http://drupal.org/node/555546.
I wrote an unclear workaround in my views-view-field--viewname--nid.tpl.php:
print str_replace("Register now", t("Register now"), $output);But I would like to see a nice solution.