From 50b3d550ccf6bd36b3a92c76fc1ee93af10b58fa Mon Sep 17 00:00:00 2001 From: Bernat Brunet Date: Sat, 3 Jun 2023 11:37:30 +0200 Subject: [PATCH] Backport counrty module from v6.8. Is needed for the use of account_stock_eu module. --- country.diff | 12603 +++++++++++++++++++++++++++++++++++++++++++++++++ series | 2 + 2 files changed, 12605 insertions(+) create mode 100644 country.diff diff --git a/country.diff b/country.diff new file mode 100644 index 0000000..f26a863 --- /dev/null +++ b/country.diff @@ -0,0 +1,12603 @@ +diff --git a/tryton/modules/country/__init__.py b/tryton/modules/country/__init__.py +index 80dff9d0ce..dcc3549d5f 100644 +--- a/tryton/modules/country/__init__.py ++++ b/tryton/modules/country/__init__.py +@@ -8,6 +8,9 @@ def register(): + # Prevent to import backend when importing scripts + from . import country + Pool.register( ++ country.Organization, ++ country.OrganizationMember, ++ country.Region, + country.Country, + country.Subdivision, + country.PostalCode, +diff --git a/tryton/modules/country/country.py b/tryton/modules/country/country.py +index 735606d5a6..1d681b5184 100644 +--- a/tryton/modules/country/country.py ++++ b/tryton/modules/country/country.py +@@ -1,26 +1,173 @@ + # This file is part of Tryton. The COPYRIGHT file at the top level of + # this repository contains the full copyright notices and license terms. ++import datetime as dt ++ ++from sql import Literal ++from sql.conditionals import Coalesce ++ + from trytond import backend +-from trytond.model import DeactivableMixin, ModelSQL, ModelView, fields ++from trytond.model import DeactivableMixin, ModelSQL, ModelView, fields, tree + from trytond.pool import Pool +-from trytond.pyson import Eval +-from trytond.tools import lstrip_wildcard ++from trytond.pyson import Eval, If ++from trytond.tools import is_full_text, lstrip_wildcard + from trytond.transaction import Transaction + + ++class Organization(ModelSQL, ModelView): ++ "Organization" ++ __name__ = 'country.organization' ++ ++ name = fields.Char("Name", required=True, translate=True) ++ code = fields.Char("Code") ++ members = fields.One2Many( ++ 'country.organization.member', 'organization', "Members", ++ filter=[ ++ ('active', 'in', [True, False]), ++ ]) ++ countries = fields.Many2Many( ++ 'country.organization.member', 'organization', 'country', "Countries", ++ readonly=True) ++ ++ ++class OrganizationMember(ModelSQL, ModelView): ++ "Organization Member" ++ __name__ = 'country.organization.member' ++ ++ organization = fields.Many2One( ++ 'country.organization', "Organization", required=True) ++ country = fields.Many2One( ++ 'country.country', "Country", required=True) ++ from_date = fields.Date( ++ "From Date", ++ domain=[ ++ If(Eval('from_date') & Eval('to_date'), ++ ('from_date', '<=', Eval('to_date')), ++ ()), ++ ]) ++ to_date = fields.Date( ++ "To Date", ++ domain=[ ++ If(Eval('from_date') & Eval('to_date'), ++ ('to_date', '>=', Eval('from_date')), ++ ()), ++ ]) ++ active = fields.Function(fields.Boolean("Active"), 'on_change_with_active') ++ ++ @classmethod ++ def __setup__(cls): ++ super().__setup__() ++ cls._order.insert(0, ('country', None)) ++ cls._order.insert(1, ('from_date', 'ASC NULLS FIRST')) ++ cls.__access__.add('organization') ++ ++ @classmethod ++ def default_active(cls): ++ return True ++ ++ @fields.depends('from_date', 'to_date') ++ def on_change_with_active(self, name=None): ++ pool = Pool() ++ Date = pool.get('ir.date') ++ context = Transaction().context ++ date = context.get('date', Date.today()) ++ ++ from_date = self.from_date or dt.date.min ++ to_date = self.to_date or dt.date.max ++ return from_date <= date <= to_date ++ ++ @classmethod ++ def domain_active(cls, domain, tables): ++ pool = Pool() ++ Date = pool.get('ir.date') ++ context = Transaction().context ++ table, _ = tables[None] ++ _, operator, operand = domain ++ date = context.get('date', Date.today()) ++ ++ from_date = Coalesce(table.from_date, dt.date.min) ++ to_date = Coalesce(table.to_date, dt.date.max) ++ ++ expression = (from_date <= date) & (to_date >= date) ++ ++ if operator in {'=', '!='}: ++ if (operator == '=') != operand: ++ expression = ~expression ++ elif operator in {'in', 'not in'}: ++ if True in operand and False not in operand: ++ pass ++ elif False in operand and True not in operand: ++ expression = ~expression ++ else: ++ expression = Literal(True) ++ else: ++ expression = Literal(True) ++ return expression ++ ++ ++class Region(tree(), ModelSQL, ModelView): ++ "Region" ++ __name__ = 'country.region' ++ ++ name = fields.Char("Name", required=True, translate=True) ++ code_numeric = fields.Char( ++ "Numeric Code", size=3, ++ help="UN M49 region code.") ++ parent = fields.Many2One('country.region', "Parent") ++ subregions = fields.One2Many('country.region', 'parent', "Subregions") ++ countries = fields.One2Many( ++ 'country.country', 'region', "Countries", ++ add_remove=[ ++ ('region', '=', None), ++ ]) ++ ++ @classmethod ++ def __setup__(cls): ++ super().__setup__() ++ cls._order.insert(0, ('name', 'ASC')) ++ ++ @classmethod ++ def search_rec_name(cls, name, clause): ++ if clause[1].startswith('!') or clause[1].startswith('not '): ++ bool_op = 'AND' ++ else: ++ bool_op = 'OR' ++ code_value = clause[2] ++ if clause[1].endswith('like'): ++ code_value = lstrip_wildcard(clause[2]) ++ return [bool_op, ++ ('name',) + tuple(clause[1:]), ++ ('code_numeric', clause[1], code_value) + tuple(clause[3:]), ++ ] ++ ++ + class Country(DeactivableMixin, ModelSQL, ModelView): + 'Country' + __name__ = 'country.country' +- name = fields.Char('Name', required=True, translate=True, +- help="The main identifier of the country.", select=True) +- code = fields.Char('Code', size=2, select=True, +- help="The 2 chars ISO country code.") +- code3 = fields.Char('3-letters Code', size=3, select=True, ++ name = fields.Char( ++ "Name", required=True, translate=True, ++ help="The main identifier of the country.") ++ code = fields.Char( ++ "Code", size=2,select=True, ++ help="The 2 chars ISO country code.") ++ code3 = fields.Char( ++ "3-letters Code", size=3, select=True, + help="The 3 chars ISO country code.") +- code_numeric = fields.Char('Numeric Code', select=True, ++ code_numeric = fields.Char( ++ "Numeric Code", select=True, + help="The ISO numeric country code.") ++ flag = fields.Function(fields.Char("Flag"), 'on_change_with_flag') ++ region = fields.Many2One( ++ 'country.region', "Region", ondelete='SET NULL') + subdivisions = fields.One2Many('country.subdivision', + 'country', 'Subdivisions') ++ members = fields.One2Many( ++ 'country.organization.member', 'country', "Members", ++ filter=[ ++ ('active', 'in', [True, False]), ++ ]) ++ organizations = fields.Many2Many( ++ 'country.organization.member', 'country', 'organization', ++ "Organizations", readonly=True) + + @classmethod + def __setup__(cls): +@@ -36,35 +183,53 @@ class Country(DeactivableMixin, ModelSQL, ModelView): + + super(Country, cls).__register__(module_name) + +- table = cls.__table_handler__(module_name) +- +- # Migration from 3.4: drop unique constraints from name and code +- table.drop_constraint('name_uniq') +- table.drop_constraint('code_uniq') +- +- # Migration from 3.8: remove required on code +- table.not_null_action('code', 'remove') +- + # Migration from 5.2: remove country data + cursor.execute(*data.delete(where=(data.module == 'country') + & (data.model == cls.__name__))) + ++ @fields.depends('code') ++ def on_change_with_flag(self, name=None): ++ if self.code: ++ return ''.join(map(chr, map(lambda c: 127397 + ord(c), self.code))) ++ ++ def get_rec_name(self, name): ++ name = self.name ++ if self.flag: ++ name = ' '.join([self.flag, self.name]) ++ return name ++ + @classmethod + def search_rec_name(cls, name, clause): +- if clause[1].startswith('!') or clause[1].startswith('not '): ++ _, operator, operand, *extra = clause ++ if operator.startswith('!') or operator.startswith('not '): + bool_op = 'AND' + else: + bool_op = 'OR' +- code_value = clause[2] +- if clause[1].endswith('like'): +- code_value = lstrip_wildcard(clause[2]) ++ code_value = operand ++ if operator.endswith('like') and is_full_text(operand): ++ code_value = lstrip_wildcard(operand) + return [bool_op, +- ('name',) + tuple(clause[1:]), +- ('code', clause[1], code_value) + tuple(clause[3:]), +- ('code3', clause[1], code_value) + tuple(clause[3:]), +- ('code_numeric', clause[1], code_value) + tuple(clause[3:]), ++ ('name', operator, operand, *extra), ++ ('code', operator, code_value, *extra), ++ ('code3', operator, code_value, *extra), ++ ('code_numeric', operator, code_value, *extra), + ] + ++ def is_member(self, organization, date=None): ++ """Return if the country is in the organization at the date ++ organization can be an XML id""" ++ pool = Pool() ++ Date = pool.get('ir.date') ++ ModelData = pool.get('ir.model.data') ++ Organization = pool.get('country.organization') ++ if date is None: ++ date = Date.today() ++ if isinstance(organization, str): ++ organization = ModelData.get_id(organization) ++ with Transaction().set_context(date=date): ++ organization = Organization(organization) ++ return self in organization.countries ++ + @classmethod + def create(cls, vlist): + vlist = [x.copy() for x in vlist] +@@ -90,13 +255,16 @@ class Country(DeactivableMixin, ModelSQL, ModelView): + class Subdivision(DeactivableMixin, ModelSQL, ModelView): + "Subdivision" + __name__ = 'country.subdivision' +- country = fields.Many2One('country.country', 'Country', +- required=True, select=True, ++ country = fields.Many2One( ++ 'country.country', "Country", required=True, + help="The country where this subdivision is.") +- name = fields.Char('Name', required=True, select=True, translate=True, ++ name = fields.Char( ++ "Name", required=True, translate=True, + help="The main identifier of the subdivision.") +- code = fields.Char('Code', required=True, select=True, ++ code = fields.Char( ++ "Code", + help="The ISO code of the subdivision.") ++ flag = fields.Function(fields.Char("Flag"), 'on_change_with_flag') + type = fields.Selection([ + (None, ""), + ('administration', 'Administration'), +@@ -270,18 +438,29 @@ class Subdivision(DeactivableMixin, ModelSQL, ModelView): + # Migration from 6.2: remove type required + table_h.not_null_action('type', action='remove') + ++ # Migration from 6.4: remove required on code ++ table_h.not_null_action('code', action='remove') ++ ++ @fields.depends('code') ++ def on_change_with_flag(self, name=None): ++ if self.code: ++ return '🏴' + ''.join(map(chr, map( ++ lambda c: 917504 + ord(c), ++ self.code.replace('-', '').lower()))) + '\U000e007f' ++ + @classmethod + def search_rec_name(cls, name, clause): +- if clause[1].startswith('!') or clause[1].startswith('not '): ++ _, operator, operand, *extra = clause ++ if operator.startswith('!') or operator.startswith('not '): + bool_op = 'AND' + else: + bool_op = 'OR' +- code_value = clause[2] +- if clause[1].endswith('like'): +- code_value = lstrip_wildcard(clause[2]) ++ code_value = operand ++ if operator.endswith('like') and is_full_text(operand): ++ code_value = lstrip_wildcard(operand) + return [bool_op, +- ('name',) + tuple(clause[1:]), +- ('code', clause[1], code_value) + tuple(clause[3:]), ++ ('name', operator, operand, *extra), ++ ('code', operator, code_value, *extra), + ] + + @classmethod +@@ -307,11 +486,11 @@ class Subdivision(DeactivableMixin, ModelSQL, ModelView): + class PostalCode(ModelSQL, ModelView): + "Postal Code" + __name__ = 'country.postal_code' +- country = fields.Many2One('country.country', 'Country', required=True, +- select=True, ondelete='CASCADE', ++ country = fields.Many2One( ++ 'country.country', "Country", required=True, ondelete='CASCADE', + help="The country that contains the postal code.") +- subdivision = fields.Many2One('country.subdivision', 'Subdivision', +- select=True, ondelete='CASCADE', ++ subdivision = fields.Many2One( ++ 'country.subdivision', "Subdivision", ondelete='CASCADE', + domain=[('country', '=', Eval('country', -1))], + help="The subdivision where the postal code is.") + postal_code = fields.Char('Postal Code') +@@ -341,14 +520,15 @@ class PostalCode(ModelSQL, ModelView): + + @classmethod + def search_rec_name(cls, name, clause): +- if clause[1].startswith('!') or clause[1].startswith('not '): ++ _, operator, operand, *extra = clause ++ if operator.startswith('!') or operator.startswith('not '): + bool_op = 'AND' + else: + bool_op = 'OR' +- code_value = clause[2] +- if clause[1].endswith('like'): +- code_value = lstrip_wildcard(clause[2]) ++ code_value = operand ++ if operator.endswith('like') and is_full_text(operand): ++ code_value = lstrip_wildcard(operand) + return [bool_op, +- ('postal_code', clause[1], code_value) + tuple(clause[3:]), +- ('city',) + tuple(clause[1:]), ++ ('postal_code', operator, code_value, *extra), ++ ('city', operator, operand, *extra), + ] +diff --git a/tryton/modules/country/country.xml b/tryton/modules/country/country.xml +index b41f30de04..97b5906142 100644 +--- a/tryton/modules/country/country.xml ++++ b/tryton/modules/country/country.xml +@@ -8,6 +8,156 @@ this repository contains the full copyright notices and license terms. --> + icons/tryton-country.svg + + ++ ++ ++ ++ ++ ++ ++ ++ country.organization ++ form ++ organization_form ++ ++ ++ ++ country.organization ++ tree ++ organization_list ++ ++ ++ ++ Organizations ++ country.organization ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ country.organization.member ++ form ++ organization_member_form ++ ++ ++ ++ country.organization.member ++ tree ++ organization_member_list ++ ++ ++ ++ country.region ++ form ++ region_form ++ ++ ++ ++ country.region ++ tree ++ ++ region_list ++ ++ ++ ++ country.region ++ tree ++ ++ subregions ++ region_tree ++ ++ ++ ++ Areas ++ country.region ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ Regions ++ country.region ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + country.country + form +@@ -33,15 +183,39 @@ this repository contains the full copyright notices and license terms. --> + + + +- +- ++ sequence="10" ++ id="menu_country_form"/> ++ ++ ++ Countries by Region ++ country.country ++ ++ ++ ++ tree_open ++ country.region,-1 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + ++ ++ ++ ++ + + + +@@ -55,6 +229,22 @@ this repository contains the full copyright notices and license terms. --> + subdivision_tree + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + country.postal_code + form +@@ -87,5 +277,21 @@ this repository contains the full copyright notices and license terms. --> + country.country,-1 + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + +diff --git a/tryton/modules/country/locale/bg.po b/tryton/modules/country/locale/bg.po +index 88cc09ff9e..aad52baf27 100644 +--- a/tryton/modules/country/locale/bg.po ++++ b/tryton/modules/country/locale/bg.po +@@ -15,14 +15,72 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "Цифров код" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Име" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "Област" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "Подразделения" + ++#, fuzzy ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "Код" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Име" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Държава" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "Променено на" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.postal_code,city:" + msgid "City" +@@ -42,6 +100,31 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "Подразделение" + ++#, fuzzy ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "Цифров код" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Име" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Родител" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Southern Region" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "Код" +@@ -50,6 +133,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "Държава" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "Име" +@@ -90,6 +177,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "" + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "" +@@ -110,28 +201,320 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "Държава" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "Автономна общност" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "Автономна общност" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "Автономна общност" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "La Union" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "Southern Leyte" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "" + ++#, fuzzy ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "Област" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "Южна Африка" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "Американска Самоа" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Антарктика" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Нова Зеландия" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Line Islands" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Eastern Equatoria" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Eastern Cape" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Eastern Cape" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "Свети Винсент и Гренадин" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "Melaka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Misiones" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "Южна Африка" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "Южна Африка" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "Northern Samar" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "Northern Cape" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Chania" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Френска Полинезия" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "North-Western" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "Южна Африка" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "Южна Африка" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "Южна Африка" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "Западна Австралия" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "Западна Австралия" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "Western Cape" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "Подразделение" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Central Region" ++ + #, fuzzy + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "Област" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Област" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Countries" ++ + #, fuzzy + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "Област" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Област" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "Администрация" +diff --git a/tryton/modules/country/locale/ca.po b/tryton/modules/country/locale/ca.po +index 155f7bf7ec..7597d69805 100644 +--- a/tryton/modules/country/locale/ca.po ++++ b/tryton/modules/country/locale/ca.po +@@ -14,14 +14,66 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "Codi numèric" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "Bandera" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "Membres" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Nom" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "Organitzacions" ++ ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "Regió" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "Subdivisions" + ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "Codi" ++ ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Països" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "Membres" ++ ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Nom" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "Actiu" ++ ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "País" ++ ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "Des de la data" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "Organització" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "Fins a la data" ++ + msgctxt "field:country.postal_code,city:" + msgid "City" + msgstr "Ciutat" +@@ -38,6 +90,26 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "Subdivisió" + ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "Codi numèric" ++ ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Països" ++ ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Nom" ++ ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Pare" ++ ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Subregions" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "Codi" +@@ -46,6 +118,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "País" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "Bandera" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "Nom" +@@ -86,6 +162,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "La subdivisió on es troba el codi postal." + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "Codi regió UN M49." ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "El codi ISO de la subdivisió." +@@ -106,26 +186,278 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "País" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "Organització" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "Unió del Magreb Àrab" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "Cooperació econòmica Àsia/Pacífic" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "Asociació de Nacións de l'Àsia sudoriental" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "Unio del benelux" ++ ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "Comunidat Andina" ++ ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "Comunitat caribenya" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "Comunitat econòmica i monetària de l'Àfrica central" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "Comunitat d'estats del Sahel i el Sàhara" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "Mercat únic de l'Àfrica oriental i del sud" ++ ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "Comunitat de l'Àfrica del est" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "Comunitat econòmica del estats de l'Àfrica central" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "Comunitat econòmica dels estats de l'oest de l'Àfrica" ++ ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "Unió europea" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "Consell de cooperació dels estats àrabs del golf" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "Autoritat de desenvolupament Intergovernamental" ++ ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "Mercat comú del sur" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "Acord de comerç lliure de l'Amèrica del nord" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "Comunitat de desenvolupaent de l'Àfrica del sur" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "Àrea de mercat lliure del sud asiàtic" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "Membre de la organitzaió" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "Codi Postal" + ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "Regió" ++ ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "Àfrica" ++ ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "Amèrica" ++ ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Amèrica" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "Àsia" ++ ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Austràlia i Nova Zelanda" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "Carib" ++ ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Amèrica central" ++ ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Àsia central" ++ ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Illes del canal" ++ ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Àfrica oriental" ++ ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Àsica oriental" ++ ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Europa oriental" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "Europa" ++ ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "Amèrica llatina i el carib" ++ ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "Melanèsia" ++ ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Micronèsia" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "Africa cental" ++ ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "Amèrica del nort" ++ ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "África del nord" ++ ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "Amèrica del nord" ++ ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "Europa del nord" ++ ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Oceania" ++ ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Polinèsia" ++ ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "Sur-est asiàtic" ++ ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "Amèrica del sud" ++ ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "Sudàfrica" ++ ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Sudamèrica" ++ ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Europa del sud" ++ ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "Sudamèrica" ++ ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "Àfrica occidental" ++ ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "Àsia occidental" ++ ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "Europa occidental" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "Món" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "Subdivisió" + ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Països per regió" ++ + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Països" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "Organitzacions" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "Codis postals" + ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "Regions" ++ ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Àrea" ++ ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Països" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Països" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "Organitzacions" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "Regions" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Àrea" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "Administració" +diff --git a/tryton/modules/country/locale/cs.po b/tryton/modules/country/locale/cs.po +index 50b019b468..1d6d6c6562 100644 +--- a/tryton/modules/country/locale/cs.po ++++ b/tryton/modules/country/locale/cs.po +@@ -14,16 +14,71 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Namu" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "Ascension" + ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Namu" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Coventry" ++ ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + msgctxt "field:country.postal_code,city:" + msgid "City" + msgstr "" +@@ -42,6 +97,30 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "Ascension" + ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Namu" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Brent" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Southern Region" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "" +@@ -51,6 +130,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "Coventry" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.subdivision,name:" + msgid "Name" +@@ -92,6 +175,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "" + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "" +@@ -113,27 +200,313 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "Coventry" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "La Union" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "Southern Leyte" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "" + ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "Jihoafrická republika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "Americká Samoa" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Antarktida" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Nový Zéland" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Line Islands" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Eastern Equatoria" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Eastern Cape" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Eastern Cape" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "Svatý Vincenc a Grenadiny" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "Melaka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Misiones" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "Jihoafrická republika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "Jihoafrická republika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "Northern Samar" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "Northern Cape" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Chania" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Francouzská Polynésie" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "North-Western" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "Jihoafrická republika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "Jihoafrická republika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "Jihoafrická republika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "Western Australia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "Western Australia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "Western Cape" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + #, fuzzy + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "Ascension" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Central Region" ++ + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "" + ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Arta" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Countries" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Arta" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "" +diff --git a/tryton/modules/country/locale/de.po b/tryton/modules/country/locale/de.po +index 2711db4fc7..ce633efcb0 100644 +--- a/tryton/modules/country/locale/de.po ++++ b/tryton/modules/country/locale/de.po +@@ -14,13 +14,65 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "Numerischer Code" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "Flagge" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "Mitglieder" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Name" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "Organisationen" ++ ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "Region" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" +-msgstr "Regionen" ++msgstr "Verwaltungseinheiten" ++ ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "Code" ++ ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Länder" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "Mitglieder" ++ ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Name" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "Aktiv" ++ ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Land" ++ ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "Von Datum" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "Organisation" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "Bis Datum" + + msgctxt "field:country.postal_code,city:" + msgid "City" +@@ -36,7 +88,27 @@ msgstr "Postleitzahl" + + msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" +-msgstr "Region" ++msgstr "Verwaltungseinheit" ++ ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "Numerischer Code" ++ ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Länder" ++ ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Name" ++ ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Übergeordnet (Region)" ++ ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Teilregionen" + + msgctxt "field:country.subdivision,code:" + msgid "Code" +@@ -46,13 +118,17 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "Land" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "Flagge" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "Name" + + msgctxt "field:country.subdivision,parent:" + msgid "Parent" +-msgstr "Übergeordnet (Region)" ++msgstr "Übergeordnet (Verwaltungseinheit)" + + msgctxt "field:country.subdivision,type:" + msgid "Type" +@@ -84,48 +160,304 @@ msgstr "Das Land zu dem die Postleitzahl gehört." + + msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." +-msgstr "Die Region zu der die Postleitzahl gehört." ++msgstr "Die Verwaltungseinheit zu der die Postleitzahl gehört." ++ ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "M49 Regionalcode der Vereinten Nationen." + + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." +-msgstr "Der ISO-Code der Region." ++msgstr "Der ISO-Code der Verwaltungseinheit." + + msgctxt "help:country.subdivision,country:" + msgid "The country where this subdivision is." +-msgstr "Das Land in dem sich die Region befindet." ++msgstr "Das Land zu dem die Verwaltungseinheit gehört." + + msgctxt "help:country.subdivision,name:" + msgid "The main identifier of the subdivision." +-msgstr "Das Hauptidentifizierungsmerkmal der Region." ++msgstr "Das Hauptidentifizierungsmerkmal der Verwaltungseinheit." + + msgctxt "help:country.subdivision,parent:" + msgid "Add subdivision below the parent." +-msgstr "Regionen hinzufügen." ++msgstr "Verwaltungseinheit hinzufügen." + + msgctxt "model:country.country,name:" + msgid "Country" + msgstr "Land" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "Organisation" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "Union des Arabischen Maghreb" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "Asiatisch-Pazifische Wirtschaftsgemeinschaft" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "Verband Südostasiatischer Nationen (ASEAN)" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "Benelux" ++ ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "Andengemeinschaft" ++ ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "Karibische Gemeinschaft" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "Zentralafrikanische Wirtschaftsgemeinschaft (CEEAC/ECCAS)" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "Gemeinschaft der Staaten des Sahel und der Sahara (CEN-SAD)" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "Gemeinsamer Markt für das Östliche und Südliche Afrika (COMESA)" ++ ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "Ostafrikanische Gemeinschaft" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "Zentralafrikanische Wirtschaftsgemeinschaft (CEEAC/ECCAS)" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "Westafrikanische Wirtschaftsgemeinschaft (CEDEAO/ECOWAS/CEDEAO)" ++ ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "Europäische Union" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "Golf-Kooperationsrat (GKR/GCC/CCASG)" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "Intergovernmental Authority on Development (IGAD)" ++ ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "Gemeinsamer Markt des Südens (Mercosur)" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "Nordamerikanisches Freihandelsabkommen (NAFTA/ALÉNA/TLCAN)" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "Entwicklungsgemeinschaft des südlichen Afrika (SADC)" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "South Asian Free Trade Area (SAFTA)" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "Organisationsmitglied" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "Postleitzahl" + ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "Region" ++ ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "Afrika" ++ ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "Amerika" ++ ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Antarktis" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "Asien" ++ ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Australien und Neuseeland" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "Karibik" ++ ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Zentralamerika" ++ ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Zentralasien" ++ ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Kanalinseln" ++ ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Ostafrika" ++ ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Ostasien" ++ ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Osteuropa" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "Europa" ++ ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "Lateinamerika und die Karibik (LAC)" ++ ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "Melanesien" ++ ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Mikronesien" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "Mittelafrika" ++ ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "Nordamerika" ++ ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "Nordafrika" ++ ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "Nordamerika" ++ ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "Nordeuropa" ++ ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Ozeanien" ++ ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Polynesien" ++ ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "Südostasien" ++ ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "Südamerika" ++ ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "Südafrika" ++ ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Südasien" ++ ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Südeuropa" ++ ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "Subsahara-Afrika" ++ ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "Westafrika" ++ ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "Westasien" ++ ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "Westeuropa" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "Welt" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" +-msgstr "Region" ++msgstr "Verwaltungseinheit" ++ ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Länder nach Region" + + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Länder" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "Organisationen" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "Postleitzahl" + ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "Regionen" ++ ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Gebiet" ++ ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Länder" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Länder" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "Organisationen" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "Regionen" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Gebiete" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "Verwaltung" +diff --git a/tryton/modules/country/locale/es.po b/tryton/modules/country/locale/es.po +index f7c8e81b67..5b281d6338 100644 +--- a/tryton/modules/country/locale/es.po ++++ b/tryton/modules/country/locale/es.po +@@ -14,14 +14,66 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "Código numérico" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "Bandera" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "Miembros" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Nombre" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "Organizaciones" ++ ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "Región" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "Subdivisiones" + ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "Código" ++ ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Países" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "Miembros" ++ ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Nombre" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "Activo" ++ ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "País" ++ ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "Desde la fecha" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "Organización" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "Hasta la fecha" ++ + msgctxt "field:country.postal_code,city:" + msgid "City" + msgstr "Ciudad" +@@ -38,6 +90,26 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "Subdivisión" + ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "Código numérico" ++ ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Países" ++ ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Nombre" ++ ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Padre" ++ ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Subregiones" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "Código" +@@ -46,6 +118,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "País" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "Bandera" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "Nombre" +@@ -86,6 +162,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "La subdivisión dónde se encuentra el código postal." + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "Código región UN M49." ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "El código ISO de la subdivisión." +@@ -106,26 +186,278 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "País" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "Organización" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "Unión del Magreb Árabe" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "Cooperación Económica Asia/Pacífico" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "Asociación de Naciones de Asia Sudoriental" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "Union del benelux" ++ ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "Comunidad Andina" ++ ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "Comunidad caribeña" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "Comunidad económica y monetaria del África central" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "Comunidad de Estados del Sahel y el Sahara" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "Mercado único del África Oriental y del Sur" ++ ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "Comunidad del Africa del Este" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "Comunidad económica de los estados del África central" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "Comunidad económica de los estados del África del oeste" ++ ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "Union europea" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "Consejo de cooperación de los estados árabes del golfo" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "Autoridad del desarrollo Intergovernamental" ++ ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "Mercado común del sur" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "Acuerdo de comercio libre de América del norte" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "Comunidad de desarrollo del África del sur" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "Área de mercado libre del sur asiático" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "Miembro de la organización" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "Código postal" + ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "Región" ++ ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "África" ++ ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "América" ++ ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Antártida" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "Asia" ++ ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Australia y Nueva Zelanda" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "Caribe" ++ ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "América central" ++ ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Asia central" ++ ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Islas del Canal" ++ ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "África oriental" ++ ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Asia oriental" ++ ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Europa oriental" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "Europa" ++ ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "America latina y el caribe" ++ ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "Melanesia" ++ ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Micronesia" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "Africa central" ++ ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "América del norte" ++ ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "África del norte" ++ ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "América del norte" ++ ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "Europa del norte" ++ ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Oceanía" ++ ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Polinesia" ++ ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "Sur-este asiático" ++ ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "América del sur" ++ ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "Suráfrica" ++ ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Sudamérica" ++ ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Europa del sur" ++ ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "África subsahariana" ++ ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "África Occidental" ++ ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "Asia Occidental" ++ ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "Europa Occidental" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "Mundo" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "Subdivisión" + ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Países por región" ++ + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Países" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "Organizaciones" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "Códigos postales" + ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "Regiones" ++ ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Área" ++ ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Países" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Países" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "Organizaciones" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "Región" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Área" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "Administración" +diff --git a/tryton/modules/country/locale/es_419.po b/tryton/modules/country/locale/es_419.po +index 531ca91015..bf393f59b8 100644 +--- a/tryton/modules/country/locale/es_419.po ++++ b/tryton/modules/country/locale/es_419.po +@@ -14,15 +14,70 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Namu" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "" + ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Municipio" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Namu" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Municipio" ++ ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + msgctxt "field:country.postal_code,city:" + msgid "City" + msgstr "" +@@ -40,6 +95,30 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "" + ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Municipio" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Namu" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Brent" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Southern Region" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "" +@@ -49,6 +128,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "Municipio" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.subdivision,name:" + msgid "Name" +@@ -90,6 +173,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "" + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "" +@@ -111,26 +198,312 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "Municipio" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "La Union" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "Southern Leyte" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "" + ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "Suráfrica" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "Samoa Americana" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Antártida" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Nueva Zelanda" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Line Islands" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Eastern Equatoria" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Eastern Cape" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Eastern Cape" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "San Vicente y las Granadinas" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "Melaka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Misiones" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "Suráfrica" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "Suráfrica" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "Northern Samar" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "Northern Cape" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Chania" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Polinesia Francesa" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "North-Western" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "Suráfrica" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "Suráfrica" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "Suráfrica" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "Western Australia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "Western Australia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "Western Cape" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Central Region" ++ + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "" + ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Arta" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Municipio" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Arta" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "" +diff --git a/tryton/modules/country/locale/et.po b/tryton/modules/country/locale/et.po +index 54bedb6f7f..9f08a704b0 100644 +--- a/tryton/modules/country/locale/et.po ++++ b/tryton/modules/country/locale/et.po +@@ -14,14 +14,73 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "Numbriline kood" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Nimetus" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "Regioon" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "Alamjaotus" + ++#, fuzzy ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "Kood" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Nimetus" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "Aktiivne" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Riik" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "Muutmise kuupäev" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.postal_code,city:" + msgid "City" +@@ -41,6 +100,31 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "Alamjaotus" + ++#, fuzzy ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "Numbriline kood" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Nimetus" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Ülem" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Southern Region" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "Kood" +@@ -49,6 +133,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "Riik" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "Nimetus" +@@ -90,6 +178,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "Alamjaotus, kus asub postiindeks." + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "Alamjaotuse ISO kood." +@@ -110,26 +202,318 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "Riik" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "Autonoomne kogukond" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "Autonoomne kogukond" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "Autonoomne kogukond" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "La Union" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "Southern Leyte" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "" + ++#, fuzzy ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "Regioon" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "Lõuna-Aafrika Vabariik" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "Ameerika Samoa" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Antarktis" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Uus-Meremaa" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Kaimanisaared" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Eastern Equatoria" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Eastern Cape" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Eastern Cape" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "Saint Vincent ja Grenadiinid" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "Melaka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Misiones" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "Lõuna-Aafrika Vabariik" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "Lõuna-Aafrika Vabariik" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "Northern Samar" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "Northern Cape" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Chania" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Prantsuse Polüneesia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "North-Western" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "Lõuna-Aafrika Vabariik" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "Lõuna-Aafrika Vabariik" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "Lõuna-Aafrika Vabariik" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "Western Australia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "Western Australia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "Western Cape" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "Alamjaotus" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Central Region" ++ + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "Regioon" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Piirkond" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Countries" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "Regioon" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Piirkond" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "Administration" +diff --git a/tryton/modules/country/locale/fa.po b/tryton/modules/country/locale/fa.po +index 9646486d7e..53b93b5636 100644 +--- a/tryton/modules/country/locale/fa.po ++++ b/tryton/modules/country/locale/fa.po +@@ -14,14 +14,73 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "کد عددی" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "نام" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "منطقه" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "تقسیمات کشوری" + ++#, fuzzy ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "کد" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "کشورها" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "نام" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "فعال" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "کشور" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "تاریخ نوشته" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.postal_code,city:" + msgid "City" +@@ -41,6 +100,31 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "زیربخش" + ++#, fuzzy ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "کد عددی" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "کشورها" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "نام" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "منبع" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "منطقه جنوبی" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "کد" +@@ -49,6 +133,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "کشور" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "نام" +@@ -90,6 +178,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "زیربخش مربوطه به این کد پستی." + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "کد ایزو زیربخش." +@@ -110,26 +202,318 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "کشور" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "اجتماع مستقل" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "اجتماع مستقل" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "اجتماع مستقل" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "لائونیون" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "جنوب لی ته" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "" + ++#, fuzzy ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "منطقه" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "آفریقای جنوبی" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "ساموآی آمریکایی" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "جنوبگان" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "نیوزیلند" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "آباکو مرکزی" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "آباکو مرکزی" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "جزایر کِیمن" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "شرق اکواتوریا" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "کیپ شرقی" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "کیپ شرقی" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "سن وینسنت و گرنادین" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "مالاكا" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "میسیونز" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "آفریقای جنوبی" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "آفریقای جنوبی" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "صحرای شمالی" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "کیپ شمالی" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "خانیا" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "پلی‌نزی فرانسه" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "شمال- غرب" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "آفریقای جنوبی" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "آفریقای جنوبی" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "‌جنوبی" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "‌جنوبی" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "آفریقای جنوبی" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "استرالیای غربی" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "استرالیای غربی" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "کیپ غربی" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "تقسیمات" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "منطقۀ مرکزی" ++ + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "کشورها" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "منطقه" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "ناحیه" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "کشورها" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "کشورها" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "منطقه" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "ناحیه" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "مدیریت" +diff --git a/tryton/modules/country/locale/fi.po b/tryton/modules/country/locale/fi.po +index a107dad751..93975ce332 100644 +--- a/tryton/modules/country/locale/fi.po ++++ b/tryton/modules/country/locale/fi.po +@@ -14,15 +14,70 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Namu" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "" + ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Namu" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Coventry" ++ ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + msgctxt "field:country.postal_code,city:" + msgid "City" + msgstr "" +@@ -40,6 +95,30 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "" + ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Namu" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Brent" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Southern Region" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "" +@@ -49,6 +128,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "Coventry" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.subdivision,name:" + msgid "Name" +@@ -90,6 +173,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "" + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "" +@@ -111,26 +198,312 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "Coventry" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "La Union" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "Southern Leyte" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "" + ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "Etelä-Afrikka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "Amerikan Samoa" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Antarktis" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Uusi-Seelanti" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Line Islands" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Eastern Equatoria" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Eastern Cape" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Eastern Cape" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "Saint Vincent ja Grenadiinit" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "Melaka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Misiones" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "Etelä-Afrikka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "Etelä-Afrikka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "Northern Samar" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "Northern Cape" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Chania" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Ranskan Polynesia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "North-Western" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "Etelä-Afrikka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "Etelä-Afrikka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "Etelä-Afrikka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "Western Australia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "Western Australia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "Western Cape" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Central Region" ++ + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "" + ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Arta" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Countries" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Arta" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "" +diff --git a/tryton/modules/country/locale/fr.po b/tryton/modules/country/locale/fr.po +index 2c66303b24..1606599a18 100644 +--- a/tryton/modules/country/locale/fr.po ++++ b/tryton/modules/country/locale/fr.po +@@ -14,14 +14,66 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "Code numérique" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "Drapeau" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "Membres" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Nom" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "Organisations" ++ ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "Région" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "Subdivisions" + ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "Code" ++ ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Pays" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "Membres" ++ ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Nom" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "Actif" ++ ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Pays" ++ ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "Date de début" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "Organisation" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "Date de fin" ++ + msgctxt "field:country.postal_code,city:" + msgid "City" + msgstr "Ville" +@@ -38,6 +90,26 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "Subdivision" + ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "Code numérique" ++ ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Pays" ++ ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Nom" ++ ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Parent" ++ ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Sous-régions" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "Code" +@@ -46,6 +118,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "Pays" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "Drapeau" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "Nom" +@@ -86,6 +162,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "La subdivision où se trouve le code postal." + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "Code de région UN M49." ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "Le code ISO de la subdivision." +@@ -106,26 +186,278 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "Pays" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "Organisation" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "Union du Maghreb arabe" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "Coopération économique Asie-Pacifique" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "Association des Nations de l'Asie du Sud-Est" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "Union Benelux" ++ ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "Communauté andine" ++ ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "Communauté des Caraïbes" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "Communauté économique et monétaire de l'Afrique centrale" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "Communauté des États sahélo-sahariens" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "Marché commun de l'Afrique orientale et australe" ++ ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "Communauté d'Afrique de l'Est" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "Communauté économique des États de l'Afrique centrale" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "Communauté économique des États de l'Afrique de l'Ouest" ++ ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "Union européenne" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "Conseil de coopération des États arabes du Golfe" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "Autorité intergouvernementale pour le développement" ++ ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "Marché commun du Sud" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "Accord de libre échange Nord-Americain" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "Communauté de développement de l'Afrique australe" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "Zone de libre-échange sud-asiatique" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "Membre de l'organisation" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "Code postal" + ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "Région" ++ ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "Afrique" ++ ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "Amériques" ++ ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Antarctique" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "Asie" ++ ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Australie et Nouvelle-Zélande" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "Caraïbes" ++ ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Amérique centrale" ++ ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Asie centrale" ++ ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Îles anglo-normandes" ++ ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Afrique de l'Est" ++ ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Asie de l'Est" ++ ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Europe de l'Est" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "Europe" ++ ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "Amérique latine et Caraïbes" ++ ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "Mélanésie" ++ ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Micronésie" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "Afrique centrale" ++ ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "Amérique du Nord" ++ ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "Afrique du Nord" ++ ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "Amérique du Nord" ++ ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "Europe du Nord" ++ ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Océanie" ++ ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Polynésie" ++ ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "Asie du Sud-Est" ++ ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "Amérique du Sud" ++ ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "Afrique du sud" ++ ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Asie du Sud" ++ ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Europe du Sud" ++ ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "Afrique sub-saharienne" ++ ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "Afrique de l'Ouest" ++ ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "Asie de l'Ouest" ++ ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "Europe de l'Ouest" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "Monde" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "Subdivision" + ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Pays par région" ++ + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Pays" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "Organisations" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "Codes postaux" + ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "Régions" ++ ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Zones" ++ ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Pays" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Pays" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "Organisations" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "Régions" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Zones" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "Administration" +diff --git a/tryton/modules/country/locale/hu.po b/tryton/modules/country/locale/hu.po +index 3a1ed38c44..c38cb5dce8 100644 +--- a/tryton/modules/country/locale/hu.po ++++ b/tryton/modules/country/locale/hu.po +@@ -14,14 +14,72 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "Numerikus kód" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Név" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "Régió" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "Közigazgatási egységek" + ++#, fuzzy ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "Kód" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Országok" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Név" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Ország" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "Utolsó módosítás" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.postal_code,city:" + msgid "City" +@@ -41,6 +99,31 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "Szubnacionális egység" + ++#, fuzzy ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "Numerikus kód" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Országok" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Név" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Fölérendelt" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Southern Region" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "Kód" +@@ -49,6 +132,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "Ország" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "Név" +@@ -89,6 +176,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "" + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "" +@@ -109,26 +200,318 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "Ország" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "Autonóm község" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "Autonóm község" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "Autonóm község" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "La Union" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "Southern Leyte" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "" + ++#, fuzzy ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "Régió" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "Dél-Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "Amerikai Szamoa" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Antarktisz" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Új-Zéland" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Kajmán-szigetek" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Eastern Equatoria" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Eastern Cape" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Eastern Cape" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "Saint Vincent és a Grenadines-szigetek" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "Melaka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Misiones" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "Dél-Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "Dél-Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "Északi Szamara" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "Northern Cape" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Chania" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Francia Polinézia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "Északnyugati" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "Dél-Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "Dél-Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "Dél-Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "Nyugat-Ausztrália" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "Nyugat-Ausztrália" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "Western Cape" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "Közigazgatási egység" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Central Region" ++ + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Országok" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "Régió" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Terület" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Országok" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Országok" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "Régió" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Terület" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "Adminisztráció" +diff --git a/tryton/modules/country/locale/id.po b/tryton/modules/country/locale/id.po +index cc49cdb3aa..c9f94575b5 100644 +--- a/tryton/modules/country/locale/id.po ++++ b/tryton/modules/country/locale/id.po +@@ -14,14 +14,72 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "Kode Angka" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Nama" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "" + ++#, fuzzy ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "Kode" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Negara" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Nama" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "Aktif" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Negara" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "Tanggal Penulisan" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.postal_code,city:" + msgid "City" +@@ -40,6 +98,30 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "" + ++#, fuzzy ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "Kode Angka" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Negara" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Nama" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Induk" ++ ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "Kode" +@@ -48,6 +130,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "Negara" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "Nama" +@@ -88,6 +174,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "" + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "" +@@ -108,26 +198,279 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "Negara" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "" + ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "" + ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "" + ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "" ++ ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Negara" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "Administrasi" +diff --git a/tryton/modules/country/locale/it.po b/tryton/modules/country/locale/it.po +index da89a18cc7..37d70ca83a 100644 +--- a/tryton/modules/country/locale/it.po ++++ b/tryton/modules/country/locale/it.po +@@ -14,15 +14,72 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "Codice numerico" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Nome" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "Divisione" + ++#, fuzzy ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "Codice" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Nome" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "Attivo" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Paese" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "Data di Scrittura" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.postal_code,city:" + msgid "City" +@@ -42,6 +99,31 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "Divisione" + ++#, fuzzy ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "Codice numerico" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Nome" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Padre" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Southern Region" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "Codice" +@@ -50,6 +132,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "Paese" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "Nome" +@@ -90,6 +176,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "" + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "" +@@ -110,29 +200,315 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "Paese" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "La Union" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "Leyte meridionale" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "" + ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "Sud Africa" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "Samoa americane" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Antartide" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Nuova Zelanda" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Abaco centrale" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Abaco centrale" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Isole Line" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Equatoria orientale" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Capo orientale" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Capo orientale" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "Saint Vincent e Grenadine" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "Melaka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Misiones" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "Sud Africa" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "Sud Africa" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "Samar settentrionale" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "Capo settentrionale" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Chania" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Polinesia francese" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "Nord-Occidentale" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "Sud Africa" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "Sud Africa" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Meridionale (Botswana)" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Meridionale (Botswana)" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "Sud Africa" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "Australia Occidentale" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "Australia Occidentale" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "Capo orientale" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + #, fuzzy + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "Divisione" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Central Region" ++ + #, fuzzy + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "" + ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Arta" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Countries" ++ + #, fuzzy + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Arta" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "Amministrazione" +diff --git a/tryton/modules/country/locale/lo.po b/tryton/modules/country/locale/lo.po +index e7aca014c4..cda56b6e10 100644 +--- a/tryton/modules/country/locale/lo.po ++++ b/tryton/modules/country/locale/lo.po +@@ -14,14 +14,72 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "ລະຫັດໂຕເລກ" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "ຊື່" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "ພາກ" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "ແຂວງ" + ++#, fuzzy ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "ລະຫັດປະເທດ" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "ຊື່" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "ປະເທດ" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "ວັນທີບັນທຶກ" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.postal_code,city:" + msgid "City" +@@ -41,6 +99,31 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "ແຂວງ" + ++#, fuzzy ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "ລະຫັດໂຕເລກ" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "ຊື່" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "ຂຶ້ນກັບ" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "ແຂວງ" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "ລະຫັດແຂວງ" +@@ -49,6 +132,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "ປະເທດ" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "ຊື່" +@@ -89,6 +176,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "" + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "" +@@ -109,28 +200,313 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "ປະເທດ" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "ເຂດຊຸມຊົນເອກະລາດ" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "ເຂດຊຸມຊົນເອກະລາດ" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "ເຂດຊຸມຊົນເອກະລາດ" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "" + ++#, fuzzy ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "ພາກ" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "ອາຟຣິກກາໃຕ້" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "ຊາມົວ ອະເມຣິກາ" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "ອັງຕາກຕິກ" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "ນີວຊີແລນ" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "ສາທາລະນະລັດ ອາຟຣິກາ ກາງ" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "ສາທາລະນະລັດ ອາຟຣິກາ ກາງ" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "ຟາໂຣ ອີສລັງ" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "ຊາຮາຣາຕາເວັນຕົກ" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "ຊາຮາຣາຕາເວັນຕົກ" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "ຊາຮາຣາຕາເວັນຕົກ" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "ແຊັງແວັງຊັງ ແລະ ເກຣີນາດດິນ" ++ ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "ອິນໂດເນເຊັຍ" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "ອາຟຣິກກາໃຕ້" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "ອາຟຣິກກາໃຕ້" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "ອາຟຣິກກາໃຕ້" ++ ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "ໂປລີເນຊີ ຝຣັ່ງ" ++ ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "ອາຟຣິກກາໃຕ້" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "ອາຟຣິກກາໃຕ້" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "ອາຟຣິກກາໃຕ້" ++ ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "ອາຟຣິກກາໃຕ້" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "ຊາຮາຣາຕາເວັນຕົກ" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "ຊາຮາຣາຕາເວັນຕົກ" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "ຊາຮາຣາຕາເວັນຕົກ" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "ແຂວງ" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Countries" ++ + #, fuzzy + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "ພາກ" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "ເຂດ" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Countries" ++ + #, fuzzy + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "ພາກ" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "ເຂດ" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "ເຂດການປົກຄອງ" +diff --git a/tryton/modules/country/locale/lt.po b/tryton/modules/country/locale/lt.po +index 6a570667c2..12d8f288fa 100644 +--- a/tryton/modules/country/locale/lt.po ++++ b/tryton/modules/country/locale/lt.po +@@ -14,14 +14,73 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "Skaitmenų kodas" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Pavadinimas" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "Regionas" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "Regionas" + ++#, fuzzy ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "Kodas" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Šalys" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Pavadinimas" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "Veiksni" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Šalis" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "Pakeitimo data" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.postal_code,city:" + msgid "City" +@@ -41,6 +100,31 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "Regionas" + ++#, fuzzy ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "Skaitmenų kodas" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Šalys" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Pavadinimas" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Motininė" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Southern Region" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "Kodas" +@@ -49,6 +133,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "Šalis" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "Pavadinimas" +@@ -89,6 +177,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "" + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "Regiono ISO kodas." +@@ -109,26 +201,318 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "Šalis" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "Autonominė savivalda" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "Autonominė savivalda" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "Autonominė savivalda" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "La Union" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "Southern Leyte" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "" + ++#, fuzzy ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "Regionas" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "Pietų Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "Amerikos Samoa" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Antarktida" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Naujoji Zelandija" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Kaimanų salos" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Eastern Equatoria" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Rytų Kapas" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Rytų Kapas" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "Sent Vinsentas ir Grenadinai" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "Malaka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Misionesas" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "Pietų Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "Pietų Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "Northern Samar" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "Šiaurės Kapas" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Chania" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Prancūzijos Polinezija" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "North-Western" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "Pietų Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "Pietų Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "Pietų Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "Vakarų Australija" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "Vakarų Australija" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "Vakarų Kapas" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "Regionas" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Central Region" ++ + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Šalys" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "Regionas" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Sritis" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Šalys" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Šalys" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "Regionas" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Sritis" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "Valdymas" +diff --git a/tryton/modules/country/locale/nl.po b/tryton/modules/country/locale/nl.po +index 9af7f41f43..e184ac4f1a 100644 +--- a/tryton/modules/country/locale/nl.po ++++ b/tryton/modules/country/locale/nl.po +@@ -14,14 +14,66 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "Numerieke code" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "Vlag" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "Leden" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Naam" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "Organisaties" ++ ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "Regio" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "Indelingen" + ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "Code" ++ ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Landen" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "Leden" ++ ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Naam" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "Actief" ++ ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Land" ++ ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "Vanaf datum" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "Organisatie" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "Tot datum" ++ + msgctxt "field:country.postal_code,city:" + msgid "City" + msgstr "Stad" +@@ -38,6 +90,26 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "Nationale indeling" + ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "Numerieke code" ++ ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Landen" ++ ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Naam" ++ ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Bovenliggend" ++ ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Deelgebieden" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "Code" +@@ -46,6 +118,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "Land" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "Vlag" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "Naam" +@@ -86,6 +162,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "De regio waar de postcode is." + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "UN M49 regio code." ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "ISO-code van de regio." +@@ -106,26 +186,278 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "Land" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "Organisatie" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "Arabische Maghreb Unie" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "Economische samenwerking in Azië en de Stille Oceaan" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "Associatie van Zuidoost-Aziatische Landen" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "Benelux Unie" ++ ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "Andesgemeenschap" ++ ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "Caribische Gemeenschap" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "Economische en Monetaire Gemeenschap van Centraal-Afrika" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "Gemeenschap van Sahel-Sahara-staten" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "Gemeenschappelijke markt voor oostelijk en zuidelijk Afrika" ++ ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "Oost-Afrikaanse Gemeenschap" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "Economische Gemeenschap van Centraal-Afrikaanse Staten" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "Economische Gemeenschap van West-Afrikaanse Staten" ++ ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "Europese Unie" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "Samenwerkingsraad voor de Arabische Staten van de Golf" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "Intergouvernementele autoriteit voor ontwikkeling" ++ ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "Zuidelijke Gemeenschappelijke Markt" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "Noord-Amerikaanse Vrijhandelsovereenkomst" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "Zuid-Afrikaanse ontwikkelingsgemeenschap" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "Zuid-Aziatische vrijhandelszone" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "Organisatielid" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "Postcode" + ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "Regio" ++ ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "Afrika" ++ ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "Amerika" ++ ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Antarctica" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "Azië" ++ ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Australië en Nieuw-Zeeland" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "Caraïben" ++ ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Centraal Amerika" ++ ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Centraal-Azië" ++ ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Kanaal eilanden" ++ ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Oost-Afrika" ++ ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Oost Azië" ++ ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Oost-Europa" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "Europa" ++ ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "Latijns-Amerika en het Caribisch gebied" ++ ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "Melanesië" ++ ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Micronesië" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "Midden-Afrika" ++ ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "Noord Amerika" ++ ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "Noord-Afrika" ++ ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "Noord Amerika" ++ ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "Noord-Europa" ++ ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Oceanië" ++ ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Polynesië" ++ ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "Zuidoost-Azië" ++ ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "Zuid-Amerika" ++ ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "Zuid-Afrika" ++ ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Zuid-Azië" ++ ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Zuid-Europa" ++ ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "Sub-Sahara Afrika" ++ ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "West-Afrika" ++ ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "West-Azië" ++ ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "West-Europa" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "Wereld" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "Regio" + ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Landen per regio" ++ + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Landen" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "Organisaties" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "Postcodes" + ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "Regio's" ++ ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Gebieden" ++ ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Landen" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Landen" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "Organisaties" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "Regio's" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Gebieden" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "Administratie" +diff --git a/tryton/modules/country/locale/pl.po b/tryton/modules/country/locale/pl.po +index 508456afd0..5a5ee80855 100644 +--- a/tryton/modules/country/locale/pl.po ++++ b/tryton/modules/country/locale/pl.po +@@ -14,14 +14,72 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "Kod numeryczny" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Nazwa" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "Region" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "Jednostki podrzędne" + ++#, fuzzy ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "Kod" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Kraje" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Nazwa" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Kraj" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "Data zapisu" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + msgctxt "field:country.postal_code,city:" + msgid "City" + msgstr "Miejscowość" +@@ -38,6 +96,31 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "Jednostka podrzędna" + ++#, fuzzy ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "Kod numeryczny" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Kraje" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Nazwa" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Jednostka nadrzędna" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Region Południe" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "Kod" +@@ -46,6 +129,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "Kraj" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "Nazwa" +@@ -86,6 +173,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "Jednostka podrzędna, w której występuje kod pocztowy." + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "Kod ISO jednostki podrzędnej." +@@ -106,26 +197,318 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "Kraj" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "Wspólnota autonomiczna" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "Wspólnota autonomiczna" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "Wspólnota autonomiczna" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "La Union" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "Southern Leyte" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "Kod pocztowy" + ++#, fuzzy ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "Region" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "Republika Południowej Afryki" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "Samoa Amerykańskie" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Antarktyka" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Nowa Zelandia" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Kajmany" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Ekwatoria Wschodnia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Prowincja Przylądkowa Wschodnia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Prowincja Przylądkowa Wschodnia" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "Saint Vincent i Grenadyny" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "Malakka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Misiones" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "Republika Południowej Afryki" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "Republika Południowej Afryki" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "Northern Samar" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "Prowincja Przylądkowa Północna" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Chania" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Polinezja Francuska" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "Prowincja Północno-Zachodnia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "Republika Południowej Afryki" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "Republika Południowej Afryki" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Południowy" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Południowy" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "Republika Południowej Afryki" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "Australia Zachodnia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "Australia Zachodnia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "Prowincja Przylądkowa Zachodnia" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "Jednostka podrzędna" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Region Centrum" ++ + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Kraje" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "Kody pocztowe" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "Region" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Obszar" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Kraje" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Kraje" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "Region" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Obszar" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "Administracja" +diff --git a/tryton/modules/country/locale/pt.po b/tryton/modules/country/locale/pt.po +index c1ce55adeb..292d906c76 100644 +--- a/tryton/modules/country/locale/pt.po ++++ b/tryton/modules/country/locale/pt.po +@@ -14,14 +14,73 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "Código numérico" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Nome" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "Region" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "Subdivisões" + ++#, fuzzy ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "Código" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Países" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Nome" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "Ativo" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "País" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "Data de Edição" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.postal_code,city:" + msgid "City" +@@ -41,6 +100,31 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "Subdivisão" + ++#, fuzzy ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "Código numérico" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Países" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Nome" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Pai" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Southern Region" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "Código" +@@ -49,6 +133,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "País" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "Nome" +@@ -90,6 +178,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "A subdivisão em que o código postal (CEP) está." + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "O código ISO da subdivisão." +@@ -110,26 +202,318 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "País" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "Autonomous community" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "Autonomous community" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "Autonomous community" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "La Union" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "Southern Leyte" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "" + ++#, fuzzy ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "Region" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "África do Sul" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "Samoa Americana" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Antárctida" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Nova Zelândia" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Ilhas Caimão" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Eastern Equatoria" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Eastern Cape" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Eastern Cape" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "São Vicente e Grenadinas" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "Melaka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Misiones" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "África do Sul" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "África do Sul" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "Northern Samar" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "Northern Cape" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Chania" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Polinésia Francesa" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "North-Western" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "África do Sul" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "África do Sul" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "África do Sul" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "Western Australia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "Western Australia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "Western Cape" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "Subdivisão" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Central Region" ++ + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Países" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "Region" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Area" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Países" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "Region" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Area" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "Administration" +diff --git a/tryton/modules/country/locale/ro.po b/tryton/modules/country/locale/ro.po +index 488a7ae9b9..ca506799fc 100644 +--- a/tryton/modules/country/locale/ro.po ++++ b/tryton/modules/country/locale/ro.po +@@ -14,14 +14,71 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "Cod Numeric" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Denumire" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "Regiune" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "Subdiviziune" + ++#, fuzzy ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "Cod" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Țări" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Denumire" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Țară" ++ ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + msgctxt "field:country.postal_code,city:" + msgid "City" + msgstr "Oraș" +@@ -38,6 +95,31 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "Subdiviziune" + ++#, fuzzy ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "Cod Numeric" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Țări" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Denumire" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Parinte" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Subdiviziune" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "Cod" +@@ -46,6 +128,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "Țară" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "Denumire" +@@ -86,6 +172,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "Subdiviziunea în care se află codul poștal." + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "Codul ISO al subdiviziuni." +@@ -106,26 +196,288 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "Țară" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "Comunitatea autonomă" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "Comunitatea autonomă" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "Comunitatea autonomă" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "Cod Poștal" + ++#, fuzzy ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "Regiune" ++ ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "Subdiviziune" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Țări" ++ + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Țări" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "Coduri Poștale" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "Regiune" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Zonă" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Țări" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Țări" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "Regiune" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Zonă" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "Administrare" +diff --git a/tryton/modules/country/locale/ru.po b/tryton/modules/country/locale/ru.po +index 1ed9a63040..f2833d817e 100644 +--- a/tryton/modules/country/locale/ru.po ++++ b/tryton/modules/country/locale/ru.po +@@ -15,14 +15,72 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "Код валюты" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Наименование" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "Регион" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "Области" + ++#, fuzzy ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "Код страны" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Наименование" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Страны мира" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "Дата изменения" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.postal_code,city:" + msgid "City" +@@ -42,6 +100,31 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "Подраздел" + ++#, fuzzy ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "Код валюты" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Наименование" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Предок" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Области" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "Код" +@@ -50,6 +133,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "Страны мира" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "Наименование" +@@ -90,6 +177,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "" + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "" +@@ -110,28 +201,313 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "Страны мира" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "Автономное сообщество" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "Автономное сообщество" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "Автономное сообщество" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "" + ++#, fuzzy ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "Регион" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "Южная Африка" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "Американские Самоа" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Антарктика" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Новая Зеландия" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Центрально-африканская республика" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Центрально-африканская республика" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Фарерские острова" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Западная Сахара" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Западная Сахара" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Западная Сахара" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "Сент-Винсент и Гренадины" ++ ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Индонезия" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "Южная Африка" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "Южная Африка" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "Южная Африка" ++ ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Французская Полинезия" ++ ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "Южная Африка" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "Южная Африка" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Южная Африка" ++ ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "Южная Африка" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "Западная Сахара" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "Западная Сахара" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "Западная Сахара" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "Подраздел" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Countries" ++ + #, fuzzy + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "Регион" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Область" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Countries" ++ + #, fuzzy + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "Регион" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Область" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "группа Управление" +diff --git a/tryton/modules/country/locale/sl.po b/tryton/modules/country/locale/sl.po +index 1c66fb1782..ae2660ee1e 100644 +--- a/tryton/modules/country/locale/sl.po ++++ b/tryton/modules/country/locale/sl.po +@@ -14,14 +14,72 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "Številčna koda" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Naziv" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "Regija" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "Razdelbe" + ++#, fuzzy ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "Šifra" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Naziv" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Dežela" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "Zapisano" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.postal_code,city:" + msgid "City" +@@ -41,6 +99,31 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "Regija" + ++#, fuzzy ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "Številčna koda" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Naziv" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Prednik" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Southern Region" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "Šifra" +@@ -49,6 +132,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "Dežela" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "Naziv" +@@ -90,6 +177,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "Regija poštne številke." + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "ISO šifra za regijo." +@@ -110,28 +201,320 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "Dežela" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "Avtonomna skupnost" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "Avtonomna skupnost" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "Avtonomna skupnost" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "La Union" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "Southern Leyte" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "" + ++#, fuzzy ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "Regija" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "Južna Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "Ameriška Samoa" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Antarktika" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Nova Zelandija" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Kajmanski otoki" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Eastern Equatoria" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Vzhodna Kaplandija" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Vzhodna Kaplandija" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "Saint Vincent in Grenadini" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "Melaka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Misiones" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "Južna Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "Južna Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "Northern Samar" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "Severna Kaplandija" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Hania" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Francoska Polinezija" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "North-Western" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "Južna Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "Južna Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "Južna Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "Zahodna Avstralija" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "Zahodna Avstralija" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "Zahodna Kaplandija" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "Razdelba" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Central Region" ++ + #, fuzzy + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "Regija" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Področje" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Countries" ++ + #, fuzzy + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "Regija" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Področje" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "Uprava" +diff --git a/tryton/modules/country/locale/tr.po b/tryton/modules/country/locale/tr.po +index 1ff2ed8ded..3633398df6 100644 +--- a/tryton/modules/country/locale/tr.po ++++ b/tryton/modules/country/locale/tr.po +@@ -14,14 +14,69 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "Ad" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "" + ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Ad" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Ülke" ++ ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + msgctxt "field:country.postal_code,city:" + msgid "City" + msgstr "" +@@ -39,6 +94,30 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "" + ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Countries" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Ad" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Brent" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Southern Region" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "" +@@ -47,6 +126,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "Ülke" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "Ad" +@@ -87,6 +170,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "" + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "" +@@ -107,26 +194,312 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "Ülke" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "La Union" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "Southern Leyte" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "" + ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "Güney Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "Amerikan Samoası" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "Antarktika" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "Yeni Zelanda" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Line Islands" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Eastern Equatoria" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "Eastern Cape" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "Eastern Cape" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "Sen Vinsınt ve Granadalar" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "Melaka" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "Misiones" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "Güney Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "Güney Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "Northern Samar" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "Northern Cape" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Chania" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "Fransız Polinezyası" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "North-Western" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "Güney Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "Güney Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "Güney Afrika" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "Western Australia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "Western Australia" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "Western Cape" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Central Region" ++ + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "" + ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Alan" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Countries" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "Countries" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Alan" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "" +diff --git a/tryton/modules/country/locale/uk.po b/tryton/modules/country/locale/uk.po +new file mode 100644 +index 0000000000..47b6cbf876 +--- /dev/null ++++ b/tryton/modules/country/locale/uk.po +@@ -0,0 +1,1024 @@ ++# ++msgid "" ++msgstr "Content-Type: text/plain; charset=utf-8\n" ++ ++msgctxt "field:country.country,code3:" ++msgid "3-letters Code" ++msgstr "Трилітерний код" ++ ++msgctxt "field:country.country,code:" ++msgid "Code" ++msgstr "Код" ++ ++msgctxt "field:country.country,code_numeric:" ++msgid "Numeric Code" ++msgstr "Числовий код" ++ ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ ++msgctxt "field:country.country,name:" ++msgid "Name" ++msgstr "Назва" ++ ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "Регіон" ++ ++msgctxt "field:country.country,subdivisions:" ++msgid "Subdivisions" ++msgstr "Адмін.поділи" ++ ++#, fuzzy ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "Код" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "Країни" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "Назва" ++ ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "Країна" ++ ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ ++msgctxt "field:country.postal_code,city:" ++msgid "City" ++msgstr "Місто" ++ ++msgctxt "field:country.postal_code,country:" ++msgid "Country" ++msgstr "Країна" ++ ++msgctxt "field:country.postal_code,postal_code:" ++msgid "Postal Code" ++msgstr "Поштовий індекс" ++ ++msgctxt "field:country.postal_code,subdivision:" ++msgid "Subdivision" ++msgstr "Адмін.поділ" ++ ++#, fuzzy ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "Числовий код" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "Країни" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "Назва" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "Батько" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Адмін.поділи" ++ ++msgctxt "field:country.subdivision,code:" ++msgid "Code" ++msgstr "Код" ++ ++msgctxt "field:country.subdivision,country:" ++msgid "Country" ++msgstr "Країна" ++ ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.subdivision,name:" ++msgid "Name" ++msgstr "Назва" ++ ++msgctxt "field:country.subdivision,parent:" ++msgid "Parent" ++msgstr "Батько" ++ ++msgctxt "field:country.subdivision,type:" ++msgid "Type" ++msgstr "Тип" ++ ++msgctxt "help:country.country,code3:" ++msgid "The 3 chars ISO country code." ++msgstr "Трилітерний код країни ISO." ++ ++msgctxt "help:country.country,code:" ++msgid "The 2 chars ISO country code." ++msgstr "Дволітерний код країни ISO." ++ ++msgctxt "help:country.country,code_numeric:" ++msgid "The ISO numeric country code." ++msgstr "Числовий код країни ISO." ++ ++msgctxt "help:country.country,name:" ++msgid "The main identifier of the country." ++msgstr "Основний ідентифікатор країни." ++ ++msgctxt "help:country.postal_code,city:" ++msgid "The city associated with the postal code." ++msgstr "Місто, пов'язане з поштовим індексом." ++ ++msgctxt "help:country.postal_code,country:" ++msgid "The country that contains the postal code." ++msgstr "Країна, яка містить поштовий індекс." ++ ++msgctxt "help:country.postal_code,subdivision:" ++msgid "The subdivision where the postal code is." ++msgstr "Адмін.поділ, де знаходиться поштовий індекс." ++ ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ ++msgctxt "help:country.subdivision,code:" ++msgid "The ISO code of the subdivision." ++msgstr "Код ISO адмін.поділу." ++ ++msgctxt "help:country.subdivision,country:" ++msgid "The country where this subdivision is." ++msgstr "Країна, де знаходиться цей адмін.поділ." ++ ++msgctxt "help:country.subdivision,name:" ++msgid "The main identifier of the subdivision." ++msgstr "Основний ідентифікатор адмін.поділу." ++ ++msgctxt "help:country.subdivision,parent:" ++msgid "Add subdivision below the parent." ++msgstr "Додати адмін.поділ до батька." ++ ++msgctxt "model:country.country,name:" ++msgid "Country" ++msgstr "Країна" ++ ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "Міська громада" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "Міська громада" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "Міська громада" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ ++msgctxt "model:country.postal_code,name:" ++msgid "Postal Code" ++msgstr "Поштовий індекс" ++ ++#, fuzzy ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "Регіон" ++ ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "Ланцюг (островів)" ++ ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ ++msgctxt "model:country.subdivision,name:" ++msgid "Subdivision" ++msgstr "Адмін.поділ" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Країни" ++ ++msgctxt "model:ir.action,name:act_country_form" ++msgid "Countries" ++msgstr "Країни" ++ ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++msgctxt "model:ir.action,name:act_postal_code_form" ++msgid "Postal Codes" ++msgstr "Поштові індекси" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "Регіон" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "Область" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "Країни" ++ ++msgctxt "model:ir.ui.menu,name:menu_country_form" ++msgid "Countries" ++msgstr "Країни" ++ ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "Регіон" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "Область" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Administration" ++msgstr "Адміністрація" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Administrative Region" ++msgstr "Адміністративний регіон" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Administrative Territory" ++msgstr "Адміністративна територія" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Administrative area" ++msgstr "Адміністративна область" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Administrative atoll" ++msgstr "Адміністративний атол" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Administrative precinct" ++msgstr "Адміністративна дільниця" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Arctic Region" ++msgstr "Арктичний регіон" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Area" ++msgstr "Область" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Atoll" ++msgstr "Атол" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Autonomous City" ++msgstr "Автономне місто" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Autonomous Commune" ++msgstr "Автономна комуна" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Autonomous District" ++msgstr "Автономний округ" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Autonomous Province" ++msgstr "Автономна провінція" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Autonomous Region" ++msgstr "Автономний регіон" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Autonomous city in north africa" ++msgstr "Автономне місто в Північній Африці" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Autonomous communities" ++msgstr "Автономні громади" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Autonomous community" ++msgstr "Автономна громада" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Autonomous island" ++msgstr "Автономний острів" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Autonomous monastic state" ++msgstr "Автономний чернечий штат" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Autonomous municipality" ++msgstr "Автономний муніципалітет" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Autonomous republic" ++msgstr "Автономна республіка" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Autonomous sector" ++msgstr "Автономний сектор" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Autonomous territorial unit" ++msgstr "Автономна територіальна одиниця" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Autonomous territory" ++msgstr "Автономна територія" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Borough" ++msgstr "Район" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Canton" ++msgstr "Кантон" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Capital" ++msgstr "Столиця" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Capital District" ++msgstr "Столичний округ" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Capital Metropolitan City" ++msgstr "Столичне місто метрополії" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Capital Territory" ++msgstr "Столична територія" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Capital city" ++msgstr "Столичне місто" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Chain (of islands)" ++msgstr "Ланцюг (островів)" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Chains (of islands)" ++msgstr "Ланцюги (островів)" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "City" ++msgstr "Місто" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "City corporation" ++msgstr "Міська корпорація" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "City municipality" ++msgstr "Муніципалітет міста" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "City with county rights" ++msgstr "Місто з правами повіту" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Commune" ++msgstr "Комуна" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Constitutional province" ++msgstr "Конституційна провінція" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Council area" ++msgstr "Територія ради" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Country" ++msgstr "Країна" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "County" ++msgstr "Повіт" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Decentralized regional entity" ++msgstr "Децентралізований регіональний суб'єкт" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Department" ++msgstr "Департамент" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Dependency" ++msgstr "Залежність" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Development region" ++msgstr "Регіон розвитку" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "District" ++msgstr "Округ" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "District council area" ++msgstr "Територія окружної ради" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "District municipality" ++msgstr "Окружний муніципалітет" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "District with special status" ++msgstr "Округ з особливим статусом" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Districts under republic administration" ++msgstr "Округи республіканського управління" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Division" ++msgstr "Поділ" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Economic Prefecture" ++msgstr "Економічна префектура" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Economic region" ++msgstr "Економічний регіон" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Emirate" ++msgstr "Емірат" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Entity" ++msgstr "Суб'єкт" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Federal Dependency" ++msgstr "Федеральна залежність" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Federal District" ++msgstr "Федеральний округ" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Federal Territories" ++msgstr "Федеральні території" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Federal Territory" ++msgstr "Федеральна територія" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Federal capital territory" ++msgstr "Територія федеральної столиці" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Free municipal consortium" ++msgstr "Вільний муніципальний консорціум" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Geographical entity" ++msgstr "Географічний суб'єкт" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Geographical region" ++msgstr "Географічний регіон" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Geographical unit" ++msgstr "Географічна одиниця" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Governorate" ++msgstr "Губернаторство" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Group of islands (20 inhabited islands)" ++msgstr "Група островів (20 населених островів)" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Included for completeness" ++msgstr "Включено для повноти" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Indigenous region" ++msgstr "Регіон корінних народів" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Island" ++msgstr "Острів" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Island council" ++msgstr "Рада острова" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Island group" ++msgstr "Група островів" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Islands, groups of islands" ++msgstr "Острови, групи островів" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Land" ++msgstr "Земля" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Local council" ++msgstr "Місцева рада" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "London borough" ++msgstr "Район Лондона" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Metropolitan administration" ++msgstr "Адміністрація метрополії" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Metropolitan cities" ++msgstr "Міста метрополії" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Metropolitan city" ++msgstr "Місто метрополії" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Metropolitan collectivity with special status" ++msgstr "Громада метрополії з особливим статусом" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Metropolitan department" ++msgstr "Департамент метрополії" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Metropolitan district" ++msgstr "Округ метрополії" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Metropolitan region" ++msgstr "Регіон метрополії" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Municipalities" ++msgstr "Муніципалітети" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Municipality" ++msgstr "Муніципалітет" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Nation" ++msgstr "Край" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Oblast" ++msgstr "Область_" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Outlying area" ++msgstr "Віддалена територія" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Overseas collectivity" ++msgstr "Закордонна громада" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Overseas collectivity with special status" ++msgstr "Закордонна громада з особливим статусом" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Overseas department" ++msgstr "Закордонний департамент" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Overseas region" ++msgstr "Закордонний регіон" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Overseas region/department" ++msgstr "Закордонний регіон/департамент" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Overseas territorial collectivity" ++msgstr "Закордонна територіальна громада" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Overseas territory" ++msgstr "Закордонна територія" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Pakistan administered area" ++msgstr "Пакистанська територія" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Parish" ++msgstr "Парафія" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Popularate" ++msgstr "Шабія" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Popularates" ++msgstr "Шабії" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Prefecture" ++msgstr "Префектура" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Principality" ++msgstr "Князівство" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Province" ++msgstr "Провінція" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Quarter" ++msgstr "Квартал" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Rayon" ++msgstr "Район_" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Region" ++msgstr "Регіон" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Regional council" ++msgstr "Регіональна рада" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Regional state" ++msgstr "Регіональний штат" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Republic" ++msgstr "Республіка" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Republican City" ++msgstr "Республіканське місто" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Rural municipality" ++msgstr "Сільський муніципалітет" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Self-governed part" ++msgstr "Самоврядна частина" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Special District" ++msgstr "Особливий округ" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Special Municipality" ++msgstr "Особливий муніципалітет" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Special Region" ++msgstr "Особливий регіон" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Special administrative city" ++msgstr "Особливе адміністративне місто" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Special administrative region" ++msgstr "Особливий адміністративний регіон" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Special city" ++msgstr "Особливе місто" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Special island authority" ++msgstr "Особлива влада островів" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Special self-governing city" ++msgstr "Особливе самоврядне місто" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Special self-governing province" ++msgstr "Особлива самоврядна провінція" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Special zone" ++msgstr "Особлива зона" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "State" ++msgstr "Штат" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Territorial unit" ++msgstr "Територіальна одиниця" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Territory" ++msgstr "Територія" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Town" ++msgstr "Містечко" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Town council" ++msgstr "Міська рада" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Two-tier county" ++msgstr "Дворівневий повіт" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Union territory" ++msgstr "Територія Союзу" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Unitary authority" ++msgstr "Унітарна влада" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Unitary authority (england)" ++msgstr "Унітарна влада (Англія)" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Unitary authority (wales)" ++msgstr "Унітарна влада (Уельс)" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Urban community" ++msgstr "Міська громада" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Urban municipality" ++msgstr "Міський муніципалітет" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Voivodship" ++msgstr "Воєводство" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "Ward" ++msgstr "Виборчий округ" ++ ++msgctxt "selection:country.subdivision,type:" ++msgid "zone" ++msgstr "зона" +diff --git a/tryton/modules/country/locale/zh_CN.po b/tryton/modules/country/locale/zh_CN.po +index bb6dd0ce26..d4323e0d1d 100644 +--- a/tryton/modules/country/locale/zh_CN.po ++++ b/tryton/modules/country/locale/zh_CN.po +@@ -14,14 +14,73 @@ msgctxt "field:country.country,code_numeric:" + msgid "Numeric Code" + msgstr "数字代码" + ++msgctxt "field:country.country,flag:" ++msgid "Flag" ++msgstr "" ++ ++msgctxt "field:country.country,members:" ++msgid "Members" ++msgstr "" ++ + msgctxt "field:country.country,name:" + msgid "Name" + msgstr "名称" + ++msgctxt "field:country.country,organizations:" ++msgid "Organizations" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.country,region:" ++msgid "Region" ++msgstr "北极地区" ++ + msgctxt "field:country.country,subdivisions:" + msgid "Subdivisions" + msgstr "行政区划" + ++#, fuzzy ++msgctxt "field:country.organization,code:" ++msgid "Code" ++msgstr "编码" ++ ++#, fuzzy ++msgctxt "field:country.organization,countries:" ++msgid "Countries" ++msgstr "国家" ++ ++msgctxt "field:country.organization,members:" ++msgid "Members" ++msgstr "" ++ ++#, fuzzy ++msgctxt "field:country.organization,name:" ++msgid "Name" ++msgstr "名称" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,active:" ++msgid "Active" ++msgstr "启用" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,country:" ++msgid "Country" ++msgstr "国家" ++ ++#, fuzzy ++msgctxt "field:country.organization.member,from_date:" ++msgid "From Date" ++msgstr "写入日期" ++ ++msgctxt "field:country.organization.member,organization:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "field:country.organization.member,to_date:" ++msgid "To Date" ++msgstr "" ++ + #, fuzzy + msgctxt "field:country.postal_code,city:" + msgid "City" +@@ -41,6 +100,31 @@ msgctxt "field:country.postal_code,subdivision:" + msgid "Subdivision" + msgstr "行政区划" + ++#, fuzzy ++msgctxt "field:country.region,code_numeric:" ++msgid "Numeric Code" ++msgstr "数字代码" ++ ++#, fuzzy ++msgctxt "field:country.region,countries:" ++msgid "Countries" ++msgstr "国家" ++ ++#, fuzzy ++msgctxt "field:country.region,name:" ++msgid "Name" ++msgstr "名称" ++ ++#, fuzzy ++msgctxt "field:country.region,parent:" ++msgid "Parent" ++msgstr "上级" ++ ++#, fuzzy ++msgctxt "field:country.region,subregions:" ++msgid "Subregions" ++msgstr "Southern Region" ++ + msgctxt "field:country.subdivision,code:" + msgid "Code" + msgstr "编码" +@@ -49,6 +133,10 @@ msgctxt "field:country.subdivision,country:" + msgid "Country" + msgstr "国家" + ++msgctxt "field:country.subdivision,flag:" ++msgid "Flag" ++msgstr "" ++ + msgctxt "field:country.subdivision,name:" + msgid "Name" + msgstr "名称" +@@ -89,6 +177,10 @@ msgctxt "help:country.postal_code,subdivision:" + msgid "The subdivision where the postal code is." + msgstr "" + ++msgctxt "help:country.region,code_numeric:" ++msgid "UN M49 region code." ++msgstr "" ++ + msgctxt "help:country.subdivision,code:" + msgid "The ISO code of the subdivision." + msgstr "ISO 行政区划代码." +@@ -109,26 +201,313 @@ msgctxt "model:country.country,name:" + msgid "Country" + msgstr "国家" + ++msgctxt "model:country.organization,name:" ++msgid "Organization" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_amu" ++msgid "Arab Maghreb Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_apec" ++msgid "Asia-Pacific Economic Cooperation" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_asean" ++msgid "Association of Southeast Asian Nations" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_benelux" ++msgid "Benelux Union" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_can" ++msgid "Andean Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_caricom" ++msgid "Caribbean Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cemac" ++msgid "Economic and Monetary Community of Central Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_cen-sad" ++msgid "Community of Sahel–Saharan States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_comesa" ++msgid "Common Market for Eastern and Southern Africa" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eac" ++msgid "East African Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_eccas" ++msgid "Economic Community of Central African States" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_ecowas" ++msgid "Economic Community of West African States" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_eu" ++msgid "European Union" ++msgstr "La Union" ++ ++msgctxt "model:country.organization,name:organization_gcc" ++msgid "Cooperation Council for the Arab States of the Gulf" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_igad" ++msgid "Intergovernmental Authority on Development" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.organization,name:organization_mercosur" ++msgid "Southern Common Market" ++msgstr "南莱特" ++ ++msgctxt "model:country.organization,name:organization_nafta" ++msgid "North American Free Trade Agreement" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_sadc" ++msgid "Southern African Development Community" ++msgstr "" ++ ++msgctxt "model:country.organization,name:organization_safta" ++msgid "South Asian Free Trade Area" ++msgstr "" ++ ++msgctxt "model:country.organization.member,name:" ++msgid "Organization Member" ++msgstr "" ++ + msgctxt "model:country.postal_code,name:" + msgid "Postal Code" + msgstr "" + ++#, fuzzy ++msgctxt "model:country.region,name:" ++msgid "Region" ++msgstr "北极地区" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_africa" ++msgid "Africa" ++msgstr "南非" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_americas" ++msgid "Americas" ++msgstr "美属萨摩亚" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_antarctica" ++msgid "Antarctica" ++msgstr "南极洲" ++ ++msgctxt "model:country.region,name:region_asia" ++msgid "Asia" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_australia_new_zealand" ++msgid "Australia and New Zealand" ++msgstr "新西兰" ++ ++msgctxt "model:country.region,name:region_caribbean" ++msgid "Caribbean" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_america" ++msgid "Central America" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_central_asia" ++msgid "Central Asia" ++msgstr "Central Abaco" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_channel_islands" ++msgid "Channel Islands" ++msgstr "莱恩群岛" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_africa" ++msgid "Eastern Africa" ++msgstr "Eastern Equatoria" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_asia" ++msgid "Eastern Asia" ++msgstr "东开普省" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_eastern_europe" ++msgid "Eastern Europe" ++msgstr "东开普省" ++ ++msgctxt "model:country.region,name:region_europe" ++msgid "Europe" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_latin_america_caribbean" ++msgid "Latin America and the Caribbean" ++msgstr "圣文森特和格林纳丁斯" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_melanesia" ++msgid "Melanesia" ++msgstr "马六甲" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_micronesia" ++msgid "Micronesia" ++msgstr "米西奥内斯省" ++ ++msgctxt "model:country.region,name:region_middle_africa" ++msgid "Middle Africa" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_north_america" ++msgid "North America" ++msgstr "南非" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_africa" ++msgid "Northern Africa" ++msgstr "南非" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_america" ++msgid "Northern America" ++msgstr "北萨马" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_northern_europe" ++msgid "Northern Europe" ++msgstr "北开普省" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_oceania" ++msgid "Oceania" ++msgstr "Chania" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_polynesia" ++msgid "Polynesia" ++msgstr "法属玻利尼西亚" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south-eastern_asia" ++msgid "South-eastern Asia" ++msgstr "西北省" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_south_america" ++msgid "South America" ++msgstr "南非" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_africa" ++msgid "Southern Africa" ++msgstr "南非" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_asia" ++msgid "Southern Asia" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_southern_europe" ++msgid "Southern Europe" ++msgstr "Southern" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_sub-saharan_africa" ++msgid "Sub-Saharan Africa" ++msgstr "南非" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_africa" ++msgid "Western Africa" ++msgstr "西澳大利亚州" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_asia" ++msgid "Western Asia" ++msgstr "西澳大利亚州" ++ ++#, fuzzy ++msgctxt "model:country.region,name:region_western_europe" ++msgid "Western Europe" ++msgstr "西开普省" ++ ++msgctxt "model:country.region,name:region_world" ++msgid "World" ++msgstr "" ++ + msgctxt "model:country.subdivision,name:" + msgid "Subdivision" + msgstr "行政区划" + ++#, fuzzy ++msgctxt "model:ir.action,name:act_country_by_region" ++msgid "Countries by Region" ++msgstr "Central Region" ++ + msgctxt "model:ir.action,name:act_country_form" + msgid "Countries" + msgstr "国家" + ++msgctxt "model:ir.action,name:act_organization_form" ++msgid "Organizations" ++msgstr "" ++ + msgctxt "model:ir.action,name:act_postal_code_form" + msgid "Postal Codes" + msgstr "" + ++msgctxt "model:ir.action,name:act_region_form" ++msgid "Regions" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.action,name:act_region_tree" ++msgid "Areas" ++msgstr "阿尔塔州" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_country" ++msgid "Countries" ++msgstr "国家" ++ + msgctxt "model:ir.ui.menu,name:menu_country_form" + msgid "Countries" + msgstr "国家" + ++msgctxt "model:ir.ui.menu,name:menu_organization_form" ++msgid "Organizations" ++msgstr "" ++ ++msgctxt "model:ir.ui.menu,name:menu_region_form" ++msgid "Regions" ++msgstr "" ++ ++#, fuzzy ++msgctxt "model:ir.ui.menu,name:menu_region_tree" ++msgid "Areas" ++msgstr "阿尔塔州" ++ + msgctxt "selection:country.subdivision,type:" + msgid "Administration" + msgstr "管理员" +diff --git a/tryton/modules/country/organization.xml b/tryton/modules/country/organization.xml +new file mode 100644 +index 0000000000..f74f7bb827 +--- /dev/null ++++ b/tryton/modules/country/organization.xml +@@ -0,0 +1,101 @@ ++ ++ ++ ++ ++ ++ European Union ++ EU ++ ++ ++ ++ Benelux Union ++ Benelux ++ ++ ++ ++ North American Free Trade Agreement ++ NAFTA ++ ++ ++ ++ Southern Common Market ++ Mercosur ++ ++ ++ ++ Andean Community ++ CAN ++ ++ ++ ++ Caribbean Community ++ CARICOM ++ ++ ++ ++ Asia-Pacific Economic Cooperation ++ APEC ++ ++ ++ ++ Association of Southeast Asian Nations ++ ASEAN ++ ++ ++ ++ South Asian Free Trade Area ++ SAFTA ++ ++ ++ ++ Cooperation Council for the Arab States of the Gulf ++ GCC ++ ++ ++ ++ Economic and Monetary Community of Central Africa ++ CEMAC ++ ++ ++ ++ Economic Community of Central African States ++ ECCAS ++ ++ ++ ++ Economic Community of West African States ++ ECOWAS ++ ++ ++ ++ Community of Sahel–Saharan States ++ CEN-SAD ++ ++ ++ ++ Common Market for Eastern and Southern Africa ++ COMESA ++ ++ ++ ++ East African Community ++ EAC ++ ++ ++ ++ Intergovernmental Authority on Development ++ IGAD ++ ++ ++ ++ Southern African Development Community ++ SADC ++ ++ ++ ++ Arab Maghreb Union ++ AMU ++ ++ ++ +diff --git a/tryton/modules/country/region.xml b/tryton/modules/country/region.xml +new file mode 100644 +index 0000000000..8f4f837a8c +--- /dev/null ++++ b/tryton/modules/country/region.xml +@@ -0,0 +1,206 @@ ++ ++ ++ ++ ++ ++ World ++ 001 ++ ++ ++ ++ ++ Africa ++ 002 ++ ++ ++ ++ ++ Antarctica ++ 010 ++ ++ ++ ++ ++ Americas ++ 019 ++ ++ ++ ++ ++ Asia ++ 142 ++ ++ ++ ++ ++ Europe ++ 150 ++ ++ ++ ++ ++ Oceania ++ 009 ++ ++ ++ ++ ++ ++ Northern Africa ++ 015 ++ ++ ++ ++ ++ Sub-Saharan Africa ++ 202 ++ ++ ++ ++ ++ North America ++ 003 ++ ++ ++ ++ ++ Latin America and the Caribbean ++ 419 ++ ++ ++ ++ ++ Eastern Asia ++ 030 ++ ++ ++ ++ ++ Southern Asia ++ 034 ++ ++ ++ ++ ++ South-eastern Asia ++ 035 ++ ++ ++ ++ ++ Central Asia ++ 143 ++ ++ ++ ++ ++ Western Asia ++ 145 ++ ++ ++ ++ ++ Southern Europe ++ 039 ++ ++ ++ ++ ++ Eastern Europe ++ 151 ++ ++ ++ ++ ++ Northern Europe ++ 154 ++ ++ ++ ++ ++ Western Europe ++ 155 ++ ++ ++ ++ ++ Australia and New Zealand ++ 053 ++ ++ ++ ++ ++ Melanesia ++ 054 ++ ++ ++ ++ ++ Micronesia ++ 057 ++ ++ ++ ++ ++ Polynesia ++ 061 ++ ++ ++ ++ ++ ++ Western Africa ++ 011 ++ ++ ++ ++ ++ Eastern Africa ++ 014 ++ ++ ++ ++ ++ Middle Africa ++ 017 ++ ++ ++ ++ ++ Southern Africa ++ 018 ++ ++ ++ ++ ++ Northern America ++ 021 ++ ++ ++ ++ ++ South America ++ 005 ++ ++ ++ ++ ++ Central America ++ 013 ++ ++ ++ ++ ++ Caribbean ++ 029 ++ ++ ++ ++ ++ Channel Islands ++ 830 ++ ++ ++ ++ +diff --git a/tryton/modules/country/scripts/import_countries.py b/tryton/modules/country/scripts/import_countries.py +index 98021b1b05..463d055e1e 100755 +--- a/tryton/modules/country/scripts/import_countries.py ++++ b/tryton/modules/country/scripts/import_countries.py +@@ -1,6 +1,9 @@ + #!/usr/bin/env python3 ++# PYTHON_ARGCOMPLETE_OK + # This file is part of Tryton. The COPYRIGHT file at the top level of + # this repository contains the full copyright notices and license terms. ++ ++import datetime as dt + import gettext + import os + import sys +@@ -8,6 +11,11 @@ from argparse import ArgumentParser + + import pycountry + ++try: ++ import argcomplete ++except ImportError: ++ argcomplete = None ++ + try: + from progressbar import ETA, Bar, ProgressBar, SimpleProgress + except ImportError: +@@ -19,6 +27,343 @@ except ImportError: + prog = os.path.basename(sys.argv[0]) + sys.exit("proteus must be installed to use %s" % prog) + ++ORGANIZATIONS = { ++ # Founding members has no from date ++ 'EU': { ++ 'AT': [(dt.date(1995, 1, 1), None)], ++ 'BE': [(None, None)], ++ 'BG': [(dt.date(2007, 1, 1), None)], ++ 'CY': [(dt.date(2004, 5, 1), None)], ++ 'CZ': [(dt.date(2004, 5, 1), None)], ++ 'DE': [(None, None)], ++ 'DK': [(dt.date(1973, 1, 1), None)], ++ 'EE': [(dt.date(2004, 5, 1), None)], ++ 'ES': [(dt.date(1986, 1, 1), None)], ++ 'FI': [(dt.date(1995, 1, 1), None)], ++ 'FR': [(None, None)], ++ 'GB': [(dt.date(1973, 1, 1), dt.date(2020, 1, 31))], ++ 'GR': [(dt.date(1981, 1, 1), None)], ++ 'HR': [(dt.date(2013, 7, 1), None)], ++ 'HU': [(dt.date(2004, 5, 1), None)], ++ 'IE': [(dt.date(1973, 1, 1), None)], ++ 'IT': [(None, None)], ++ 'LT': [(dt.date(2004, 5, 1), None)], ++ 'LU': [(None, None)], ++ 'LV': [(dt.date(2004, 5, 1), None)], ++ 'MT': [(dt.date(2004, 5, 1), None)], ++ 'NL': [(None, None)], ++ 'PL': [(dt.date(2004, 5, 1), None)], ++ 'PT': [(dt.date(1986, 1, 1), None)], ++ 'RO': [(dt.date(2007, 1, 1), None)], ++ 'SE': [(dt.date(1995, 1, 1), None)], ++ 'SI': [(dt.date(2004, 5, 1), None)], ++ 'SK': [(dt.date(2004, 5, 1), None)], ++ }, ++ 'Benelux': { ++ 'BE': [(None, None)], ++ 'LU': [(None, None)], ++ 'NL': [(None, None)], ++ }, ++ 'NAFTA': { ++ 'CA': [(None, None)], ++ 'MX': [(None, None)], ++ 'US': [(None, None)], ++ }, ++ 'Mercosur': { ++ 'AR': [(None, None)], ++ 'BR': [(None, None)], ++ 'PY': [(None, None)], ++ 'UY': [(None, None)], ++ 'VE': [(dt.date(2012, 7, 31), dt.date(2016, 12, 2))], ++ }, ++ 'CAN': { ++ # days and months are default to covert the full year ++ 'BO': [(None, None)], ++ 'CL': [(dt.date(1969, 1, 1), dt.date(1976, 12, 31))], ++ 'CO': [(None, None)], ++ 'EC': [(None, None)], ++ 'PE': [(None, None)], ++ 'VE': [(dt.date(1973, 1, 1), dt.date(2006, 12, 31))], ++ }, ++ 'CARICOM': { ++ 'AG': [(dt.date(1974, 7, 4), None)], ++ 'BB': [(None, None)], ++ 'BS': [(dt.date(1983, 7, 4), None)], ++ 'BZ': [(dt.date(1974, 5, 1), None)], ++ 'DM': [(dt.date(1974, 5, 1), None)], ++ 'GD': [(dt.date(1974, 5, 1), None)], ++ 'GY': [(None, None)], ++ 'HT': [(dt.date(2002, 7, 2), None)], ++ 'JM': [(None, None)], ++ 'KN': [(dt.date(1974, 7, 26), None)], ++ 'LC': [(dt.date(1974, 5, 1), None)], ++ 'MS': [(dt.date(1974, 5, 1), None)], ++ 'SR': [(dt.date(1995, 7, 4), None)], ++ 'TT': [(None, None)], ++ 'VC': [(dt.date(1974, 5, 1), None)], ++ }, ++ 'APEC': { ++ # days are default to covert the full month ++ 'AU': [(None, None)], ++ 'BN': [(None, None)], ++ 'CA': [(None, None)], ++ 'CL': [(dt.date(1994, 11, 1), None)], ++ 'CN': [(dt.date(1991, 11, 1), None)], ++ 'HK': [(dt.date(1991, 11, 1), None)], ++ 'ID': [(None, None)], ++ 'JP': [(None, None)], ++ 'KR': [(None, None)], ++ 'MX': [(dt.date(1993, 11, 1), None)], ++ 'MY': [(None, None)], ++ 'NZ': [(None, None)], ++ 'PE': [(dt.date(1998, 11, 1), None)], ++ 'PG': [(dt.date(1993, 11, 1), None)], ++ 'PH': [(None, None)], ++ 'RU': [(dt.date(1998, 11, 1), None)], ++ 'SG': [(None, None)], ++ 'TH': [(None, None)], ++ 'TW': [(dt.date(1991, 11, 1), None)], ++ 'US': [(None, None)], ++ 'VN': [(dt.date(1998, 11, 1), None)], ++ }, ++ 'ASEAN': { ++ 'BN': [(dt.date(1984, 1, 7), None)], ++ 'ID': [(None, None)], ++ 'KH': [(dt.date(1999, 4, 30), None)], ++ 'LA': [(dt.date(1997, 7, 23), None)], ++ 'MM': [(dt.date(1997, 7, 23), None)], ++ 'MY': [(None, None)], ++ 'PH': [(None, None)], ++ 'SG': [(None, None)], ++ 'TH': [(None, None)], ++ 'VN': [(dt.date(1995, 7, 28), None)], ++ }, ++ 'SAFTA': { ++ 'AF': [(None, None)], ++ 'BD': [(None, None)], ++ 'BT': [(None, None)], ++ 'IN': [(None, None)], ++ 'LK': [(None, None)], ++ 'MV': [(None, None)], ++ 'NP': [(None, None)], ++ 'PK': [(None, None)], ++ }, ++ 'GCC': { ++ 'AE': [(None, None)], ++ 'BH': [(None, None)], ++ 'KW': [(None, None)], ++ 'OM': [(None, None)], ++ 'QA': [(None, None)], ++ 'SA': [(None, None)], ++ }, ++ 'CEMAC': { ++ 'CF': [(None, None)], ++ 'CG': [(None, None)], ++ 'CM': [(None, None)], ++ 'GA': [(None, None)], ++ 'GQ': [(dt.date(1983, 12, 19), None)], ++ 'TD': [(None, None)], ++ }, ++ 'ECCAS': { ++ 'AO': [(None, None)], ++ 'BI': [(None, None)], ++ 'CM': [(None, None)], ++ 'CF': [(None, None)], ++ 'TD': [(None, None)], ++ 'CD': [(None, None)], ++ 'GQ': [(None, None)], ++ 'GA': [(None, None)], ++ 'CG': [(None, None)], ++ 'RW': [(None, dt.date(2007, 12, 31)), (dt.date(2016, 8, 17), None)], ++ 'ST': [(None, None)], ++ }, ++ 'ECOWAS': { ++ 'BF': [(None, dt.date(2022, 1, 28))], ++ 'BJ': [(None, None)], ++ 'CI': [(None, None)], ++ 'CV': [(dt.date(1977, 1, 1), None)], ++ 'GH': [(None, None)], ++ 'GM': [(None, None)], ++ 'GN': [(None, dt.date(2021, 9, 8))], ++ 'GW': [(None, None)], ++ 'LR': [(None, None)], ++ 'ML': [(None, dt.date(2021, 5, 30))], ++ 'MR': [(None, dt.date(2000, 12, 1))], ++ 'NE': [(None, None)], ++ 'NG': [(None, None)], ++ 'SL': [(None, None)], ++ 'SN': [(None, None)], ++ 'TG': [(None, None)], ++ }, ++ 'CEN-SAD': { ++ # days and months are default to covert the full year ++ 'BF': [(None, None)], ++ 'BJ': [(dt.date(2002, 1, 1), None)], ++ 'CF': [(dt.date(1999, 1, 1), None)], ++ 'CI': [(dt.date(2004, 1, 1), None)], ++ 'CV': [(dt.date(2009, 1, 1), None)], ++ 'DJ': [(dt.date(2000, 1, 1), None)], ++ 'EG': [(dt.date(2001, 1, 1), None)], ++ 'ER': [(dt.date(1999, 1, 1), None)], ++ 'FN': [(dt.date(2007, 1, 1), None)], ++ 'GH': [(dt.date(2005, 1, 1), None)], ++ 'GM': [(dt.date(2000, 1, 1), None)], ++ 'GW': [(dt.date(2004, 1, 1), None)], ++ 'KE': [(dt.date(2007, 1, 1), None)], ++ 'KM': [(dt.date(2007, 1, 1), None)], ++ 'LR': [(dt.date(2004, 1, 1), None)], ++ 'LY': [(None, None)], ++ 'MA': [(dt.date(2001, 1, 1), None)], ++ 'ML': [(None, None)], ++ 'MR': [(dt.date(2007, 1, 1), None)], ++ 'NE': [(None, None)], ++ 'NG': [(dt.date(2001, 1, 1), None)], ++ 'SD': [(None, None)], ++ 'SL': [(dt.date(2005, 1, 1), None)], ++ 'SN': [(dt.date(2000, 1, 1), None)], ++ 'SO': [(dt.date(2001, 1, 1), None)], ++ 'ST': [(dt.date(2007, 1, 1), None)], ++ 'TD': [(None, None)], ++ 'TG': [(dt.date(2002, 1, 1), None)], ++ 'TN': [(dt.date(2001, 1, 1), None)], ++ }, ++ 'COMESA': { ++ # days and months are default to covert the full year ++ 'AO': [(None, dt.date(2007, 1, 1))], ++ 'BI': [(dt.date(1981, 12, 21), None)], ++ 'CD': [(dt.date(1981, 12, 21), None)], ++ 'DJ': [(dt.date(1981, 12, 21), None)], ++ 'EG': [(dt.date(1999, 1, 6), None)], ++ 'ER': [(dt.date(1994, 1, 1), None)], ++ 'ET': [(dt.date(1981, 12, 21), None)], ++ 'KE': [(None, None)], ++ 'KM': [(dt.date(1981, 12, 21), None)], ++ 'LS': [(None, dt.date(1997, 1, 1))], ++ 'LY': [(dt.date(2005, 6, 3), None)], ++ 'MG': [(None, None)], ++ 'MU': [(None, None)], ++ 'MW': [(None, None)], ++ 'MZ': [(None, dt.date(1997, 1, 1))], ++ 'NA': [(None, dt.date(2004, 5, 2))], ++ 'RW': [(None, None)], ++ 'SC': [(dt.date(2001, 1, 1), None)], ++ 'SD': [(dt.date(1981, 12, 21), None)], ++ 'SO': [(dt.date(2018, 7, 19), None)], ++ 'SZ': [(dt.date(1981, 12, 21), None)], ++ 'TN': [(dt.date(2018, 7, 18), None)], ++ 'TZ': [(None, dt.date(2000, 9, 2))], ++ 'UG': [(None, None)], ++ 'ZM': [(None, None)], ++ 'ZW': [(None, None)], ++ }, ++ 'EAC': { ++ # days and months are default to covert the full year ++ 'BI': [(dt.date(2007, 1, 1), None)], ++ 'CD': [(dt.date(2022, 1, 1), None)], ++ 'KE': [(None, None)], ++ 'RW': [(dt.date(2007, 1, 1), None)], ++ 'SS': [(dt.date(2012, 1, 1), None)], ++ 'TZ': [(None, None)], ++ 'UG': [(None, None)], ++ }, ++ 'IGAD': { ++ # days and months are default to covert the full year ++ 'DJ': [(None, None)], ++ 'ER': [(dt.date(1993, 1, 1), dt.date(2007, 12, 31)), ++ (dt.date(2011, 1, 1), None)], ++ 'ET': [(None, None)], ++ 'KE': [(None, None)], ++ 'SD': [(None, None)], ++ 'SO': [(None, None)], ++ 'SS': [(dt.date(2011, 1, 1), dt.date(2021, 12, 1))], ++ 'UG': [(None, None)], ++ }, ++ 'SADC': { ++ 'AO': [(None, None)], ++ 'BW': [(None, None)], ++ 'CD': [(dt.date(1997, 9, 8), None)], ++ 'KM': [(dt.date(2017, 1, 1), None)], ++ 'LS': [(None, None)], ++ 'MG': [(dt.date(2005, 8, 18), dt.date(2009, 1, 26)), ++ (dt.date(2014, 1, 30), None)], ++ 'MU': [(dt.date(1995, 8, 28), None)], ++ 'MW': [(None, None)], ++ 'MZ': [(None, None)], ++ 'NA': [(dt.date(1990, 3, 21), None)], ++ 'SC': [(dt.date(1997, 9, 8), dt.date(2004, 7, 1)), ++ (dt.date(2008, 1, 1), None)], ++ 'SZ': [(None, None)], ++ 'TZ': [(None, None)], ++ 'ZA': [(dt.date(1994, 8, 30), None)], ++ 'ZM': [(None, None)], ++ 'ZW': [(None, None)], ++ }, ++ 'AMU': { ++ 'DZ': [(None, None)], ++ 'LY': [(None, None)], ++ 'MA': [(None, None)], ++ 'MR': [(None, None)], ++ 'TN': [(None, None)], ++ }, ++ } ++ ++SUBREGIONS = { ++ '001': ['002', '009', '010', '019', '142', '150'], ++ '002': ['015', '202'], ++ '015': ['012', '434', '504', '729', '732', '788', '818'], ++ '202': ['011', '014', '017', '018'], ++ '011': [ ++ '132', '204', '270', '288', '324', '384', '430', '466', '478', '562', ++ '566', '624', '654', '686', '694', '768', '854'], ++ '014': [ ++ '086', '108', '174', '175', '231', '232', '260', '262', '404', '450', ++ '454', '480', '508', '638', '646', '690', '706', '716', '728', '800', ++ '834', '894'], ++ '017': ['024', '120', '140', '148', '178', '180', '226', '266', '678'], ++ '018': ['072', '426', '516', '710', '748'], ++ '010': [], ++ '019': ['003', '419'], ++ '003': ['013', '021', '029'], ++ '021': ['060', '124', '304', '666', '840'], ++ '419': ['005', '013', '029'], ++ '005': [ ++ '032', '068', '074', '076', '152', '170', '218', '238', '239', '254', ++ '328', '600', '604', '740', '858', '862'], ++ '013': ['084', '188', '222', '320', '340', '484', '558', '591'], ++ '029': [ ++ '028', '044', '052', '092', '136', '192', '212', '214', '308', '312', ++ '332', '388', '474', '500', '531', '533', '534', '535', '630', '652', ++ '659', '660', '662', '663', '670', '780', '796', '850'], ++ '142': ['030', '034', '035', '143', '145'], ++ '030': ['156', '344', '392', '408', '410', '446', '496'] + ['158'], ++ '034': ['004', '050', '064', '144', '356', '364', '462', ' 524', '586'], ++ '035': [ ++ '096', '104', '116', '360', '418', '458', '608', '626', '702', '704', ++ '764'], ++ '143': ['398', '417', '762', '795', '860'], ++ '145': [ ++ '031', '051', '048', '196', '268', '275', '368', '376', '400', '414', ++ '422', '512', '634', '682', '760', '792', '784', '887'], ++ '150': ['039', '151', '154', '155'], ++ '039': [ ++ '008', '020', '070', '191', '292', '300', '336', '380', '470', '499', ++ '620', '674', '688', '705', '724', '807'], ++ '151': [ ++ '100', '112', '203', '348', '498', '616', '642', '643', '703', '804'], ++ '154': [ ++ '208', '233', '234', '246', '248', '352', '372', '428', '440', '578', ++ '744', '752', '826', '833', '830'], ++ '830': ['831', '832', '680'], ++ '155': ['040', '056', '250', '276', '438', '442', '492', '528', '756'], ++ '009': ['053', '054', '057', '061'], ++ '053': ['036', '162', '166', '334', '554', '574'], ++ '054': ['090', '242', '540', '548', '598'], ++ '057': ['296', '316', '520', '580', '581', '583', '584', '585'], ++ '061': [ ++ '016', '184', '258', '570', '612', '772', '776', '798', '876', '882'], ++ } ++REGION2PARENT = {c: p for p, r in SUBREGIONS.items() for c in r} ++ + + def _progress(iterable): + if ProgressBar: +@@ -46,9 +391,20 @@ def get_countries(): + return {c.code: c for c in Country.find([])} + + ++def get_organizations(): ++ Organization = Model.get('country.organization') ++ return {o.code: o for o in Organization.find([])} ++ ++ + def update_countries(countries): + print("Update countries", file=sys.stderr) ++ Region = Model.get('country.region') + Country = Model.get('country.country') ++ Member = Model.get('country.organization.member') ++ ++ organizations = get_organizations() ++ ++ code2region = {a.code_numeric: a for a in Region.find([])} + + records = [] + for country in _progress(pycountry.countries): +@@ -56,10 +412,26 @@ def update_countries(countries): + if code in countries: + record = countries[code] + else: +- record = Country(code=code) ++ record = Country(code=code, members=[]) + record.name = _remove_forbidden_chars(country.name) + record.code3 = country.alpha_3 + record.code_numeric = country.numeric ++ record.region = code2region.get(REGION2PARENT.get(country.numeric)) ++ for organization_code, members in ORGANIZATIONS.items(): ++ if organization_code in organizations and code in members: ++ organization = organizations[organization_code] ++ dates = members[code].copy() ++ for member in list(record.members): ++ if member.organization == organization: ++ if dates: ++ member.from_date, member.to_date = dates.pop() ++ else: ++ record.members.remove(member) ++ for from_date, to_date in dates: ++ record.members.append(Member( ++ organization=organization, ++ from_date=from_date, ++ to_date=to_date)) + records.append(record) + + Country.save(records) +@@ -184,6 +556,8 @@ def run(): + parser.add_argument('-d', '--database', dest='database', required=True) + parser.add_argument('-c', '--config', dest='config_file', + help='the trytond config file') ++ if argcomplete: ++ argcomplete.autocomplete(parser) + + args = parser.parse_args() + main(args.database, args.config_file) +diff --git a/tryton/modules/country/scripts/import_postal_codes.py b/tryton/modules/country/scripts/import_postal_codes.py +index e1c631fe56..67417e63a4 100755 +--- a/tryton/modules/country/scripts/import_postal_codes.py ++++ b/tryton/modules/country/scripts/import_postal_codes.py +@@ -1,4 +1,5 @@ + #!/usr/bin/env python ++# PYTHON_ARGCOMPLETE_OK + # This file is part of Tryton. The COPYRIGHT file at the top level of + # this repository contains the full copyright notices and license terms. + from __future__ import print_function +@@ -17,6 +18,11 @@ import zipfile + from argparse import ArgumentParser + from io import BytesIO, TextIOWrapper + ++try: ++ import argcomplete ++except ImportError: ++ argcomplete = None ++ + try: + from progressbar import ETA, Bar, ProgressBar, SimpleProgress + except ImportError: +@@ -122,6 +128,8 @@ def run(): + parser.add_argument('-c', '--config', dest='config_file', + help='the trytond config file') + parser.add_argument('codes', nargs='+') ++ if argcomplete: ++ argcomplete.autocomplete(parser) + + args = parser.parse_args() + main(args.database, args.codes, args.config_file) +diff --git a/tryton/modules/country/tryton.cfg b/tryton/modules/country/tryton.cfg +index 8dae35dc87..bd7b2477e1 100644 +--- a/tryton/modules/country/tryton.cfg ++++ b/tryton/modules/country/tryton.cfg +@@ -5,3 +5,5 @@ depends: + res + xml: + country.xml ++ organization.xml ++ region.xml +diff --git a/tryton/modules/country/view/country_form.xml b/tryton/modules/country/view/country_form.xml +index f62457bd67..c670232a96 100644 +--- a/tryton/modules/country/view/country_form.xml ++++ b/tryton/modules/country/view/country_form.xml +@@ -4,9 +4,11 @@ this repository contains the full copyright notices and license terms. --> +
+