diff --git a/web/locales/en/en.yaml b/web/locales/en/en.yaml new file mode 100644 index 0000000..7688088 --- /dev/null +++ b/web/locales/en/en.yaml @@ -0,0 +1,17 @@ +en: + title: Files + description: My file share + keywords: files ftp share self-host + back-home: Back home + stats: + files: Files + directories: Directories + filter: Type in to filter this directory (case insensitive) + table: + name: Name + date: Date + size: Size + no-script-explain: With scripts deactivated you loose some QoL features like overlay to view files without need to leave a page, filter of directory's content, and navigation using arrow keys. + footer: + author: Alexander ❝Arav❞ Andreev + privacy: Privacy statements \ No newline at end of file diff --git a/web/locales/locales.go b/web/locales/locales.go new file mode 100644 index 0000000..10b2462 --- /dev/null +++ b/web/locales/locales.go @@ -0,0 +1,7 @@ +package locales + +import "embed" + +//go:embed en +//go:embed ru +var Content embed.FS diff --git a/web/locales/ru/ru.yaml b/web/locales/ru/ru.yaml new file mode 100644 index 0000000..6aef8bc --- /dev/null +++ b/web/locales/ru/ru.yaml @@ -0,0 +1,17 @@ +ru: + title: Файлы + description: Моя файловая шара + keywords: файлы шара ftp селф-хост само-хост self-host + back-home: Назад домой + stats: + files: Файлы + directories: Директории + filter: Фильтр по содержимому директории (регистронезависим) + table: + name: Имя + date: Дата + size: Размер + no-script-explain: С отключенными скриптами ты теряешь такие удобные функции, как оверлей для просмотра файлов без необходимости покидать страницу, фильтр по содержимому директории и навигацию стрелками. + footer: + author: Александр «Arav» Андреев + privacy: О приватности \ No newline at end of file