Since MB is fully localizable people can post their translated files here to share with the community.
To all plug-in and theme developers can you make all plug-ins and themes localizable too. so the community can start to translate.
Hi I have been searching for a Danish translation… Did I mis a download link somewhere?
EDITED
Foreign MB users have got a place to upload Localization files :–) I will upload Danish MB default Theme translation to http://www.mbmods.com/downloads/Media-Browser/Localization/
Could anyone pass me the translation into Portuguese of Brazil say how do I apply the translation? Type one is doing something in the settings of the Media Browser. I use the Media Browser 2.2.5
after translating it.. how do I change the software into my language? Do I have to replace the english file or there is another way?
Hi guys,
Here is portuguese (brazilian) localized file. Pls, after trying it, if you find some mistype or if you have some suggesttion to improve localization, just post a comment here and I will be glad to improve it.
http://rapidshare.com/files/396091780/MB_Localization_pt-br.rar.html
Hi,
Until something’s done for translation stuff, you can find french translation for MB Cronos, Vanilla 2.0, Maelstrom, etc…
Traduction française de MediaBrowser 2.2.4 Cronos
Note : there are a lot to modify and check as french language is quite longer than english is, to tell the same story. So I'll have a look at it deeper and update it this WE.
Now that I've done that, I just realized that it'd be even better to have some online board where we could update sentences by sentences for each language. This would help remaining up to date for each release and avoid looking for every fan file proposal.
Edit : 06/03/2010 Update of the translation correcting mistakes, shortening sentences… slight tests remaining to be done though
Hi,
Is there some repository with all translations ?
Point is to know wether some are already done (in my case, french) and if not achieve them.
Edit : I mean I'll do french if not already existing. :)
Maybe you are saving into a different character-encoding scheme. This happened to me as well, when using the notepad.exe in windows.
I don’t know what character-encoding scheme it should be, but I'm using the E-text editor (Textmate on Mac) and that works fine.
I just localized files to portuguese (strings-pt) but everytime I start MB it overwrites strings-pt file with english text (the name of file is still strings-pt but the text I translated before is overwritten by english text). Is this happenning with someone else? Am I doing something wrong?
My culture is Portuguese – Brazil and I setup parameter PreferredMetaDataLanguage to pt inside MediaBrowserXml.config file
After I check everything is ok I will upload portuguese – Brazilian files.
Thanks
I am currently working on the Swedish translation, it will be done by the beginning of next week.
Agree with Chuper, we need a post with all the translations available for download.
We need a local to post finish files for users to download…
Sven, you should mark this as complete…
With regards to EBR’s comment above can I ask if we have any indication which themes might not work with Cronos yet and if not will it be included in the release notes of Cronos?
Just a word of warning to theme devs out there. Not sure that anyone else was using the standard elements (like the index and sort menus) but the interfaces for those were changed which will cause any theme using them to crash (my personal theme had this problem).
Just a heads up that all themes should be tested against the current trunk…
I've created 2 placeholder topics in the Knowledgebase which I have left pending at the moment.
We can also detect the current culture and download the associate xml file
Its in trunk now, we need a KB on how to localize MB!!!
From a tech stand point all that is required is localizing of the files in C:\ProgramData\MediaBrowser\Localization
We also need to find a way of distributing this (perhaps from configurator)
Will the themes that are out here be localisable too? Like to hear what the theme developers think about this…(i'm most interested to hear from Craigt and his Simplicity theme)
Hi,
I have good news about right to left! I have done two tests:
1) windows 7 – if you put Hebrew encoding in the mymovies.xml header the movie information will be shown correctly, Hebrew characters and aligned to the right.
2) Windows Vista – if you put Hebrew encoding in the mymovies.xml header the movie information will be show Hebrew characters but NOT aligned to the right. This can be solved by installing the Hebrew MUI pack for vista.
One more thing the MB configuration menu in Vista will be also aligned to the right which makes it a bit confusing to use, But at least you can still use it.
I think this solution can work for other RTL languages.
Can someone else check and report?
I've created a MB clone here : http://code.google.com/r/stephanevento-localization/source/list
I think at least 95% of the UI is now localized However I still have 2 small problems:
-Localization of “General”-“Actors” in the detailed Movie Page (ViewMovieMinimal.mcml) because it’s Choice class and I don’t know how to assign it with an Invoke action
-Localization of “General”-“Media options”… in the config page because they are defined at kernel loading. Thus I can’t call Kernel.StringData.
Hi,
will there be support for right-to-left language Like Hebrew?
Thanks
Count me in for Portuguese translation if this gets implemented.
If it is accessible, I could do French though I'm no programmer (or only web developer). Worst case, I could translate in a text file for someone who does know how to implement it.
I have looked at the existing code, but I still don't get the idea. Maybe I can help out translating to german, when the implementation of the localization package is finished.
Im completely against regex cause it is not hackable, every time someone decides to update a localization a very particular file needs to be compiled using the vs sdk and then installed in the GAC, its trouble which is totally unmanageable.
Just edit french.xml is manageable.
If you want to access kernel from mcml you could hook off a helper on application which exposed it, its a trivial 3 line change, in Application.cs add
public StringData LocalizedStrings
{
get { return Kernel.Instance.LocalizedString; }
}
The Application object is available on all MCML pages.
Hi Sam,
I see the localization xml-file and the two classes, but I did not got the idea how this could work together with mcml. There is “Kernel.StringData” (not used yet) and “Application.DescString” (only works in this special case). Do you have an idea how this should go forward? How is the “Kernel.StringData” accessed from mcml?
On the other side I continued to check, whether using resx-string-resources works as expected. – Support a third language: OK – Set language programatically through config instead of Windows Regional Settings: OK – Updated installer script to support language dlls: OK
I would really like to introduce resx in favour of the first localization attempt, if it is not really driven forward by anyone else. But I am completely new to the project and don’t know if this is ok for the core development team.