Skip to content

Instantly share code, notes, and snippets.

@pushmatrix
Created August 20, 2013 02:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save pushmatrix/6276345 to your computer and use it in GitHub Desktop.
Save pushmatrix/6276345 to your computer and use it in GitHub Desktop.
Translations
FS.keywords = {
function: 'funktion',
if: 'om',
else: 'annars',
for: 'för',
while: 'medan',
return: 'återvända',
do: 'göra',
var: 'var',
in: 'inne',
let: 'låt',
new: 'ny',
try: 'försök',
case: 'fall',
this: 'detta',
with: 'med',
break: 'bryta',
throw: 'kasta',
catch: 'fånga',
switch: 'strömbrytare',
continue: 'fortsätt',
debugger: 'debugger',
instanceof: 'exempelav',
typeof: 'typav',
void: 'ogiltig',
delete: 'tabort',
default: 'standard',
finally: 'slutligen'
};
FS.literals = {
true: 'sant',
false: 'falsk',
null: 'noll'
};
FS.identifiers = {
document: 'dokument'
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment