← Back to team overview

openlp-core team mailing list archive

[Bug 1032407] Re: Missing Languages choices in language selection menu

 

Researched the root cause

Languages have .ts files which define the strings used in the program,
these are used to describe the language.

This is the xml

     <message>
        <location filename="openlp/core/utils/languagemanager.py" line="98"/>
        <source>English</source>
        <comment>Please add the name of your language here</comment>
        <translation type="unfinished"/>
    </message>

change to

    <message>
        <location filename="openlp/core/utils/languagemanager.py" line="98"/>
        <source>English</source>
        <comment>Please add the name of your language here</comment>
        <translation>Slovak</translation>
    </message>


Which i corrected in the following files
fi.ts  Finnish
it.ts  Italian
ko.ts  Korean
nb.ts Norwegian
pl.ts  Polish
sk.ts  Slovak


Now this needs to be done prior to any languages being approved for usage.

Perhaps when loading the languages in the language manager, just check
for blanks. Then only after they get to filling this value out will it
show up, which probably means most of the values are entered.

I can also look up a way to get the language name from the country code,
or the QT class itself, but if this is not filled out, i am not sure we
want to use the language.

-- 
You received this bug notification because you are a member of OpenLP
Core, which is subscribed to OpenLP.
https://bugs.launchpad.net/bugs/1032407

Title:
  Missing Languages choices in language selection menu

Status in OpenLP - Worship Presentation Software:
  New

Bug description:
  Language menu appears as follows, with some languages blank ( might
  not be exact )

  1 Afrikaans
  3 Dansk
  4 Deutsch
  5 A****** ( Slavic looking text )
  6 English
  7 English (United Kingdom)
  8 English (South Africa)
  9
  10 Eesti
  11 
  12
  13 Magyar
  14 Inggris
  15 
  16
  17 
  18 
  19 Nederlands
  20 
  23 
  24 Shqiptar
  25 Svenska

To manage notifications about this bug go to:
https://bugs.launchpad.net/openlp/+bug/1032407/+subscriptions


References