Plugins should use translations
Bug #321748 reported by
Alex Launi
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Do |
Fix Released
|
Medium
|
Chris Halse Rogers | ||
Do Plugins |
Fix Released
|
Medium
|
Chris Halse Rogers |
Bug Description
Plugins should actually use translations.
Related branches
Changed in do-plugins: | |
importance: | Undecided → Medium |
status: | New → Confirmed |
Changed in do: | |
importance: | Undecided → Medium |
milestone: | none → 0.8.1 |
status: | New → Confirmed |
Changed in do: | |
milestone: | 0.8.1 → 0.8.2 |
Changed in do-plugins: | |
assignee: | nobody → Chris Halse Rogers (raof) |
Changed in do: | |
assignee: | nobody → Chris Halse Rogers (raof) |
tags: | added: i18n |
Changed in do-plugins: | |
status: | In Progress → Fix Committed |
Changed in do: | |
status: | Fix Committed → Fix Released |
Changed in do-plugins: | |
status: | Fix Committed → Fix Released |
To post a comment you must log in.
Have a look here:/translations.launchpad.net/do-plugins
https:/
I'm not sure however, how the translation is made available once it is done. As part of Ubuntu's language pack? Is this made available for people not using Ubuntu?
There is also the issue that the strings describing the plugins in the Preferences interface are not available for translation in that interface.
I think they're not translatable. Probably a call (to something like Catalog.GetString ?) should be made around line 203 in Do.UI/PluginNodeView.cs :
string Description (string name, string desc, string version)
{
return string.Format (DescriptionFormat, name, desc, version);
}
However, I'm not a Mono/C# programmer, nor do I know much about Do's source, so that might be wrong and/or I might be missing something. Would be cool if somebody could look into those questions? Probably doesn't take long.