Skip to content

Instantly share code, notes, and snippets.

@BlackFrog1
Created March 24, 2011 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BlackFrog1/885329 to your computer and use it in GitHub Desktop.
Save BlackFrog1/885329 to your computer and use it in GitHub Desktop.
Localized Dictionary for the Formatter
Localized String: {
LookupDictionary = {
EastKey = (
East,
E
);
NorthKey = (
North,
N
);
SouthKey = (
South,
S
);
WestKey = (
West,
W
);
};
ReverseDictionary = {
E = EastKey;
N = NorthKey;
S = SouthKey;
W = WestKey;
};
}
Localized String: {
LookupDictionary = {
EastKey = (
Est,
E
);
NorthKey = (
Nord,
N
);
SouthKey = (
Sud,
S
);
WestKey = (
Ouest,
O
);
};
ReverseDictionary = {
E = EastKey;
N = NorthKey;
O = WestKey;
S = SouthKey;
};
}
Localized String: {
LookupDictionary = {
EastKey = (
Este,
E
);
NorthKey = (
Norte,
N
);
SouthKey = (
Sur,
S
);
WestKey = (
Oeste,
O
);
};
ReverseDictionary = {
E = EastKey;
N = NorthKey;
O = WestKey;
S = SouthKey;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment