aboutsummaryrefslogtreecommitdiff
path: root/po/uk
Commit message (Collapse)AuthorAge
* Run updatepo.shest312016-12-14
|
* Translated using Weblate (Ukrainian)Fixer2016-12-14
| | | | Currently translated at 38.1% (350 of 918 strings)
* Run updatepo.shest312016-08-30
|
* Run updatepo.shest312016-07-12
|
* Translated using Weblate (Ukrainian)Fixer2016-05-30
| | | | Currently translated at 39.3% (349 of 887 strings)
* Translated using Weblate (Ukrainian)Fixer2016-05-10
| | | | | | Currently translated at 38.4% (341 of 887 strings) This is a merger of two commits.
* Run updatepo.shest312016-05-05
|
* Update po files, minetest.conf.example and settings_translation_file.cppest312016-02-27
|
* Translated using Weblate (Ukrainian)Fixer2016-02-27
| | | | Currently translated at 30.4% (240 of 787 strings)
* Run util/updatepo.shest312015-11-08
|
* Run updatepo.shest312015-10-24
|
* Translated using Weblate (Ukrainian)Olexandr2015-10-05
| | | | Currently translated at 81.6% (227 of 278 strings)
* Translated using Weblate (Ukrainian)Olexandr2015-10-05
| | | | Currently translated at 78.0% (217 of 278 strings)
* Translated using Weblate (Ukrainian)Olexandr2015-10-05
| | | | | | Currently translated at 66.5% (185 of 278 strings) Maybe it is better to describe allowed symbols instead of writing regex?
* Translated using Weblate (Ukrainian)Olexandr2015-10-05
| | | | Currently translated at 46.4% (129 of 278 strings)
* Run updatepo.shest312015-09-12
| | | | | | After this, it should hopefully not record line numbers anymore, so the diffs of updatepo.sh runs are smaller. Well, this is theory, lets see how it will turn out to be in practice.
* Run updatepo.shest312015-07-17
|
* Revert "Update Russian translation"Kahrl2014-12-13
| | | | | | | | This reverts commit e4e4324a30d6bcac5cc06c74e955e4941b14bd38. Conflicts: po/minetest.pot po/*/minetest.po
* Update po filesShadowNinja2014-12-12
|
* Run updatepo.shPilzAdam2013-11-23
|
* Run updatepo.shIlya Zhuravlev2013-09-08
|
* Run util/updatepo.shPilzAdam2013-08-25
|
* Fix *.po errors caused by rebase.Ilya Zhuravlev2013-08-25
|
* Translated using Weblate (Ukrainian)Vladimir a2013-08-25
|
* Translated using Weblate (Ukrainian)sfan52013-08-25
|
* Fix i18n of some strings.arsdragonfly2013-07-02
|
* Fix Problem with uk Translationsfan52013-05-17
|
* Update po filesPilzAdam2013-05-13
|
* Translated using Weblate (Ukrainian)?????? ????????2013-05-01
|
* Add Ukrainian language.Ilya Zhuravlev2013-04-07
ything_prev then page = page - 1 elseif fields.chest_of_everything_next then page = page + 1 end if page < 1 then page = 1 end if page > max_page then page = max_page end meta:set_int("page", page) meta:set_string("formspec", get_chest_formspec(page)) end end, }) minetest.register_on_mods_loaded(function() local items = {} for itemstring,_ in pairs(minetest.registered_items) do if itemstring ~= "" and itemstring ~= "unknown" and itemstring ~= "ignore" then table.insert(items, itemstring) end end --[[ Sort items in this order: * Chest of Everything * Test tools * Other tools * Craftitems * Other items * Dummy items ]] local function compare(item1, item2) local def1 = minetest.registered_items[item1] local def2 = minetest.registered_items[item2] local tool1 = def1.type == "tool" local tool2 = def2.type == "tool" local testtool1 = minetest.get_item_group(item1, "testtool") == 1 local testtool2 = minetest.get_item_group(item2, "testtool") == 1 local dummy1 = minetest.get_item_group(item1, "dummy") == 1 local dummy2 = minetest.get_item_group(item2, "dummy") == 1 local craftitem1 = def1.type == "craft" local craftitem2 = def2.type == "craft" if item1 == "chest_of_everything:chest" then return true elseif item2 == "chest_of_everything:chest" then return false elseif dummy1 and not dummy2 then return false elseif not dummy1 and dummy2 then return true elseif testtool1 and not testtool2 then return true elseif not testtool1 and testtool2 then return false elseif tool1 and not tool2 then return true elseif not tool1 and tool2 then return false elseif craftitem1 and not craftitem2 then return true elseif not craftitem1 and craftitem2 then return false else return item1 < item2 end end table.sort(items, compare) inv_everything:set_size("main", #items) max_page = math.ceil(#items / 32) for i=1, #items do inv_everything:add_item("main", items[i]) end end)