Skip to content

Commit

Permalink
implemented chinese translation
Browse files Browse the repository at this point in the history
  • Loading branch information
tappi287 committed May 16, 2022
1 parent 87e42e4 commit 680a5fa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion openvr_fsr_app_win64_setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "OpenVR-FSR-App"
#define MyAppVersion "0.9.8"
#define MyAppVersion "0.9.82"
#define MyAppPublisher "Stefan Tapper"
#define MyAppURL "https://ilikeviecher.com"
#define MyAppDistDirName "openvr_fsr_app"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vr_mod_app",
"version": "0.9.8",
"version": "0.9.82",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
4 changes: 3 additions & 1 deletion src/lang/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import en from './translations/en';
import de from './translations/de';
import ja from './translations/ja';
import zh from './translations/zh';

export default {
en,
de,
ja
ja,
zh
};

0 comments on commit 680a5fa

Please sign in to comment.