Skip to content

Commit e07f2f5

Browse files
authored
add turkish, bump to 1.1.4 (#100)
1 parent b4ee60a commit e07f2f5

File tree

7 files changed

+36
-4
lines changed

7 files changed

+36
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -418,6 +418,7 @@ Also when adding a custom type, it's wise to stay away from any [ISO 369 languag
418418
|`TH`|Thai|Tailandés|Thaï|タイ語|Thais|Tailandês|Thajské|Thailändska|
419419
|`TL`|Tagalog|Tagalo|Tagalog|タガログ語|Tagalog|Tagalo|Tagalské|Tagalog|
420420
|`TR`|Tradition Study|Estudio de tradicion|Étude des Traditions|伝統|Traditie Studie|Estudo de Tradições|Tradičné štúdium|Traditionsmöte|
421+
|`TUR`|Turkish|Turco|Turc|トルコ語|Turks|Turco|Turecký|Turkiska|
421422
|`UK`|Ukrainian|Ucraniano|Ukrainien|ウクライナ語|Oekraïens|Ucraniano|Ukrajinské|Ukrainska|
422423
|`W`|Women|Mujer|Femmes|女性|Vrouwen|Mulheres|Ženy|Kvinnomöte|
423424
|`X`|Wheelchair Access|Acceso en silla de ruedas|Accès aux fauteuils roulants|車いすアクセス|Toegankelijk voor rolstoelgebruikers|Acesso a Cadeiras de Rodas|Prístup pre vozíčkarov|Handikappanpassat|

data/types.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -699,6 +699,16 @@
699699
"sk": "Tradičné štúdium",
700700
"sv": "Traditionsmöte"
701701
},
702+
"TUR": {
703+
"en": "Turkish",
704+
"es": "Turco",
705+
"fr": "Turc",
706+
"ja": "トルコ語",
707+
"nl": "Turks",
708+
"pt": "Turco",
709+
"sk": "Turecký",
710+
"sv": "Turkiska"
711+
},
702712
"UK": {
703713
"en": "Ukrainian",
704714
"es": "Ucraniano",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code4recovery/spec",
3-
"version": "1.0.10",
3+
"version": "1.1.4",
44
"description": "The goal of the Meeting Guide API is help sync information about AA meetings. It was developed for the Meeting Guide app, but it is non-proprietary and other systems are encouraged to make use of it.",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

src/__tests__/index.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ describe("isMeetingType", () => {
2323

2424
it("should return supported languages", () => {
2525
const enTypes = getTypesForLanguage("en");
26-
expect(Object.keys(enTypes)).toHaveLength(75);
26+
expect(Object.keys(enTypes)).toHaveLength(77);
2727
});
2828
});

src/types.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -770,6 +770,17 @@
770770
'pt' => 'Estudo de Tradições',
771771
'sk' => 'Tradičné štúdium',
772772
'sv' => 'Traditionsmöte',
773+
),
774+
'TUR' =>
775+
(object) array(
776+
'en' => 'Turkish',
777+
'es' => 'Turco',
778+
'fr' => 'Turc',
779+
'ja' => 'トルコ語',
780+
'nl' => 'Turks',
781+
'pt' => 'Turco',
782+
'sk' => 'Turecký',
783+
'sv' => 'Turkiska',
773784
),
774785
'UK' =>
775786
(object) array(

src/types.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -699,6 +699,16 @@ export const types = {
699699
sk: "Tradičné štúdium",
700700
sv: "Traditionsmöte",
701701
},
702+
TUR: {
703+
en: "Turkish",
704+
es: "Turco",
705+
fr: "Turc",
706+
ja: "トルコ語",
707+
nl: "Turks",
708+
pt: "Turco",
709+
sk: "Turecký",
710+
sv: "Turkiska",
711+
},
702712
UK: {
703713
en: "Ukrainian",
704714
es: "Ucraniano",

0 commit comments

Comments
 (0)