Skip to content

Instantly share code, notes, and snippets.

@javve
Forked from pushmatrix/translations.js
Last active December 21, 2015 08:29
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 javve/6278357 to your computer and use it in GitHub Desktop.
Save javve/6278357 to your computer and use it in GitHub Desktop.
FS.keywords = {
function: 'funktion',
if: 'om',
else: 'annars',
for: 'för',
while: 'medan',
return: 'återvänd',
do: 'gör',
var: 'var',
in: 'inne',
let: 'låt',
new: 'ny',
try: 'försök',
case: 'fall',
this: 'detta',
with: 'med',
break: 'bryt',
throw: 'kasta',
catch: 'fånga',
switch: 'byt',
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