Skip to content

Commit

Permalink
feat: hebrew translation (#613)
Browse files Browse the repository at this point in the history
  • Loading branch information
bennypowers committed Dec 7, 2021
1 parent 0eba0d4 commit 59830a4
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/translations/he.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { registerTranslation } from '../utilities/localize';
import type { Translation } from '../utilities/localize';

const translation: Translation = {
$code: 'he',
$name: 'עברית',
$dir: 'rtl',

close: 'סגור',
copy: 'העתק',
progress: 'התקדמות',
scroll_to_end: 'גלול עד הסוף',
scroll_to_start: 'גלול להתחלה',
select_a_color_from_the_screen: 'בחור צבע מהמסך',
toggle_color_format: 'החלף פורמט צבע'
};

registerTranslation(translation);

export default translation;

0 comments on commit 59830a4

Please sign in to comment.