From a828f3057c342fb26844327d8c5c8430d1b999db Mon Sep 17 00:00:00 2001 From: Flo Edelmann Date: Thu, 3 Feb 2022 10:35:53 +0100 Subject: [PATCH] Replace f.e. with e.g. (#120) See --- global.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/global.yaml b/global.yaml index b6af044..0fa3609 100644 --- a/global.yaml +++ b/global.yaml @@ -55,7 +55,7 @@ global: function() { var userLang = global.language; if (userLang) { - // Preference #1: Take name in own language (f.e. name:en used in Egypt a lot) + // Preference #1: Take name in own language (e.g. name:en used in Egypt a lot) var nameInUserLang = feature['name:'+userLang]; if (nameInUserLang) return nameInUserLang; @@ -79,7 +79,7 @@ global: if (elementLang && elementLang != userLang) { var userScript = global.language_script; - // Preference #2: Take international name (f.e. used in Greece a lot) + // Preference #2: Take international name (e.g. used in Greece a lot) var internationalName = feature["int_name"]; if (internationalName) return internationalName; @@ -100,10 +100,10 @@ global: if (nameInLatinScript) return nameInLatinScript; } - // Preference #6: Take name of any other language whose script is the same as the user's script (f.e. French signs in Laos) + // Preference #6: Take name of any other language whose script is the same as the user's script (e.g. French signs in Laos) // ... not implementable without a mapping of language code to script - // Preference #7: Take name of any other language whose script is in Latin (cause it's kind of "international") script (f.e. French signs in Laos) + // Preference #7: Take name of any other language whose script is in Latin (cause it's kind of "international") script (e.g. French signs in Laos) // ... not implementable without a mapping of language code to script } }