feat: hebrew translation (#613)

This commit is contained in:
Benny Powers
2021-12-07 18:13:20 +02:00
committed by GitHub
parent 0eba0d4b4a
commit 59830a4793

20
src/translations/he.ts Normal file
View File

@@ -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;