Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Commit

Permalink
Replace f.e. with e.g. (#120)
Browse files Browse the repository at this point in the history
See <merriam-webster.com/dictionary/e.g.>
  • Loading branch information
FloEdelmann authored and ENT8R committed Feb 3, 2022
1 parent b5a858a commit efa756d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions global.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand All @@ -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
}
}
Expand Down

0 comments on commit efa756d

Please sign in to comment.