-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
72 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import messages from '@intlify/unplugin-vue-i18n/messages' | ||
import { useLocalStorage } from '@vueuse/core' | ||
import { createI18n } from 'vue-i18n' | ||
|
||
const locale = useLocalStorage('valoryLocale', 'en') | ||
|
||
export const i18n = createI18n({ | ||
legacy: false, | ||
locale: locale.value, | ||
fallbackLocale: 'en', | ||
messages | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"landing": { | ||
"pretitle": "STREAM OVERLAY 2.0", | ||
"description": "Grab your audience's attention with real-time VALORANT stats!", | ||
"features": { | ||
"first": "Customize your overlay according to your stream.", | ||
"second": "It's absolutely FREE! There is support for many popular streaming programs like OBS and others.", | ||
"third": "Setup once and everything will always work!" | ||
}, | ||
"buttons": { | ||
"first": "How does it work?", | ||
"second": "Create your overlay" | ||
}, | ||
"footer": "Made with" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"landing": { | ||
"pretitle": "ОВЕРЛЕЙ ДЛЯ СТРИМА 2.0", | ||
"description": "Привлекайте внимание аудитории статистикой VALORANT!", | ||
"features": { | ||
"first": "Кастомизируйте свой оверлей в соответствии с Вашим стримом.", | ||
"second": "Это абсолютно бесплатно! Есть поддержка для многих популярных стриминг-программ, например OBS и другие.", | ||
"third": "Установите один раз и все будет работать как по маслу!" | ||
}, | ||
"buttons": { | ||
"first": "Как это работает?", | ||
"second": "Создайте свой оверлей" | ||
}, | ||
"footer": "Сделано с" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters