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 Feb 3, 2022
1 parent ec99ee5 commit 2ecce80
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 @@ -81,7 +81,7 @@ global:
// Preference #2 and #3 are not available in JawgMaps
// 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 @@ -102,10 +102,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 2ecce80

Please sign in to comment.