From 59830a47938364d29b2ff1f2133d4a7f7b31fdf1 Mon Sep 17 00:00:00 2001 From: Benny Powers Date: Tue, 7 Dec 2021 18:13:20 +0200 Subject: [PATCH] feat: hebrew translation (#613) --- src/translations/he.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/translations/he.ts diff --git a/src/translations/he.ts b/src/translations/he.ts new file mode 100644 index 000000000..5d95484e1 --- /dev/null +++ b/src/translations/he.ts @@ -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;