Code: Select all
title = "My podcasts"
Code: Select all
title = SDB.Localize("My podcasts")
[FIXED]
Moderator: Gurus
Code: Select all
title = "My podcasts"
Code: Select all
title = SDB.Localize("My podcasts")
[FIXED].1) Missing Strings:
a) Tracks added within 30 days (in playlists node) . Change to 'Recently Added'.
[FIXED]2) Missing Tooltip Strings:
a) Library > Generate thumbnails for videos
--> Generates thumbnails automatically for videos that don't have any artwork.
[NOT FIXED]There are still two occurences of 'audio CD'. In fact these strings are duplicated with both capitalizations: 'Buy audio CDs at CDUniverse', 'Buy audio CDs at Amazon'.3) Misc. Capitalization issues:
a) audio CD appears in numerous spots instead of 'Audio CD'
[FIXED]4) Translated string that doesn't appear in UI
a) File list (HTML) (from report menu--the db.po file has Track list (html), and seems to not have been updated)
[FIXED]5) Add scan dialog is too narrow--it causes translated 'Scan continuously' and 'Scan at Startup' text to wrap.
[FIXED]7) Missing Script-related Strings:
# Script: Case Checker
msgid "Old Value: "
msgstr ""
...
[Won't be FIXED]Not Localizable:
- Script: Create Reports > Statistics
Resulting date in footer is printed always in english form, it's not localized.
[FIXED]9) Misc. non-functional fixes to .po files:
'Auto DJ' string still exists (despite the fact that 'Auto-DJ' displays correctly in the UI)
Code: Select all
Line #104:
Call InitExport (".csv", "CSV (*.csv)|*.csv|All files (*.*)|*.*", _
----> Call InitExport (".csv", SDB.Localize("CSV (*.csv)|*.csv|All files (*.*)|*.*"), _
Line #181:
Call InitExport( ".htm", "HTML (*.htm)|*.htm|All files (*.*)|*.*", _
----> Call InitExport( ".htm", SDB.Localize("HTML (*.htm)|*.htm|All files (*.*)|*.*"), _
Line #378:
Call InitExport( ".xls", "Excel sheet (*.xls)|*.xls|All files (*.*)|*.*", _
----> Call InitExport( ".xls", SDB.Localize("Excel sheet (*.xls)|*.xls|All files (*.*)|*.*"), _
Line #482:
Call InitExport (".xml", "XML (*.xml)|*.xml|All files (*.*)|*.*", _
----> Call InitExport (".xml", SDB.Localize("XML (*.xml)|*.xml|All files (*.*)|*.*"), _
Line #395:
MsgBox "Microsoft Excel could not be found, please install it and try again.
----> MsgBox SDB.Localize("Microsoft Excel could not be found, please install it and try again.")
Code: Select all
msgid "CSV (*.csv)|*.csv|All files (*.*)|*.*"
msgstr ""
msgid "HTML (*.htm)|*.htm|All files (*.*)|*.*"
msgstr ""
msgid "Excel sheet (*.xls)|*.xls|All files (*.*)|*.*"
msgstr ""
msgid "XML (*.xml)|*.xml|All files (*.*)|*.*"
msgstr ""
msgid "Microsoft Excel could not be found, please install it and try again."
msgstr ""
Code: Select all
msgid "Track List (CS&V)"
msgstr ""
msgid "Exports selected tracks to a .csv file"
msgstr ""
msgid "Track List (&XML)"
msgstr ""
msgid "Exports selected tracks to an .xml file"
msgstr ""
msgid "Track List (&HTML)"
msgstr ""
msgid "Exports selected tracks to a .htm file"
msgstr ""
msgid "Track List (&Excel)"
msgstr ""
msgid "Exports selected tracks to a .xls file"
msgstr ""
msgid "Sequentially numbers Tracks"
msgstr ""
Code: Select all
msgid "File List (CS&V)"
msgstr ""
msgid "Exports list of selected files to a .csv file"
msgstr ""
msgid "File List (&XML)"
msgstr ""
msgid "Exports list of selected files to an .xml file"
msgstr ""
msgid "File List (&HTML)"
msgstr ""
msgid "Exports list of selected files to an .htm file"
msgstr ""
msgid "File List (&Excel)"
msgstr ""
msgid "Exports list of selected files to a .xls file"
msgstr ""
msgid "Sequentially numbers files"
msgstr ""
My windows is in pt-br locale.PetrCBR wrote:re 8: what windows language do you have ? It can be related to this (as this text is generated by Windows).
Code: Select all
"File List (CS&V)"
"Exports list of selected files to a .csv file"
"File List (&XML)"
"Exports list of selected files to an .xml file"
"File List (&HTML)"
"Exports list of selected files to an .htm file"
"File List (&Excel)"
"Exports list of selected files to a .xls file"
"Sequentially numbers files"
Code: Select all
"Track List (CS&V)"
"Exports selected tracks to a .csv file"
"Track List (&XML)"
"Exports selected tracks to an .xml file"
"Track List (&HTML)"
"Exports selected tracks to a .htm file"
"Track List (&Excel)"
"Exports selected tracks to a .xls file"
"Sequentially numbers Tracks"
[NOT FIXED]There are still two occurences of 'audio CD'. In fact these strings are duplicated with both capitalizations: 'Buy audio CDs at CDUniverse'/'Buy Audio CDs at CDUniverse', 'Buy audio CDs at Amazon'/'Buy Audio CDs at Amazon'.3) Misc. Capitalization issues:
a) audio CD appears in numerous spots instead of 'Audio CD'
[Won't be FIXED, so it's fine]Not Localizable:
- Script: Create Reports > Statistics
Resulting date in footer is printed always in english form, it's not localized.