@sap/cds 6.7.2 → 6.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +53 -1
- package/README.md +1 -0
- package/_i18n/i18n.properties +9 -6
- package/_i18n/i18n_ar.properties +6 -6
- package/_i18n/i18n_cs.properties +6 -6
- package/_i18n/i18n_da.properties +6 -6
- package/_i18n/i18n_de.properties +6 -6
- package/_i18n/i18n_en.properties +6 -6
- package/_i18n/i18n_es.properties +6 -6
- package/_i18n/i18n_fi.properties +6 -6
- package/_i18n/i18n_fr.properties +6 -6
- package/_i18n/i18n_hu.properties +6 -6
- package/_i18n/i18n_it.properties +6 -6
- package/_i18n/i18n_ja.properties +6 -6
- package/_i18n/i18n_ko.properties +6 -6
- package/_i18n/i18n_ms.properties +6 -6
- package/_i18n/i18n_nl.properties +6 -6
- package/_i18n/i18n_no.properties +6 -6
- package/_i18n/i18n_pl.properties +6 -6
- package/_i18n/i18n_pt.properties +6 -6
- package/_i18n/i18n_ro.properties +6 -6
- package/_i18n/i18n_ru.properties +6 -6
- package/_i18n/i18n_sv.properties +6 -6
- package/_i18n/i18n_th.properties +6 -6
- package/_i18n/i18n_tr.properties +8 -8
- package/_i18n/i18n_zh_CN.properties +3 -3
- package/_i18n/i18n_zh_TW.properties +6 -6
- package/apis/core.d.ts +30 -31
- package/apis/csn.d.ts +1 -1
- package/apis/ql.d.ts +69 -39
- package/apis/serve.d.ts +4 -3
- package/apis/services.d.ts +20 -7
- package/bin/build/buildTaskEngine.js +1 -1
- package/bin/build/index.js +1 -1
- package/bin/build/provider/buildTaskProviderInternal.js +9 -6
- package/bin/build/provider/hana/index.js +11 -4
- package/bin/build/provider/mtx-extension/index.js +13 -1
- package/bin/build/provider/mtx-sidecar/index.js +3 -3
- package/bin/build/provider/nodejs/index.js +23 -0
- package/bin/plugins.js +2 -1
- package/bin/version.js +3 -2
- package/common.cds +3 -2
- package/lib/auth/index.js +3 -0
- package/lib/auth/mocked-users.js +13 -0
- package/lib/compile/etc/_localized.js +3 -0
- package/lib/compile/for/lean_drafts.js +0 -1
- package/lib/core/entities.js +7 -3
- package/lib/dbs/cds-deploy.js +36 -12
- package/lib/env/cds-env.js +47 -14
- package/lib/env/cds-requires.js +16 -7
- package/lib/env/defaults.js +2 -2
- package/lib/env/schemas/cds-rc.json +1 -8
- package/lib/index.js +1 -1
- package/lib/ql/STREAM.js +89 -0
- package/lib/ql/cds-ql.js +2 -1
- package/lib/req/request.js +6 -2
- package/lib/req/user.js +1 -1
- package/lib/srv/middlewares/index.js +9 -7
- package/lib/srv/middlewares/trace.js +6 -5
- package/lib/srv/srv-api.js +1 -0
- package/lib/utils/cds-utils.js +1 -1
- package/lib/utils/tar.js +30 -31
- package/libx/_runtime/audit/Service.js +96 -37
- package/libx/_runtime/audit/generic/personal/utils.js +26 -13
- package/libx/_runtime/audit/utils/v2.js +21 -22
- package/libx/_runtime/cds-services/adapter/odata-v4/handlers/action.js +1 -1
- package/libx/_runtime/cds-services/adapter/odata-v4/handlers/create.js +1 -1
- package/libx/_runtime/cds-services/adapter/odata-v4/handlers/metadata.js +2 -0
- package/libx/_runtime/cds-services/adapter/odata-v4/handlers/read.js +2 -3
- package/libx/_runtime/cds-services/adapter/odata-v4/handlers/update.js +1 -1
- package/libx/_runtime/cds-services/adapter/odata-v4/okra/odata-server/batch/BatchProcessor.js +2 -0
- package/libx/_runtime/cds-services/adapter/odata-v4/utils/handlerUtils.js +2 -1
- package/libx/_runtime/cds-services/adapter/odata-v4/utils/readAfterWrite.js +10 -3
- package/libx/_runtime/cds-services/services/Service.js +2 -7
- package/libx/_runtime/cds-services/services/utils/differ.js +1 -1
- package/libx/_runtime/cds-services/util/assert.js +28 -5
- package/libx/_runtime/common/aspects/any.js +4 -1
- package/libx/_runtime/common/generic/auth/utils.js +30 -41
- package/libx/_runtime/common/generic/crud.js +1 -1
- package/libx/_runtime/common/i18n/messages.properties +1 -1
- package/libx/_runtime/common/utils/generateOnCond.js +18 -22
- package/libx/_runtime/db/expand/expandCQNToJoin.js +49 -41
- package/libx/_runtime/db/expand/rawToExpanded.js +3 -5
- package/libx/_runtime/db/generic/rewrite.js +3 -0
- package/libx/_runtime/db/utils/generateAliases.js +1 -1
- package/libx/_runtime/fiori/generic/activate.js +1 -1
- package/libx/_runtime/fiori/generic/before.js +18 -19
- package/libx/_runtime/fiori/generic/prepare.js +1 -1
- package/libx/_runtime/fiori/generic/read.js +1 -1
- package/libx/_runtime/fiori/lean-draft.js +87 -53
- package/libx/_runtime/fiori/utils/handler.js +0 -6
- package/libx/_runtime/hana/customBuilder/CustomFunctionBuilder.js +1 -1
- package/libx/_runtime/hana/customBuilder/CustomReferenceBuilder.js +2 -1
- package/libx/_runtime/hana/customBuilder/CustomSelectBuilder.js +0 -5
- package/libx/_runtime/hana/execute.js +18 -11
- package/libx/_runtime/hana/pool.js +26 -18
- package/libx/_runtime/hana/search2Contains.js +1 -1
- package/libx/_runtime/hana/search2cqn4sql.js +26 -18
- package/libx/_runtime/messaging/enterprise-messaging-utils/registerEndpoints.js +23 -16
- package/libx/_runtime/messaging/outbox/utils.js +6 -1
- package/libx/_runtime/remote/Service.js +83 -48
- package/libx/_runtime/remote/utils/client.js +17 -19
- package/libx/_runtime/sqlite/execute.js +2 -0
- package/libx/rest/middleware/read.js +2 -1
- package/libx/rest/middleware/update.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,55 @@
|
|
|
4
4
|
- The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
|
5
5
|
- This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
## Version 6.8.2 - 2023-05-26
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- EDMX texts for extended tenants based on `@sap/cds-mtx` now appear correctly again.
|
|
12
|
+
- `@assert.range` for DateTime/Date/Time/Timestamp
|
|
13
|
+
- Nested `$expand` OData query to the `texts` compiler-generated composition for entities with localized elements.
|
|
14
|
+
For example, similar OData requests `Entity?$expand=items($expand=item($expand=texts))` now should work as expected.
|
|
15
|
+
- `req.subject` would occasionally be incorrect when a query had been executed prior to it.
|
|
16
|
+
- cds plugins are also fetched from `devDependencies`
|
|
17
|
+
- `cds build` now correctly resolves complex models of mtx extension projects
|
|
18
|
+
|
|
19
|
+
## Version 6.8.1 - 2023-05-04
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- DROP statements for SQLite and PostgreSQL no longer miss a comma at the end
|
|
24
|
+
|
|
25
|
+
## Version 6.8.0 - 2023-05-02
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
|
|
29
|
+
- Global cds-dk version is now included in tabular output of `cds v -i`.
|
|
30
|
+
- Audit logging support for OAuth2 Plan
|
|
31
|
+
- Feature flag to limit the max number of requests in a Odata batch request. The max number can be specified with a number in `cds.odata.batch_limit`.
|
|
32
|
+
- Custom authentication in `enterprise-messaging`
|
|
33
|
+
- Requests with lambda expressions are rejected by remote services of kind `odata-v2`
|
|
34
|
+
- `cds build` ignores invalid entries in `undeploy.json`
|
|
35
|
+
- New `minorUnit` element in `sap.common.Currencies` for how many fractions the minor unit takes (e.g. `0`, or `2`). See https://www.npmjs.com/package/@sap/cds-common-content for matching content.
|
|
36
|
+
- Support for `$user.<attr> is null` and `$user.<attr> is not null` in `@restrict.where`. `is null` matches `null` and `[]`, `is not null` matches arrays with at least one entry as well as `!= null` if no array.
|
|
37
|
+
|
|
38
|
+
### Changed
|
|
39
|
+
|
|
40
|
+
- Texts for _Country_ are changed to _Country/Region_ in `@sap.common.Countries`
|
|
41
|
+
- Resolved issue where selection strategies of destination options in multitenant applications were not working correctly, resulting in runtime errors.
|
|
42
|
+
The fix relies on the `@sap-cloud-sdk/connectivity` npm package to be installed.
|
|
43
|
+
- Precision of timestamp used in outbox message increased to 100 nanoseconds (`YYYY-MM-DD hh:mm:ss.nnnnnnn`)
|
|
44
|
+
- When a draft is locked by another user, the error message now includes the username of that user
|
|
45
|
+
|
|
46
|
+
### Fixed
|
|
47
|
+
|
|
48
|
+
- fix exported types of the `cds` core API
|
|
49
|
+
- cds build uses the correct path if no project dir is given
|
|
50
|
+
- Read after write for updates on to-one navigation
|
|
51
|
+
- Error in $orderBy in combination with @Core.MediaType property
|
|
52
|
+
- Fixes in lean-draft
|
|
53
|
+
- Fixed an issue where the combined `$search` and `$expand` query and localized data was returning empty results on SAP HANA
|
|
54
|
+
- Tests using `cds.test` no longer crash with a segmentation fault if `injectGlobals: false` is set in the Jest configuration.
|
|
55
|
+
|
|
7
56
|
## Version 6.7.2 - 2023-04-24
|
|
8
57
|
|
|
9
58
|
### Fixed
|
|
@@ -32,7 +81,7 @@
|
|
|
32
81
|
|
|
33
82
|
- Config `cds.ql.quirks_mode` as a compatibility flag to still support behaviours which are undocumented, or even against the specifications, for example CQN:
|
|
34
83
|
```js
|
|
35
|
-
let q = INSERT.into('Books')
|
|
84
|
+
let q = INSERT.into('Books')
|
|
36
85
|
//> According to CQN spec should return:
|
|
37
86
|
{SELECT:{from:{ref:['Books']}}}
|
|
38
87
|
//> But today returns:
|
|
@@ -43,6 +92,7 @@
|
|
|
43
92
|
- Typings for `cds.spawn()`
|
|
44
93
|
- Typings for `entity.drafts`
|
|
45
94
|
- Typings for winston logger
|
|
95
|
+
- Typings for `cds.context`
|
|
46
96
|
- Typings for `service.on`, `service.before`, and `service.after` for actions and CRUD events
|
|
47
97
|
- CLI command `cds env` now allows property paths with `/` instead of `.`, which allows usages like that:
|
|
48
98
|
```sh
|
|
@@ -60,6 +110,7 @@ cds env requires/cds.xt.ModelProviderService
|
|
|
60
110
|
|
|
61
111
|
### Changed
|
|
62
112
|
|
|
113
|
+
- CQL types now attach additional functionality to entities where appropriate
|
|
63
114
|
- `cds.log().trace()` now logs stack traces in `DEBUG` level, before that was on `TRACE`/`SILLY` level only
|
|
64
115
|
- Plain SQL queries now have `req.event === undefined`, formerly this had non-deterministic values.
|
|
65
116
|
- Plain SQL queries don't allow to register custom handlers, other than for event `'*'`.
|
|
@@ -71,6 +122,7 @@ cds env requires/cds.xt.ModelProviderService
|
|
|
71
122
|
|
|
72
123
|
### Fixed
|
|
73
124
|
|
|
125
|
+
- Specifying a key in `SELECT.from(...)` is now typed to produce a single result, instead of an array of results
|
|
74
126
|
- Proper handling of `IsActiveEntity` in error paths
|
|
75
127
|
- For cloudevents using AMQP, the type is set to `application/cloudevents+json`
|
|
76
128
|
- Use `message` property in typings.
|
package/README.md
CHANGED
package/_i18n/i18n.properties
CHANGED
|
@@ -49,14 +49,17 @@ CurrencyCode.Description=A currency code as specified in ISO 4217
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=Currency Symbol
|
|
51
51
|
|
|
52
|
-
#XTIT:
|
|
53
|
-
|
|
52
|
+
#XTIT: Currency Minor Unit Fractions (Answer to: "How many fractions has a currency's minor unit?", e.g. "0" or "2")
|
|
53
|
+
CurrencyMinorUnit=Currency Minor Unit Fractions
|
|
54
54
|
|
|
55
|
-
#XTIT: Country
|
|
56
|
-
|
|
55
|
+
#XTIT: Country/Region
|
|
56
|
+
Country=Country/Region
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code
|
|
59
|
-
CountryCode
|
|
58
|
+
#XTIT: Country/Region Code
|
|
59
|
+
CountryCode=Country/Region Code
|
|
60
|
+
|
|
61
|
+
#XTIT: Country/Region Code Description
|
|
62
|
+
CountryCode.Description=A country/region code as specified in ISO 3166-1
|
|
60
63
|
|
|
61
64
|
#XTIT: Language
|
|
62
65
|
Language=Language
|
package/_i18n/i18n_ar.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=\u0631\u0645\u0632 \u0627\u0644\u0639\u0645\u0644\u0629
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=\u0631\u0645\u0632 \u0627\u0644\u0639\u0645\u0644\u0629
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=\u0627\u0644\u062F\u0648\u0644\u0629
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=\u0627\u0644\u062F\u0648\u0644\u0629/\u0627\u0644\u0645\u0646\u0637\u0642\u0629
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=\u0631\u0645\u0632 \u0627\u0644\u062F\u0648\u0644\u0629
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=\u0631\u0645\u0632 \u0627\u0644\u062F\u0648\u0644\u0629/\u0627\u0644\u0645\u0646\u0637\u0642\u0629
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=\u0631\u0645\u0632 \u0627\u0644\u062F\u0648\u0644\u0629 \u0627\u0644\u0645\u062D\u062F\u062F \u062D\u0633\u0628 ISO 4217
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=\u0631\u0645\u0632 \u0627\u0644\u062F\u0648\u0644\u0629/\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0645\u062D\u062F\u062F \u062D\u0633\u0628 ISO 4217
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=\u0627\u0644\u0644\u063A\u0629
|
package/_i18n/i18n_cs.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=K\u00F3d m\u011Bny zadan\u00FD dle ISO 4217
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=Symbol m\u011Bny
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=St\u00E1t
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=St\u00E1t/region
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=K\u00F3d st\u00E1tu
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=K\u00F3d st\u00E1tu/regionu
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=K\u00F3d st\u00E1tu zadan\u00FD dle ISO 3166-1
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=K\u00F3d st\u00E1tu/regionu zadan\u00FD dle ISO 3166-1
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=Jazyk
|
package/_i18n/i18n_da.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=Valutakode som angivet af ISO 4217
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=Valutasymbol
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=Land
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=Land/region
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=Lande-/regionskode
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=Lande-/regionskode som angivet af ISO 3166-1
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=Sprog
|
package/_i18n/i18n_de.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=W\u00E4hrungscode gem\u00E4\u00DF ISO 4217
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=W\u00E4hrungssymbol
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=Land
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=Land/Region
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=L\
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=L\u00E4nder-/Regionscode
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=L\
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=L\u00E4nder-/Regionscode gem\u00E4\u00DF ISO 3166-1
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=Sprache
|
package/_i18n/i18n_en.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=Currency code as specified by ISO 4217
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=Currency Symbol
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=Country
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=Country/Region
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=Country Code
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=Country/Region Code
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=Country code as specified by ISO 3166-1
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=Country/region code as specified by ISO 3166-1
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=Language
|
package/_i18n/i18n_es.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=C\u00F3digo de moneda seg\u00FAn especificado por ISO 4
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=S\u00EDmbolo de moneda
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=Pa\u00EDs
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=Pa\u00EDs/Regi\u00F3n
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=C\u00F3digo de pa\u00EDs
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=C\u00F3digo de pa\u00EDs/regi\u00F3n
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=C\u00F3digo de pa\u00EDs seg\u00FAn especificado por ISO 3166-1
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=C\u00F3digo de pa\u00EDs/regi\u00F3n seg\u00FAn especificado por ISO 3166-1
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=Idioma
|
package/_i18n/i18n_fi.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=ISO 4217:n mukainen valuuttakoodi
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=Valuuttatunnus
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=Maa
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=Maa/alue
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=Maa-/aluekoodi
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=ISO 3166-1:n mukainen
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=ISO 3166-1:n mukainen maa-/aluekoodi
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=Kieli
|
package/_i18n/i18n_fr.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=Code de devise tel qu'indiqu\u00E9 par ISO 4217
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=Symbole de devise
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=Pays
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=Pays/R\u00E9gion
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=Code pays
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=Code pays/r\u00E9gion
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=Code pays tel qu'indiqu\u00E9 par ISO 3166-1
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=Code pays/r\u00E9gion tel qu'indiqu\u00E9 par ISO 3166-1
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=Langue
|
package/_i18n/i18n_hu.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=P\u00E9nznem k\u00F3dja ISO 4217 szerint
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=P\u00E9nznem szimb\u00F3luma
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=Orsz\u00E1g
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=Orsz\u00E1g/r\u00E9gi\u00F3
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=Orsz\
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=Orsz\u00E1g/r\u00E9gi\u00F3 k\u00F3dja
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=Orsz\u00E1g/r\u00E9gi\u00F3 k\u00F3dja ISO 3166-1 szerint
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=Nyelv
|
package/_i18n/i18n_it.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=Codice divisa come indicato da ISO 4217
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=Simbolo divisa
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=Paese
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=Paese/regione
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=Codice paese
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=Codice paese/regione
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=Codice paese come indicato
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=Codice paese/regione come indicato nell'ISO 3166-1
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=Lingua
|
package/_i18n/i18n_ja.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=ISO 4217 \u3067\u6307\u5B9A\u3055\u308C\u3066\u3044\u30
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=\u901A\u8CA8\u30B7\u30F3\u30DC\u30EB
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=\u56FD
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=\u56FD/\u5730\u57DF
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=\u56FD\u30B3\u30FC\u30C9
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=\u56FD/\u5730\u57DF\u30B3\u30FC\u30C9
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=ISO 3166-1 \u3067\u6307\u5B9A\u3055\u308C\u3066\u3044\u308B\
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=ISO 3166-1 \u3067\u6307\u5B9A\u3055\u308C\u3066\u3044\u308B\u56FD/\u5730\u57DF\u30B3\u30FC\u30C9
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=\u8A00\u8A9E
|
package/_i18n/i18n_ko.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=ISO 4217\uC5D0\uC11C \uC9C0\uC815\uD55C \uD1B5\uD654 \u
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=\uD1B5\uD654 \uAE30\uD638
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=\uAD6D\uAC00
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=\uAD6D\uAC00/\uC9C0\uC5ED
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=\uAD6D\uAC00 \uCF54\uB4DC
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=\uAD6D\uAC00/\uC9C0\uC5ED \uCF54\uB4DC
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=ISO 3166-1\uC5D0\uC11C \uC9C0\uC815\uD55C \uAD6D\uAC00 \uCF54\uB4DC
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=ISO 3166-1\uC5D0\uC11C \uC9C0\uC815\uD55C \uAD6D\uAC00/\uC9C0\uC5ED \uCF54\uB4DC
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=\uC5B8\uC5B4
|
package/_i18n/i18n_ms.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=Kod mata wang seperti yang dinyatakan dalam ISO 4217
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=Simbol Mata Wang
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=Negara
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=Negara/Wilayah
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=Kod Negara
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=Kod Negara/Wilayah
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=Kod
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=Kod negara/wilayah seperti yang dinyatakan dalam ISO 3166-1
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=Bahasa
|
package/_i18n/i18n_nl.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=Valutacode zoals gespecificeerd door ISO 4217
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=Valutasymbool
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=Land
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=Land/regio
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=Land-/regiocode
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=Land-/regiocode zoals gespecificeerd door ISO 3166-1
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=Taal
|
package/_i18n/i18n_no.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=Valutakode som definert i ISO 4217
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=Valutasymbol
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=Land
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=Land/region
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=Land-/regionskode
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=Land-/regionskode som definert i ISO 3166-1
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=Spr\u00E5k
|
package/_i18n/i18n_pl.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=Kod waluty okre\u015Blony zgodnie z norm\u0105 ISO 4217
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=Symbol waluty
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=Kraj
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=Kraj/region
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=Kod kraju
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=Kod kraju/regionu
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=Kod kraju
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=Kod kraju/regionu zgodny z norm\u0105 ISO 3166-1
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=J\u0119zyk
|
package/_i18n/i18n_pt.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=C\u00F3digo de moeda como especificado pelo ISO 4217
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=S\u00EDmbolo da moeda
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=Pa\u00EDs
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=Pa\u00EDs/regi\u00E3o
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=C\u00F3digo do pa\u00EDs
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=C\u00F3digo do pa\u00EDs/regi\u00E3o
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=C\u00F3digo do pa\u00EDs como especificado pelo ISO 3166-1
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=C\u00F3digo do pa\u00EDs/regi\u00E3o como especificado pelo ISO 3166-1
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=Idioma
|
package/_i18n/i18n_ro.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=Cod moned\u0103 a\u0219a cum este specificat de ISO 421
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=Simbol moned\u0103
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=\u021Aar\u0103
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=\u021Aar\u0103/regiune
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=Cod de \u021Bar\u0103
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=Cod de \u021Bar\u0103/regiune
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=Cod de \u021Bar\u0103 a\u0219a cum este specificat de ISO 3166-1
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=Cod de \u021Bar\u0103/regiune a\u0219a cum este specificat de ISO 3166-1
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=Limb\u0103
|
package/_i18n/i18n_ru.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=\u041A\u043E\u0434 \u0432\u0430\u043B\u044E\u0442\u044B
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=\u0421\u0438\u043C\u0432\u043E\u043B \u0432\u0430\u043B\u044E\u0442\u044B
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=\u0421\u0442\u0440\u0430\u043D\u0430
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=\u0421\u0442\u0440\u0430\u043D\u0430/\u0440\u0435\u0433\u0438\u043E\u043D
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=\u041A\u043E\u0434 \u0441\u0442\u0440\u0430\u043D\u044B
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=\u041A\u043E\u0434 \u0441\u0442\u0440\u0430\u043D\u044B/\u0440\u0435\u0433\u0438\u043E\u043D\u0430
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=\u041A\u043E\u0434 \u0441\u0442\u0440\u0430\u043D\u044B \u0432 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 ISO 3166-1
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=\u041A\u043E\u0434 \u0441\u0442\u0440\u0430\u043D\u044B/\u0440\u0435\u0433\u0438\u043E\u043D\u0430 \u0432 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 ISO 3166-1
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=\u042F\u0437\u044B\u043A
|
package/_i18n/i18n_sv.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=Valutakod enligt ISO 4217
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=Valutasymbol
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=Land
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=Land/region
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=Kod f\u00F6r land/region
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=Kod f\u00F6r land/region enligt ISO 3166-1
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=Spr\u00E5k
|
package/_i18n/i18n_th.properties
CHANGED
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=\u0E23\u0E2B\u0E31\u0E2A\u0E2A\u0E01\u0E38\u0E25\u0E40\
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=\u0E2A\u0E31\u0E0D\u0E25\u0E31\u0E01\u0E29\u0E13\u0E4C\u0E2A\u0E01\u0E38\u0E25\u0E40\u0E07\u0E34\u0E19
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=\u0E1B\u0E23\u0E30\u0E40\u0E17\u0E28
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=\u0E1B\u0E23\u0E30\u0E40\u0E17\u0E28/\u0E20\u0E39\u0E21\u0E34\u0E20\u0E32\u0E04
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=\u0E23\u0E2B\u0E31\u0E2A\u0E1B\u0E23\u0E30\u0E40\u0E17\u0E28
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=\u0E23\u0E2B\u0E31\u0E2A\u0E1B\u0E23\u0E30\u0E40\u0E17\u0E28/\u0E20\u0E39\u0E21\u0E34\u0E20\u0E32\u0E04
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=\u0E23\u0E2B\u0E31\u0E2A\u0E1B\u0E23\u0E30\u0E40\u0E17\u0E28\u0E15\u0E32\u0E21\u0E17\u0E35\u0E48\u0E23\u0E30\u0E1A\u0E38\u0E43\u0E19 ISO 3166-1
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=\u0E23\u0E2B\u0E31\u0E2A\u0E1B\u0E23\u0E30\u0E40\u0E17\u0E28/\u0E20\u0E39\u0E21\u0E34\u0E20\u0E32\u0E04\u0E15\u0E32\u0E21\u0E17\u0E35\u0E48\u0E23\u0E30\u0E1A\u0E38\u0E43\u0E19 ISO 3166-1
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=\u0E20\u0E32\u0E29\u0E32
|
package/_i18n/i18n_tr.properties
CHANGED
|
@@ -44,19 +44,19 @@ Currency=Para birimi
|
|
|
44
44
|
CurrencyCode=Para birimi kodu
|
|
45
45
|
|
|
46
46
|
#XTIT: Currency Code Description
|
|
47
|
-
CurrencyCode.Description=ISO 4217
|
|
47
|
+
CurrencyCode.Description=ISO 4217'ye g\u00F6re belirtilen para birimi kodu
|
|
48
48
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=Para birimi sembol\u00FC
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=\u00DClke
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=\u00DClke/b\u00F6lge
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=\u00DClke kodu
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=\u00DClke/b\u00F6lge kodu
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=ISO 3166-1
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=ISO 3166-1'e g\u00F6re belirtilen \u00FClke/b\u00F6lge kodu
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=Dil
|
|
@@ -65,7 +65,7 @@ Language=Dil
|
|
|
65
65
|
LanguageCode=Dil kodu
|
|
66
66
|
|
|
67
67
|
#XTIT: Language Code Description
|
|
68
|
-
LanguageCode.Description=ISO 639-1
|
|
68
|
+
LanguageCode.Description=ISO 639-1'e g\u00F6re belirtilen dil kodu
|
|
69
69
|
|
|
70
70
|
#XTIT: User Identifier
|
|
71
71
|
UserID=Kullan\u0131c\u0131 tan\u0131t\u0131c\u0131s\u0131
|
|
@@ -49,13 +49,13 @@ CurrencyCode.Description=ISO 4217 \u6307\u5B9A\u7684\u8D27\u5E01\u4EE3\u7801
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=\u8D27\u5E01\u7B26\u53F7
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
52
|
+
#XTIT: Country/Region
|
|
53
53
|
Country=\u56FD\u5BB6/\u5730\u533A
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
56
|
CountryCode=\u56FD\u5BB6/\u5730\u533A\u4EE3\u7801
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
59
|
CountryCode.Description=ISO 3166-1 \u6307\u5B9A\u7684\u56FD\u5BB6/\u5730\u533A\u4EE3\u7801
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
@@ -49,14 +49,14 @@ CurrencyCode.Description=\u5DF2\u6309 ISO 4217 \u6307\u5B9A\u516C\u53F8\u4EE3\u7
|
|
|
49
49
|
#XTIT: Currency Symbol
|
|
50
50
|
CurrencySymbol=\u5E63\u5225\u7B26\u865F
|
|
51
51
|
|
|
52
|
-
#XTIT: Country
|
|
53
|
-
Country=\u570B\u5BB6
|
|
52
|
+
#XTIT: Country/Region
|
|
53
|
+
Country=\u570B\u5BB6/\u5730\u5340
|
|
54
54
|
|
|
55
|
-
#XTIT: Country Code
|
|
56
|
-
CountryCode=\u570B\u5BB6\u4EE3\u78BC
|
|
55
|
+
#XTIT: Country/Region Code
|
|
56
|
+
CountryCode=\u570B\u5BB6/\u5730\u5340\u4EE3\u78BC
|
|
57
57
|
|
|
58
|
-
#XTIT: Country Code Description
|
|
59
|
-
CountryCode.Description=\u5DF2\u6309 ISO 3166-1 \u6307\u5B9A\
|
|
58
|
+
#XTIT: Country/Region Code Description
|
|
59
|
+
CountryCode.Description=\u5DF2\u6309 ISO 3166-1 \u6307\u5B9A\u570B\u5BB6/\u5730\u5340\u4EE3\u78BC
|
|
60
60
|
|
|
61
61
|
#XTIT: Language
|
|
62
62
|
Language=\u8A9E\u8A00
|