diff --git a/code/ryzom/client/data/gamedev/interfaces_v3/out_v2_appear.lua b/code/ryzom/client/data/gamedev/interfaces_v3/out_v2_appear.lua index e74c15469..1c8a86342 100644 --- a/code/ryzom/client/data/gamedev/interfaces_v3/out_v2_appear.lua +++ b/code/ryzom/client/data/gamedev/interfaces_v3/out_v2_appear.lua @@ -20,236 +20,231 @@ end -- Fyros function outgame:getFyrosFirstName() - local nbFyrosFirstNames = 0; - for _ in pairs(fyrosFirstNames) do nbFyrosFirstNames = nbFyrosFirstNames + 1 end + local nbFyrosFirstNames = 0; + for _ in pairs(fyrosFirstNames) do nbFyrosFirstNames = nbFyrosFirstNames + 1 end - return fyrosFirstNames[math.random(nbFyrosFirstNames)] + return fyrosFirstNames[math.random(nbFyrosFirstNames)] end -function outgame:getFyrosLastName() - local nbFyrosLastNames = 0; - for _ in pairs(fyrosLastNames) do nbFyrosLastNames = nbFyrosLastNames + 1 end - return fyrosLastNames[math.random(nbFyrosLastNames)] +function outgame:getFyrosLastName() + local nbFyrosLastNames = 0; + for _ in pairs(fyrosLastNames) do nbFyrosLastNames = nbFyrosLastNames + 1 end + + return fyrosLastNames[math.random(nbFyrosLastNames)] end -- Matis function outgame:getMatisFirstName(sex) - local dbNameSex = getDbProp("UI:TEMP:NAME_SEX"); + -- 1 = male, 2 = female + local dbNameSex = getDbProp("UI:TEMP:NAME_SEX"); - if sex ~= nil then - dbNameSex = sex; - end + if sex ~= nil then + dbNameSex = sex; + end - local FirstName = "" - if tonumber( dbNameSex )== 1 then - local nbMatisMaleFirstNames = 0; - for _ in pairs(matisMaleFirstNames) do nbMatisMaleFirstNames = nbMatisMaleFirstNames + 1 end - FirstName = matisMaleFirstNames[math.random(nbMatisMaleFirstNames)]; - else - local nbMatisFemaleFirstNames = 0; - for _ in pairs(matisFemaleFirstNames) do nbMatisFemaleFirstNames = nbMatisFemaleFirstNames + 1 end - FirstName = matisFemaleFirstNames[math.random(nbMatisFemaleFirstNames)]; - end + local FirstName = "" + if tonumber(dbNameSex) == 1 then + local nbMatisMaleFirstNames = 0; + for _ in pairs(matisMaleFirstNames) do nbMatisMaleFirstNames = nbMatisMaleFirstNames + 1 end + FirstName = matisMaleFirstNames[math.random(nbMatisMaleFirstNames)]; + else + local nbMatisFemaleFirstNames = 0; + for _ in pairs(matisFemaleFirstNames) do nbMatisFemaleFirstNames = nbMatisFemaleFirstNames + 1 end + FirstName = matisFemaleFirstNames[math.random(nbMatisFemaleFirstNames)]; + end - return FirstName; + return FirstName; end function outgame:getMatisLastName() - local nbMatisLastNames = 0; - for _ in pairs(matisLastNames) do nbMatisLastNames = nbMatisLastNames + 1 end + local nbMatisLastNames = 0; + for _ in pairs(matisLastNames) do nbMatisLastNames = nbMatisLastNames + 1 end - return matisLastNames[math.random(nbMatisLastNames)] + return matisLastNames[math.random(nbMatisLastNames)] end -- Tryker function outgame:getTrykerFirstName() - local nbTrykerFirstNames = 0; - for _ in pairs(trykerFirstNames) do nbTrykerFirstNames = nbTrykerFirstNames + 1 end + local nbTrykerFirstNames = 0; + for _ in pairs(trykerFirstNames) do nbTrykerFirstNames = nbTrykerFirstNames + 1 end - return trykerFirstNames[math.random(nbTrykerFirstNames)] + return trykerFirstNames[math.random(nbTrykerFirstNames)] end -function outgame:getTrykerLastName() - local nbTrykerLastNames = 0; - for _ in pairs(trykerLastNames) do nbTrykerLastNames = nbTrykerLastNames + 1 end - return trykerLastNames[math.random(nbTrykerLastNames)] +function outgame:getTrykerLastName() + local nbTrykerLastNames = 0; + for _ in pairs(trykerLastNames) do nbTrykerLastNames = nbTrykerLastNames + 1 end + + return trykerLastNames[math.random(nbTrykerLastNames)] end -- Zora function outgame:getZoraiFirstName() - local nbFirstNamesOne = 0; - for _ in pairs(zoraiFirstNamesOne) do nbFirstNamesOne = nbFirstNamesOne + 1 end - local FirstNameOne = zoraiFirstNamesOne[math.random(nbFirstNamesOne)]; + local nbFirstNamesOne = 0; + for _ in pairs(zoraiFirstNamesOne) do nbFirstNamesOne = nbFirstNamesOne + 1 end + local FirstNameOne = zoraiFirstNamesOne[math.random(nbFirstNamesOne)]; - local nbFirstNamesTwo = 0; - for _ in pairs(zoraiFirstNamesTwo) do nbFirstNamesTwo = nbFirstNamesTwo + 1 end - local FirstNameTwo = zoraiFirstNamesTwo[math.random(nbFirstNamesTwo)]; + local nbFirstNamesTwo = 0; + for _ in pairs(zoraiFirstNamesTwo) do nbFirstNamesTwo = nbFirstNamesTwo + 1 end + local FirstNameTwo = zoraiFirstNamesTwo[math.random(nbFirstNamesTwo)]; - return FirstNameOne .. "-" .. FirstNameTwo + return FirstNameOne .. "-" .. FirstNameTwo end function outgame:getZoraiLastName() - local nbLastNames = 0; - for _ in pairs(zoraiLastNames) do nbLastNames = nbLastNames + 1 end + local nbLastNames = 0; + for _ in pairs(zoraiLastNames) do nbLastNames = nbLastNames + 1 end - return zoraiLastNames[math.random(nbLastNames)] + return zoraiLastNames[math.random(nbLastNames)] end function outgame:procGenerateName() - local uiNameFull = getUI("ui:outgame:appear_name:name_full"); + local uiNameFull = getUI("ui:outgame:appear_name:name_full"); local uiGenText = getUI("ui:outgame:appear_name:eb"); - local dbNameRace = getDbProp("UI:TEMP:NAME_RACE"); - local dbNameSubRace = getDbProp("UI:TEMP:NAME_SUB_RACE"); - local dbNameSubRace2 = getDbProp("UI:TEMP:NAME_SUB_RACE2"); + local dbNameRace = getDbProp("UI:TEMP:NAME_RACE"); + local dbNameSubRaceFirstName = getDbProp("UI:TEMP:NAME_SUB_RACE_FIRST_NAME"); + local dbNameSubRaceLastName = getDbProp("UI:TEMP:NAME_SUB_RACE_LAST_NAME"); - local nameResult = ""; - local fullnameResult = ""; + local nameResult = ""; + local fullnameResult = ""; - -- Look at outgame:procUpdateNameRaceLabel() for the "race" list. - -- fy ma try zo --> - local lastName = "test" - local firstName = "test2" - if tonumber( dbNameRace ) == 1 then - -- Fyros - lastName = self:getFyrosLastName() - firstName = self:getFyrosFirstName() - fullnameResult = lastName .. " " .. firstName - nameResult = firstName - elseif tonumber( dbNameRace ) == 2 then - -- Matis - lastName = self:getMatisLastName() - firstName = self:getMatisFirstName() - fullnameResult = lastName .. " " .. firstName - nameResult = firstName - elseif tonumber( dbNameRace ) == 3 then - -- Tryker - lastName = self:getTrykerLastName() - firstName = self:getTrykerFirstName() - fullnameResult = firstName .. " " .. lastName - nameResult = firstName - elseif tonumber( dbNameRace ) == 4 then - -- Zorai - lastName = self:getZoraiLastName() - firstName = self:getZoraiFirstName() - fullnameResult = firstName .. " " .. lastName - nameResult = firstName - elseif tonumber( dbNameRace ) == 5 then - -- Maraudeurs - -- lastName - if tonumber(dbNameSubRace) == 1 then - -- Fyros - lastName = self:getFyrosLastName() - elseif tonumber( dbNameSubRace ) == 2 then - -- Matis F - lastName = self:getMatisLastName(2) - elseif tonumber( dbNameSubRace ) == 3 then - -- Matis M - lastName = self:getMatisLastName(1) - elseif tonumber( dbNameSubRace ) == 4 then - -- Tryker - lastName = self:getTrykerLastName() - elseif tonumber( dbNameSubRace ) == 5 then - -- Zorai - lastName = self:getZoraiLastName() - end + -- Look at outgame:procUpdateNameRaceLabel() for the "race" list. + -- fy ma try zo --> + local firstName = "test2" + local lastName = "test" + if tonumber(dbNameRace) == 1 then + -- Fyros + firstName = self:getFyrosFirstName() + lastName = self:getFyrosLastName() + elseif tonumber(dbNameRace) == 2 then + -- Matis + firstName = self:getMatisFirstName() + lastName = self:getMatisLastName() + elseif tonumber(dbNameRace) == 3 then + -- Tryker + firstName = self:getTrykerFirstName() + lastName = self:getTrykerLastName() + elseif tonumber(dbNameRace) == 4 then + -- Zorai + firstName = self:getZoraiFirstName() + lastName = self:getZoraiLastName() + elseif tonumber(dbNameRace) == 5 then + -- Maraudeurs - -- firstName - if tonumber(dbNameSubRace2) == 1 then - -- Fyros - firstName = self:getFyrosFirstName() - elseif tonumber( dbNameSubRace2 ) == 2 then - -- Matis - firstName = self:getMatisFirstName() - firstName = self:getMatisFirstName() - elseif tonumber( dbNameSubRace2 ) == 3 then - -- Tryker - firstName = self:getTrykerFirstName() - elseif tonumber( dbNameSubRace2 ) == 4 then - -- Zorai - firstName = self:getZoraiFirstName() - end + -- firstName + if tonumber(dbNameSubRaceFirstName) == 1 then + -- Fyros + firstName = self:getFyrosFirstName() + elseif tonumber(dbNameSubRaceFirstName) == 2 then + -- Matis M + firstName = self:getMatisFirstName(1) + elseif tonumber(dbNameSubRaceFirstName) == 3 then + -- Matis F + firstName = self:getMatisFirstName(2) + elseif tonumber(dbNameSubRaceFirstName) == 4 then + -- Tryker + firstName = self:getTrykerFirstName() + elseif tonumber(dbNameSubRaceFirstName) == 5 then + -- Zorai + firstName = self:getZoraiFirstName() + end - fullnameResult = lastName .. " " .. firstName - nameResult = firstName - end + -- lastName + if tonumber(dbNameSubRaceLastName) == 1 then + -- Fyros + lastName = self:getFyrosLastName() + elseif tonumber(dbNameSubRaceLastName) == 2 then + -- Matis + lastName = self:getMatisLastName() + elseif tonumber(dbNameSubRaceLastName) == 3 then + -- Tryker + lastName = self:getTrykerLastName() + elseif tonumber(dbNameSubRaceLastName) == 4 then + -- Zorai + lastName = self:getZoraiLastName() + end + end - uiNameFull.hardtext = fullnameResult; + fullnameResult = firstName .. " " .. lastName + nameResult = firstName - nameResult = string.gsub(nameResult, "'", ""); - nameResult = string.gsub(nameResult, " ", ""); - nameResult = string.gsub(nameResult, "-", ""); - nameResult = string.lower( nameResult ); - nameResult = nameResult:gsub("^%l", string.upper); - uiGenText.input_string = nameResult; + uiNameFull.hardtext = fullnameResult; + + nameResult = string.gsub(nameResult, "'", ""); + nameResult = string.gsub(nameResult, " ", ""); + nameResult = string.gsub(nameResult, "-", ""); + nameResult = string.lower( nameResult ); + nameResult = nameResult:gsub("^%l", string.upper); + uiGenText.input_string = nameResult; end + -- Name sex slider update. function outgame:procUpdateNameSexLabel() - local nameSexType = { "uiCP_Sex_Male", "uiCP_Sex_Female" } + local nameSexType = { "uiCP_Sex_Male", "uiCP_Sex_Female" } local uiNameSexText = getUI("ui:outgame:appear_name:name_sex_slider:name_sex"); - local uiNameSex = getDbProp("UI:TEMP:NAME_SEX"); + local uiNameSex = getDbProp("UI:TEMP:NAME_SEX"); - tempstr = tostring(i18n.get(nameSexType[tonumber(uiNameSex)])); - tempstr = string.lower( tempstr ); - tempstr = (tempstr:gsub("^%l", string.upper)); + tempstr = tostring(i18n.get(nameSexType[tonumber(uiNameSex)])); + tempstr = string.lower(tempstr); + tempstr = (tempstr:gsub("^%l", string.upper)); - uiNameSexText.hardtext= tempstr; + uiNameSexText.hardtext = tempstr; end + -- Name race slider update. function outgame:procUpdateNameRaceLabel() - local nameRaceType = { "Fyros", "Matis", "Tryker", "Zora", "uiCP_Maraudeur" } + local nameRaceType = { "Fyros", "Matis", "Tryker", "Zora", "uiCP_Maraudeur" } local uiNameRaceText = getUI("ui:outgame:appear_name:name_race_slider:name_race"); - local dbNameRace = getDbProp("UI:TEMP:NAME_RACE"); + local dbNameRace = getDbProp("UI:TEMP:NAME_RACE"); local uiNameSexSlider = getUI("ui:outgame:appear_name:name_sex_slider"); - local uiNameSubRaceSlider = getUI("ui:outgame:appear_name:name_sub_race_slider"); - local uiNameSubRace2Slider = getUI("ui:outgame:appear_name:name_sub_race2_slider"); + local uiNameSubRaceFirstNameSlider = getUI("ui:outgame:appear_name:name_sub_race_first_name_slider"); + local uiNameSubRaceLastNameSlider = getUI("ui:outgame:appear_name:name_sub_race_last_name_slider"); local uiNameGenerate = getUI("ui:outgame:appear_name:generate"); - -- Show/Hide sex slider + -- Show/Hide sex slider - uiNameGenerate.y = "-50" - if tonumber(dbNameRace) == 2 then - uiNameSexSlider.active = true; - uiNameGenerate.y = "-65" - else - uiNameSexSlider.active = false; - end + uiNameGenerate.y = "-50" + if tonumber(dbNameRace) == 2 then + uiNameSexSlider.active = true; + uiNameGenerate.y = "-65" + else + uiNameSexSlider.active = false; + end - -- Show/Hide sub race slider - if tonumber(dbNameRace) == 5 then - uiNameSubRaceSlider.active = true; - uiNameSubRace2Slider.active = true; - uiNameGenerate.y = "-105" - else - uiNameSubRaceSlider.active = false; - uiNameSubRace2Slider.active = false; - end + -- Show/Hide sub race slider + if tonumber(dbNameRace) == 5 then + uiNameSubRaceFirstNameSlider.active = true; + uiNameSubRaceLastNameSlider.active = true; + uiNameGenerate.y = "-105" + else + uiNameSubRaceFirstNameSlider.active = false; + uiNameSubRaceLastNameSlider.active = false; + end - - uiNameRaceText.hardtext= tostring(nameRaceType[tonumber(dbNameRace)]); + uiNameRaceText.hardtext = tostring(nameRaceType[tonumber(dbNameRace)]); end local matisF = "Matis " .. (string.lower(tostring(i18n.get("uiCP_Sex_Female")) )):gsub("^%l", string.upper); local matisM = "Matis " .. (string.lower(tostring(i18n.get("uiCP_Sex_Male")) )):gsub("^%l", string.upper); -function outgame:procUpdateNameSubRaceLabel() - local nameSubRaceType = { "Fyros", matisF, matisM, "Tryker", "Zora" } - local uiNameSubRaceText = getUI("ui:outgame:appear_name:name_sub_race_slider:name_race"); - local dbNameSubRace = getDbProp("UI:TEMP:NAME_SUB_RACE"); +function outgame:procUpdateNameSubRaceFirstNameLabel() + local nameSubRaceFirstNameType = { "Fyros", matisM, matisF, "Tryker", "Zora" } + local uiNameSubRaceFirstNameText = getUI("ui:outgame:appear_name:name_sub_race_first_name_slider:name_race"); + local dbNameSubRaceFirstName = getDbProp("UI:TEMP:NAME_SUB_RACE_FIRST_NAME"); - - uiNameSubRaceText.hardtext= tostring(nameSubRaceType[tonumber(dbNameSubRace)]); + uiNameSubRaceFirstNameText.hardtext= tostring(nameSubRaceFirstNameType[tonumber(dbNameSubRaceFirstName)]); end -function outgame:procUpdateNameSubRace2Label() - local nameSubRace2Type = { "Fyros", "Matis", "Tryker", "Zora" } - local uiNameSubRace2Text = getUI("ui:outgame:appear_name:name_sub_race2_slider:name_race"); - local dbNameSubRace2 = getDbProp("UI:TEMP:NAME_SUB_RACE2"); +function outgame:procUpdateNameSubRaceLastNameLabel() + local nameSubRaceLastNameType = { "Fyros", "Matis", "Tryker", "Zora" } + local uiNameSubRaceLastNameText = getUI("ui:outgame:appear_name:name_sub_race_last_name_slider:name_race"); + local dbNameSubRaceLastName = getDbProp("UI:TEMP:NAME_SUB_RACE_LAST_NAME"); - uiNameSubRace2Text.hardtext= tostring(nameSubRace2Type[tonumber(dbNameSubRace2)]); + uiNameSubRaceLastNameText.hardtext= tostring(nameSubRaceLastNameType[tonumber(dbNameSubRaceLastName)]); end ------------------------------------------------------------------------------------------------------------ diff --git a/code/ryzom/client/data/gamedev/interfaces_v3/out_v2_appear.xml b/code/ryzom/client/data/gamedev/interfaces_v3/out_v2_appear.xml index afe180d79..831e1966c 100644 --- a/code/ryzom/client/data/gamedev/interfaces_v3/out_v2_appear.xml +++ b/code/ryzom/client/data/gamedev/interfaces_v3/out_v2_appear.xml @@ -49,14 +49,14 @@ - + - - + + - + - + @@ -195,15 +195,15 @@ - + - + - + @@ -229,12 +229,12 @@ - + - - + + @@ -242,19 +242,19 @@ - + - + - - - + + + @@ -300,7 +300,7 @@ - + @@ -317,7 +317,7 @@ - + @@ -329,13 +329,13 @@ - + - + @@ -351,9 +351,9 @@ - + - @@ -371,7 +371,7 @@ - @@ -383,13 +383,13 @@ - + - + @@ -409,14 +409,14 @@ - - + + - - + + @@ -612,8 +612,8 @@ - - + + @@ -635,7 +635,7 @@ - + @@ -668,14 +668,14 @@ - + - + - + @@ -722,7 +722,7 @@ - + @@ -730,10 +730,10 @@ - + - + @@ -745,13 +745,13 @@ - + - + @@ -761,19 +761,19 @@ - + - + - + - + - + @@ -804,48 +804,48 @@ - + - + - + - + - + - + - + - + - + - + - + - - + + @@ -853,32 +853,32 @@ - + + value=switch(@0, 2, -151, -304, -457, -610)" /> - - + value=switch(@0, 0, -153, -306, -459, -612)" /> + + - + - + - + - + @@ -918,13 +918,13 @@ - - + + - + @@ -934,55 +934,55 @@ - + - + - + - + - - + + - + - + - + - + - + - - + + - + @@ -1054,16 +1054,16 @@ - - + + - + - + @@ -1074,8 +1074,8 @@ - - + + @@ -1097,18 +1097,18 @@ - + - + - + @@ -1120,7 +1120,7 @@ - + @@ -1188,10 +1188,10 @@ - + - + - + - - + @@ -1244,23 +1244,23 @@ - + - + - + - + - + @@ -1270,32 +1270,31 @@ - + - - - - - + + + + - @@ -1308,120 +1307,121 @@ - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + + + - + + - - - - - - - - - - - - + + + - + - - - - - - - - - - - - + - + + + - - - - - - - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1432,10 +1432,10 @@ - + - + @@ -1443,20 +1443,20 @@ - + - + - - + @@ -1478,23 +1478,23 @@ - + - + - + - + - + @@ -1503,15 +1503,15 @@ - - - + + - - + + @@ -1531,22 +1531,22 @@ - + - - + + - - + + - - - - - + + + + + @@ -1564,23 +1564,23 @@ - + - + - + - + - + @@ -1591,23 +1591,23 @@ - + - + - + - + - + @@ -1624,55 +1624,55 @@ - + - + - + - + - + - + - + - + - + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + @@ -1696,16 +1696,16 @@ - + - - + + - + @@ -1714,12 +1714,12 @@ - + - + @@ -1741,35 +1741,35 @@ - + - - + + - + - - - + - + @@ -1779,10 +1779,10 @@ - + @@ -1792,10 +1792,10 @@ - + @@ -1805,10 +1805,10 @@ - + @@ -1839,7 +1839,7 @@ --> - + @@ -1848,27 +1848,27 @@ - - + + - + - + - + - + - + @@ -1878,189 +1878,189 @@ roty_factor="0.005" roty_limit_min="-30" roty_limit_max="30" dist_factor="0.005" dist_limit_min="1.5" dist_limit_max="2.5" > - + - - - + + + - - - + + + - - + - + - + - + - + - + - - + - + - + - + - + - - + - + - + - + - + - - + - + - + - + - - + - + - + - + - + - + - + - + - + - + + onclick_l="proc" params_l="proc_CP_menu|4" + /> + + - - - + - + - + - + - + - + @@ -2078,48 +2078,48 @@ --> - - + + - + - + - + - + - - - - - - - + + + + + + + - + - + @@ -2127,15 +2127,15 @@ - + @@ -2143,7 +2143,7 @@ @@ -2152,16 +2152,16 @@ - + - - + + @@ -2178,22 +2178,22 @@ - - + + - + - + - + - + @@ -2203,8 +2203,8 @@ - - + + @@ -2213,8 +2213,8 @@ - - + + @@ -2239,40 +2239,40 @@ - + - + - + @@ -2295,45 +2295,45 @@ - + - - + + - + - + - + - + - + - - - + + + - + - - + + - + @@ -2343,7 +2343,7 @@ line_maxw="450" multi_line="true" multi_line_space="0"/> - + @@ -2369,8 +2369,8 @@ - - + + @@ -2392,22 +2392,22 @@ - + - + - + - + - - + + - + - + @@ -2415,16 +2415,16 @@ - + - + - + - + @@ -2435,7 +2435,7 @@ color="255 255 255 255" col_pushed="255 255 255 255" col_over="0 0 0 0" onover="play_sound" params_over="name=specie_but_over" onclick_l="proc" params_l="anim_perso"/> - + - --> - + --> + @@ -2460,18 +2460,18 @@ - + - + - + - - + + - + - - + + - + + color="255 255 255 255" global_color="false" /> - - - - + + + + color="0 0 0 255" sizeref="wh" scale="true" global_color="false" /> @@ -2649,7 +2649,7 @@ - + @@ -2706,7 +2706,7 @@ - + @@ -2714,7 +2714,7 @@ - + diff --git a/code/ryzom/tools/client/client_config_qt/CMakeLists.txt b/code/ryzom/tools/client/client_config_qt/CMakeLists.txt index f0bb295b3..0e85ea97b 100644 --- a/code/ryzom/tools/client/client_config_qt/CMakeLists.txt +++ b/code/ryzom/tools/client/client_config_qt/CMakeLists.txt @@ -27,11 +27,7 @@ SET(CLIENT_CONFIG_UIS sys_info_widget.ui ) -SET(CLIENT_CONFIG_TRANS - ${CMAKE_CURRENT_SOURCE_DIR}/translations/ryzom_configuration_en.ts - ${CMAKE_CURRENT_SOURCE_DIR}/translations/ryzom_configuration_fr.ts - ${CMAKE_CURRENT_SOURCE_DIR}/translations/ryzom_configuration_hu.ts -) +FILE(GLOB CLIENT_CONFIG_TRANS translations/*.ts) CONFIGURE_FILE(translations/translations.qrc ${CMAKE_CURRENT_BINARY_DIR}/translations.qrc COPYONLY) SET(CLIENT_CONFIG_RCS resources.qrc ${CMAKE_CURRENT_BINARY_DIR}/translations.qrc ) @@ -47,6 +43,8 @@ IF(WITH_QT) ADD_DEFINITIONS(${QT_DEFINITIONS}) ELSE() +# uncomment this line if you want to update original translations +# QT5_CREATE_TRANSLATION(CLIENT_CONFIG_QM ${CLIENT_CONFIG_UIS} ${SRC} ${CLIENT_CONFIG_TRANS}) QT5_ADD_TRANSLATION(CLIENT_CONFIG_QM ${CLIENT_CONFIG_TRANS}) QT5_ADD_RESOURCES(CLIENT_CONFIG_RC_SRCS ${CLIENT_CONFIG_RCS}) QT5_WRAP_CPP(CLIENT_CONFIG_MOC_SRC ${CLIENT_CONFIG_HDR}) diff --git a/code/ryzom/tools/client/client_config_qt/display_settings_widget.ui b/code/ryzom/tools/client/client_config_qt/display_settings_widget.ui index 2e24b455f..2cf1176e8 100644 --- a/code/ryzom/tools/client/client_config_qt/display_settings_widget.ui +++ b/code/ryzom/tools/client/client_config_qt/display_settings_widget.ui @@ -25,7 +25,7 @@ - Specify if Ryzom is to be run in OpenGL or Direct3D. + Specify if Ryzom is to be run in OpenGL or Direct3D: @@ -78,7 +78,7 @@ - Specify a video mode + Specify a video mode: diff --git a/code/ryzom/tools/client/client_config_qt/general_settings_widget.ui b/code/ryzom/tools/client/client_config_qt/general_settings_widget.ui index 5e7ef9793..722a195d9 100644 --- a/code/ryzom/tools/client/client_config_qt/general_settings_widget.ui +++ b/code/ryzom/tools/client/client_config_qt/general_settings_widget.ui @@ -97,7 +97,7 @@ - Slow down the game ( process low priority ) + Slow down the game (process low priority) diff --git a/code/ryzom/tools/client/client_config_qt/sound_settings_widget.ui b/code/ryzom/tools/client/client_config_qt/sound_settings_widget.ui index 7ae6ef699..dc973292a 100644 --- a/code/ryzom/tools/client/client_config_qt/sound_settings_widget.ui +++ b/code/ryzom/tools/client/client_config_qt/sound_settings_widget.ui @@ -42,7 +42,7 @@ - Software sound buffer ( may increase FPS ) + Software sound buffer (may increase FPS) diff --git a/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_de.ts b/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_de.ts new file mode 100644 index 000000000..2efd55ed3 --- /dev/null +++ b/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_de.ts @@ -0,0 +1,508 @@ + + + + + CClientConfigDialog + + + Ryzom configuration + Ryzom Konfiguration + + + + Are you sure you want to quit without saving the configuration? + Bist du sicher, dass du abbrechen willst, ohne die Konfiguration zu sichern? + + + + CDisplaySettingsDetailsWidget + + + Low + Niedrig + + + + Medium + Mittel + + + + Normal + Normal + + + + High + Hoch + + + + Low (32 MB) + Niedrig (32 MB) + + + + Normal (64 MB) + Normal (64 MB) + + + + High (128 MB) + Hoch (128 MB) + + + + CDisplaySettingsWidget + + + Auto + if too long, Auto is sufficient (just ugly, as in German the short form also means "car") + Automatisch + + + + CSoundSettingsWidget + + + %1 tracks + audio-channels? + %1 Tonspuren + + + + CSysInfoWidget + + + %1 MiB + %1 MiB + + + + client_config_dialog + + + Ryzom Configuration + Ryzom-Konfiguration + + + + + General + Allgemein + + + + Category + Kategorie + + + + Display + Anzeige + + + + Display details + Anzeigedetails + + + + Display advanced + Anzeige erweitert + + + + Sound + Sound + + + + System information + System-Information + + + + OpenGL information + OpenGL-Information + + + + Direct3D information + Direct3D-Information + + + + Apply + Anwenden + + + + Default + Standard + + + + Play Ryzom + Ryzom spielen + + + + display_settings_advanced_widget + + + Display advanced + Anzeige erweitert + + + + Modify these settings only if you have trouble launching the game + Modifiziere diese Einstellungen nur dann, wenn du Probleme mit dem Starten des Spiels hast + + + + Force texture compression + Erzwinge Textur-Kompression + + + + Disable vertex shaders + Deaktiviere Vertex-Shader + + + + Disable AGP for vertices + Deaktiviere AGP für Vertexeckpunkte + + + + Disable pixel shaders + Deaktiviere Pixel-Shader + + + + display_settings_details_widget + + + Display details + Anzeigedetails + + + + Landscape + Landschaft + + + + + + + Level of detail + Detailstufe + + + + + + + Low + Niedrig + + + + Characters + Charaktere + + + + FX + FX Effekte + + + + Textures + Texturen + + + + display_settings_widget + + + Display + Anzeige + + + + Driver + Treiber + + + Specify if Ryzom is to be run in OpenGL or Direct3D. + there's a period (full stop) at the end opposed to the other "specify"-sentece about full screen ending with a colon... + Wähle, ob Ryzom in OpenGL oder Direct3D laufen soll: + + + + Specify if Ryzom is to be run in OpenGL or Direct3D: + Wähle, ob Ryzom in OpenGL oder Direct3D laufen soll: + + + + Auto + Automatisch + + + + OpenGL + OpenGL + + + + Direct3D + Direct3D + + + + Parameters + Parameter + + + + Specify if Ryzom is to be run in full screen or window mode: + Wähle, ob Ryzom im Vollbildmodus oder Fenstermodus laufen soll: + + + + Full screen + Vollbild + + + + Specify a video mode: + Wähle eine Bildschirmauflösung: + + + Specify a video mode + Wähle eine Bildschirmauflösung + + + + Windowed + Im Fenster + + + + Width + Breite + + + + Height + Höhe + + + + X position + X-Position + + + + Y position + Y-Position + + + + general_settings_widget + + + Form + Formblatt + + + + Language + Sprache + + + + English + Englisch + + + + French + Französisch + + + + German + Deutsch + + + + Hungarian + Ungarisch + + + + Save config file when quitting the game + Do we need the "file" mentioned? + Speichere Konfigurationsdatei beim Beenden des Spiels + + + + Advanced + is it "extended" or rather "progressed" like "further/better developed"? + Erweitert + + + + Slow down the game (process low priority) + Verlangsame Spiel (niedrige Prozesspriorität) + + + Slow down the game ( process low priority ) + Verlangsame das Spiel (niedrige Prozesspriorität) + + + + sound_settings_widget + + + Sound + Sound + + + + Enable sound + Aktiviere Sound + + + + Enable EAX + Aktiviere EAX Klangverarbeitung + + + + Enable FMod + Aktiviere FMod Audiotool + + + + Software sound buffer (may increase FPS) + Software Sound Buffer (kann FPS erhöhen) + + + Software sound buffer ( may increase FPS ) + Software Sound Buffer (kann FPS erhöhen) + + + + Sound tracks + is this really about audio channels? + Tonspuren + + + + 8 tracks + 8-track as in 8 audio channels, right? Or does it mean something else? + 8 Spuren + + + + sys_info_d3d_widget + + + Direct3D information + Direct3D-Information + + + + Direct3D + Direct3D + + + + Description + Beschreibung + + + + Driver + Treiber + + + + Driver version + Treiber-Version + + + + sys_info_opengl_widget + + + OpenGL information + OpenGL-Information + + + + OpenGL + OpenGL + + + + Vendor + Hersteller + + + + Renderer + Renderer + + + + Version + Version + + + + Extensions + Erweiterungen + + + + sys_info_widget + + + + System information + System-Information + + + + Operating system + Betriebssystem + + + + CPU + Prozessor + + + + Physical memory + Physikalischer Speicher + + + + Video device + seems to refer to the video card. Or is it something else? + Grafikkarte + + + + Video driver version + Grafiktreiber-Version + + + diff --git a/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_en.ts b/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_en.ts index 47ae13098..4bf3d8126 100644 --- a/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_en.ts +++ b/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_en.ts @@ -1,468 +1,500 @@ - + CClientConfigDialog - + Ryzom configuration - + Ryzom configuration - + Are you sure you want to quit without saving the configuration? - + Are you sure you want to quit without saving the configuration? CDisplaySettingsDetailsWidget - + Low - + Low - + Medium - + Medium - + Normal - + Normal - + High - + High - + Low (32 MB) - + Low (32 MB) - + Normal (64 MB) - + Normal (64 MB) - + High (128 MB) - + High (128 MB) + + + + CDisplaySettingsWidget + + + Auto + Auto CSoundSettingsWidget - + %1 tracks - + %1 tracks + + + + CSysInfoWidget + + + %1 MiB + %1 MiB client_config_dialog - + Ryzom Configuration - + Ryzom Configuration - - + + General - + General - + Category - + Category - + Display - + Display - + Display details - + Display details - + Display advanced - + Display advanced - + Sound - + Sound - + System information - + System information - + OpenGL information - + OpenGL information - + Direct3D information - + Direct3D information - + Apply - + Apply - + Default - + Default - + Play Ryzom - + Play Ryzom display_settings_advanced_widget - + Display advanced - + Display advanced - + Modify these settings only if you have trouble launching the game - + Modify these settings only if you have trouble launching the game - - Disable texture compression - + + Force texture compression + Force texture compression - + Disable vertex shaders - + Disable vertex shaders - + Disable AGP for vertices - + Disable AGP for vertices - + Disable pixel shaders - + Disable pixel shaders display_settings_details_widget - + Display details - + Display details - + Landscape - + Landscape - - - - + + + + Level of detail - + Level of detail - - - - + + + + Low - + Low - + Characters - + Characters - + FX - + FX - + Textures - + Textures display_settings_widget - + Display - + Display - + Driver - + Driver - Specify if Ryzom is to be run in OpenGL or Direct3D. - + Specify if Ryzom is to be run in OpenGL or Direct3D. - + + Specify if Ryzom is to be run in OpenGL or Direct3D: + Specify if Ryzom is to be run in OpenGL or Direct3D: + + + Auto - + Auto - + OpenGL - + OpenGL - + Direct3D - + Direct3D - + Parameters - + Parameters - + Specify if Ryzom is to be run in full screen or window mode: - + Specify if Ryzom is to be run in full screen or window mode: - + Full screen - + Full screen + + + + Specify a video mode: + Specify a video mode: - Specify a video mode - + Specify a video mode - + Windowed - + Windowed - + Width - + Width - + Height - + Height - + X position - + X position - + Y position - + Y position general_settings_widget - + Form - + Form - + Language - + Language - + English - + English - + French - + French - + German - + German - + Hungarian - + Hungarian - + Save config file when quitting the game - + Save config file when quitting the game - + Advanced - + Advanced + + + + Slow down the game (process low priority) + Slow down the game (process low priority) - Slow down the game ( process low priority ) - + Slow down the game ( process low priority ) sound_settings_widget - + Sound - + Sound - + Enable sound - + Enable sound - + Enable EAX - + Enable EAX - + Enable FMod - + Enable FMod + + + + Software sound buffer (may increase FPS) + Software sound buffer (may increase FPS) - Software sound buffer ( may increase FPS ) - + Software sound buffer ( may increase FPS ) - + Sound tracks - + Sound tracks - + 8 tracks - + 8 tracks sys_info_d3d_widget - + Direct3D information - + Direct3D information - + Direct3D - + Direct3D - + Description - + Description - + Driver - + Driver - + Driver version - + Driver version sys_info_opengl_widget - + OpenGL information - + OpenGL information - + OpenGL - + OpenGL - + Vendor - + Vendor - + Renderer - + Renderer - + Version - + Version - + Extensions - + Extensions sys_info_widget - - + + System information - + System information - + Operating system - + Operating system - + CPU - + CPU - + Physical memory - + Physical memory - + Video device - + Video device - + Video driver version - + Video driver version diff --git a/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_es.ts b/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_es.ts new file mode 100644 index 000000000..b7498d3bc --- /dev/null +++ b/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_es.ts @@ -0,0 +1,500 @@ + + + + + CClientConfigDialog + + + Ryzom configuration + Confirguración de Ryzom + + + + Are you sure you want to quit without saving the configuration? + ¿Desea salir del juego sin guardar la configuración? + + + + CDisplaySettingsDetailsWidget + + + Low + Bajo + + + + Medium + Medio + + + + Normal + Normal + + + + High + Alto + + + + Low (32 MB) + Bajo (32 MB) + + + + Normal (64 MB) + Normal (64 MB) + + + + High (128 MB) + Alto (128 MB) + + + + CDisplaySettingsWidget + + + Auto + Automático + + + + CSoundSettingsWidget + + + %1 tracks + %1 pistas + + + + CSysInfoWidget + + + %1 MiB + %1 MiB + + + + client_config_dialog + + + Ryzom Configuration + Configuración de Ryzom + + + + + General + General + + + + Category + Categoría + + + + Display + Monitor + + + + Display details + Detalles de monitor + + + + Display advanced + Monitor avanzado + + + + Sound + Sonido + + + + System information + Información del sistema + + + + OpenGL information + Información OpenGL + + + + Direct3D information + Información Direct3D + + + + Apply + Aplicar + + + + Default + Por defecto + + + + Play Ryzom + Jugar Ryzom + + + + display_settings_advanced_widget + + + Display advanced + Monitor avanzado + + + + Modify these settings only if you have trouble launching the game + Modifique estos ajustes sólo si tiene problemas para iniciar el juego + + + + Force texture compression + Forzar compresión de texturas + + + + Disable vertex shaders + Desactivar vertex shader + + + + Disable AGP for vertices + Desactivar AGP para vértices + + + + Disable pixel shaders + Desactivar sombreador de píxel + + + + display_settings_details_widget + + + Display details + Mostrar detalles + + + + Landscape + Paisaje + + + + + + + Level of detail + Nivel de detalle + + + + + + + Low + Bajo + + + + Characters + Personajes + + + + FX + FX + + + + Textures + Texturas + + + + display_settings_widget + + + Display + Monitor + + + + Driver + Driver + + + Specify if Ryzom is to be run in OpenGL or Direct3D. + Especificar si Ryzom debe ser ejecutado con OpenGL o Direct3D. + + + + Specify if Ryzom is to be run in OpenGL or Direct3D: + + + + + Auto + Automático + + + + OpenGL + OpenGL + + + + Direct3D + Direct3D + + + + Parameters + Parámetros + + + + Specify if Ryzom is to be run in full screen or window mode: + Especificar si Ryzom debe ser ejecutado en modo pantalla completa o en modo ventana: + + + + Full screen + Pantalla completa + + + + Specify a video mode: + + + + Specify a video mode + Especificar un modo de video + + + + Windowed + Ventana + + + + Width + Anchura + + + + Height + Altura + + + + X position + Posición X + + + + Y position + Posición Y + + + + general_settings_widget + + + Form + Forma + + + + Language + Idioma + + + + English + Inglés + + + + French + Francés + + + + German + Alemán + + + + Hungarian + Húngaro + + + + Save config file when quitting the game + Guardar archivo config al abandonar el juego + + + + Advanced + Avanzado + + + + Slow down the game (process low priority) + + + + Slow down the game ( process low priority ) + Realentizar el juego ( prioridad de procesamiento bajo) + + + + sound_settings_widget + + + Sound + Sonido + + + + Enable sound + Activar sonido + + + + Enable EAX + Activar EAX + + + + Enable FMod + Activar FMod + + + + Software sound buffer (may increase FPS) + + + + Software sound buffer ( may increase FPS ) + Buffer de sonido software (puede aumentar los FPS ) + + + + Sound tracks + Pistas de sonido + + + + 8 tracks + 8 pistas + + + + sys_info_d3d_widget + + + Direct3D information + Información Direct3D + + + + Direct3D + Direct3D + + + + Description + Descripcción + + + + Driver + Driver + + + + Driver version + Versión del driver + + + + sys_info_opengl_widget + + + OpenGL information + Información OpenGL + + + + OpenGL + OpenGL + + + + Vendor + Distribuidor + + + + Renderer + Renderizador + + + + Version + Version + + + + Extensions + Extensión + + + + sys_info_widget + + + + System information + Información del sistema + + + + Operating system + Sistema operativo + + + + CPU + CPU + + + + Physical memory + Memoria física + + + + Video device + Dispositivo de video + + + + Video driver version + Versión del driver de video + + + diff --git a/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_fr.ts b/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_fr.ts index c79de4087..c60460881 100644 --- a/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_fr.ts +++ b/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_fr.ts @@ -1,15 +1,15 @@ - + CClientConfigDialog - + Ryzom configuration Configuration de Ryzom - + Are you sure you want to quit without saving the configuration? Êtes-vous sûr de vouloir quitter sans enregistrer la configuration ? @@ -17,114 +17,130 @@ CDisplaySettingsDetailsWidget - + Low Faible - + Medium Moyen - + Normal Normal - + High Elevé - + Low (32 MB) Faible (32 Mo) - + Normal (64 MB) Normal (64 Mo) - + High (128 MB) Elevé (128 Mo) + + CDisplaySettingsWidget + + + Auto + Auto + + CSoundSettingsWidget - + %1 tracks %1 pistes + + CSysInfoWidget + + + %1 MiB + %1 Mio + + client_config_dialog - + Ryzom Configuration Configuration de Ryzom - - + + General Général - + Category Catégorie - + Display Affichage - + Display details Détails d'affichage - + Display advanced Affichage avancé - + Sound Son - + System information Informations systèmes - + OpenGL information Informations OpenGL - + Direct3D information Informations Direct3D - + Apply Appliquer - + Default Défaut - + Play Ryzom Jouer à Ryzom @@ -132,32 +148,36 @@ display_settings_advanced_widget - + Display advanced Affichage avancé - + Modify these settings only if you have trouble launching the game Modifiez ces paramètres uniquement si vous avez des problèmes pour lancer le jeu - Disable texture compression - Désactiver la compression des textures + Désactiver la compression des textures - + + Force texture compression + Forcer la compression des textures + + + Disable vertex shaders Désactiver les vertex shaders - + Disable AGP for vertices Désactiver l'AGP pour les vertices - + Disable pixel shaders Désactiver les pixel shaders @@ -165,43 +185,43 @@ display_settings_details_widget - + Display details Détails d'affichage - + Landscape Paysage - - - - + + + + Level of detail Niveau de détail - - - - + + + + Low Faible - + Characters Personnages - + FX Effets spéciaux - + Textures Textures @@ -209,77 +229,85 @@ display_settings_widget - + Display Affichage - + Driver Pilote - Specify if Ryzom is to be run in OpenGL or Direct3D. - Spécifier si Ryzom doit utiliser OpenGL ou Direct3D. + Spécifier si Ryzom doit utiliser OpenGL ou Direct3D. - + + Specify if Ryzom is to be run in OpenGL or Direct3D: + Spécifier si Ryzom doit utiliser OpenGL ou Direct3D : + + + Auto Auto - + OpenGL OpenGL - + Direct3D Direct3D - + Parameters Paramètres - + Specify if Ryzom is to be run in full screen or window mode: Spécifier si Ryzom doit être lancé en mode plein écran ou fenêtré : - + Full screen Plein écran - - Specify a video mode - Spécifier une résolution + + Specify a video mode: + Spécifier une résolution : - + Specify a video mode + Spécifier une résolution + + + Windowed Fenêtré - + Width Largeur - + Height Hauteur - + X position Position X - + Y position Position Y @@ -287,85 +315,93 @@ general_settings_widget - + Form Formulaire - + Language Langue - + English Anglais - + French Français - + German Allemand - + Hungarian Hongrois - + Save config file when quitting the game Enregistrer le fichier de configuration quand on quitte le jeu - + Advanced Avancé - - Slow down the game ( process low priority ) + + Slow down the game (process low priority) Ralentir le jeu (priorité basse du processus) + + Slow down the game ( process low priority ) + Ralentir le jeu (priorité basse du processus) + sound_settings_widget - + Sound Son - + Enable sound Activer le son - + Enable EAX Activer EAX - + Enable FMod Activer FMod - - Software sound buffer ( may increase FPS ) + + Software sound buffer (may increase FPS) Tampons sonores logiciels (peut accroître la fluidité) - + Software sound buffer ( may increase FPS ) + Tampons sonores logiciels (peut accroître la fluidité) + + + Sound tracks Pistes audio - + 8 tracks 8 pistes @@ -373,27 +409,27 @@ sys_info_d3d_widget - + Direct3D information Informations Direct3D - + Direct3D Direct3D - + Description Description - + Driver Pilote - + Driver version Version du pilote @@ -401,32 +437,32 @@ sys_info_opengl_widget - + OpenGL information Informations OpenGL - + OpenGL OpenGL - + Vendor Vendeur - + Renderer Moteur de rendu - + Version Version - + Extensions Extensions @@ -434,33 +470,33 @@ sys_info_widget - - + + System information Informations systèmes - + Operating system Système d'exploitation - + CPU Processeur - + Physical memory Mémoire physique - + Video device Carte graphique - + Video driver version Version du driver de la carte graphique diff --git a/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_hu.ts b/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_hu.ts index 846fd7640..6f31fb7b2 100644 --- a/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_hu.ts +++ b/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_hu.ts @@ -1,15 +1,15 @@ - + CClientConfigDialog - + Ryzom configuration Ryom beállító - + Are you sure you want to quit without saving the configuration? Biztosan ki akar lépni mentés nélkül? @@ -17,49 +17,65 @@ CDisplaySettingsDetailsWidget - + Low Alacsony - + Medium Közepes - + Normal Normális - + High Magas - + Low (32 MB) Alacsony (32 MB) - + Normal (64 MB) Normális (64 MB) - + High (128 MB) Magas (128 MB) + + CDisplaySettingsWidget + + + Auto + Automatikus + + CSoundSettingsWidget - + %1 tracks %1 sáv + + CSysInfoWidget + + + %1 MiB + + + ClientConfigDialog @@ -429,68 +445,68 @@ client_config_dialog - + Ryzom Configuration Ryzom beállító - - + + General Általános - + Category Kategória - + Display Megjelenítés - + Display details Megjelenítés részletek - + Display advanced Megjelenítés haladóknak - + Sound Hang - + System information Rendszer információk - + OpenGL information OpenGL információk - + Direct3D information Direct3D információk - + Apply Alkalmaz - + Default Alapbeállítások - + Play Ryzom Ryom indítása @@ -498,32 +514,36 @@ display_settings_advanced_widget - + Display advanced Megjelenítés haladóknak - + Modify these settings only if you have trouble launching the game Csak akkor változtasson ezeken a beállításokon ha nem tudja elindítani a játékot - Disable texture compression - Textúratömörítés kikapcsolása + Textúratömörítés kikapcsolása - + + Force texture compression + + + + Disable vertex shaders Csúcsárnyalók kikapcsolása - + Disable AGP for vertices AGP kikapcsolása a csúcsok számára - + Disable pixel shaders Képpont árnyalók kikapcsolása @@ -531,43 +551,43 @@ display_settings_details_widget - + Display details Megjelenítés részletek - + Landscape Terep - - - - + + + + Level of detail Részletesség - - - - + + + + Low Alacsony - + Characters Karakterek - + FX FX - + Textures Textúrák @@ -575,77 +595,85 @@ display_settings_widget - + Display Megjelenítés - + Driver Meghajtó - Specify if Ryzom is to be run in OpenGL or Direct3D. - Határozza meg, hogy a Ryzom OpenGL-t vagy Direct3D-t használjon. + Határozza meg, hogy a Ryzom OpenGL-t vagy Direct3D-t használjon. - + + Specify if Ryzom is to be run in OpenGL or Direct3D: + + + + Auto Automatikus - + OpenGL - + Direct3D - + Parameters Paraméterek - + Specify if Ryzom is to be run in full screen or window mode: Határozza meg, hogy a Ryzom teljes képernyős vagy ablakos üzemmódban fusson: - + Full screen Teljes képernyő - - Specify a video mode - Határozza meg a megjelenítési módot + + Specify a video mode: + - + Specify a video mode + Határozza meg a megjelenítési módot + + + Windowed Ablakos - + Width Szélesség - + Height Magasság - + X position X helyzet - + Y position Y Helyzet @@ -653,85 +681,93 @@ general_settings_widget - + Form - + Language Nyelv - + English Angol - + French Francia - + German Német - + Hungarian Magyar - + Save config file when quitting the game Mentsük a beállításokat kilépéskor - + Advanced Haladó - + + Slow down the game (process low priority) + + + Slow down the game ( process low priority ) - Játék lassítása ( alacsony prioritású folyamat ) + Játék lassítása ( alacsony prioritású folyamat ) sound_settings_widget - + Sound Hang - + Enable sound Hang bekapcsolása - + Enable EAX EAX bekapcsolása - + Enable FMod FMod bekapcsolása - - Software sound buffer ( may increase FPS ) - Software-es hang tárolás ( növelheti az FPS-t ) + + Software sound buffer (may increase FPS) + - + Software sound buffer ( may increase FPS ) + Software-es hang tárolás ( növelheti az FPS-t ) + + + Sound tracks Hangsávok - + 8 tracks 8 sáv @@ -739,27 +775,27 @@ sys_info_d3d_widget - + Direct3D information Direct3D információk - + Direct3D - + Description Leírás - + Driver Meghajtó - + Driver version Meghajtó verziószám @@ -767,32 +803,32 @@ sys_info_opengl_widget - + OpenGL information OpenGL információk - + OpenGL - + Vendor Szállító - + Renderer Megjelenítő - + Version Verziószám - + Extensions Kiegészítések @@ -800,33 +836,33 @@ sys_info_widget - - + + System information Rendszer információk - + Operating system Alaprendszer - + CPU - + Physical memory Fizikai memória - + Video device Megjelenítő eszköz - + Video driver version Megjelenítő meghajtó verziószám diff --git a/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_ru.ts b/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_ru.ts new file mode 100644 index 000000000..2873880a5 --- /dev/null +++ b/code/ryzom/tools/client/client_config_qt/translations/ryzom_configuration_ru.ts @@ -0,0 +1,484 @@ + + + + + CClientConfigDialog + + + Ryzom configuration + + + + + Are you sure you want to quit without saving the configuration? + + + + + CDisplaySettingsDetailsWidget + + + Low + + + + + Medium + + + + + Normal + + + + + High + + + + + Low (32 MB) + + + + + Normal (64 MB) + + + + + High (128 MB) + + + + + CDisplaySettingsWidget + + + Auto + + + + + CSoundSettingsWidget + + + %1 tracks + + + + + CSysInfoWidget + + + %1 MiB + + + + + client_config_dialog + + + Ryzom Configuration + + + + + + General + + + + + Category + + + + + Display + + + + + Display details + + + + + Display advanced + + + + + Sound + + + + + System information + + + + + OpenGL information + + + + + Direct3D information + + + + + Apply + + + + + Default + + + + + Play Ryzom + + + + + display_settings_advanced_widget + + + Display advanced + + + + + Modify these settings only if you have trouble launching the game + + + + + Force texture compression + + + + + Disable vertex shaders + + + + + Disable AGP for vertices + + + + + Disable pixel shaders + + + + + display_settings_details_widget + + + Display details + + + + + Landscape + + + + + + + + Level of detail + + + + + + + + Low + + + + + Characters + + + + + FX + + + + + Textures + + + + + display_settings_widget + + + Display + + + + + Driver + + + + + Specify if Ryzom is to be run in OpenGL or Direct3D: + + + + + Auto + + + + + OpenGL + + + + + Direct3D + + + + + Parameters + + + + + Specify if Ryzom is to be run in full screen or window mode: + + + + + Full screen + + + + + Specify a video mode: + + + + + Windowed + + + + + Width + + + + + Height + + + + + X position + + + + + Y position + + + + + general_settings_widget + + + Form + + + + + Language + + + + + English + + + + + French + + + + + German + + + + + Hungarian + + + + + Save config file when quitting the game + + + + + Advanced + + + + + Slow down the game (process low priority) + + + + + sound_settings_widget + + + Sound + + + + + Enable sound + + + + + Enable EAX + + + + + Enable FMod + + + + + Software sound buffer (may increase FPS) + + + + + Sound tracks + + + + + 8 tracks + + + + + sys_info_d3d_widget + + + Direct3D information + + + + + Direct3D + + + + + Description + + + + + Driver + + + + + Driver version + + + + + sys_info_opengl_widget + + + OpenGL information + + + + + OpenGL + + + + + Vendor + + + + + Renderer + + + + + Version + + + + + Extensions + + + + + sys_info_widget + + + + System information + + + + + Operating system + + + + + CPU + + + + + Physical memory + + + + + Video device + + + + + Video driver version + + + + diff --git a/code/ryzom/tools/client/client_config_qt/translations/translations.qrc b/code/ryzom/tools/client/client_config_qt/translations/translations.qrc index 49f9aa0a6..f90755537 100644 --- a/code/ryzom/tools/client/client_config_qt/translations/translations.qrc +++ b/code/ryzom/tools/client/client_config_qt/translations/translations.qrc @@ -1,7 +1,10 @@ + ryzom_configuration_de.qm ryzom_configuration_en.qm + ryzom_configuration_es.qm ryzom_configuration_fr.qm ryzom_configuration_hu.qm + ryzom_configuration_ru.qm