Skip to content

Commit

Permalink
Merge branch 'v2rayA:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
MarksonHon authored Feb 22, 2024
2 parents 65fa1db + 671ade0 commit f01b23e
Show file tree
Hide file tree
Showing 5 changed files with 437 additions and 2 deletions.
4 changes: 3 additions & 1 deletion gui/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,9 @@ export default {
langs: [
{ flag: "zh", alt: "简体中文" },
{ flag: "en", alt: "English" },
{ flag: "fa", alt: "فارسی" }
{ flag: "fa", alt: "فارسی" },
{ flag: "ru", alt: "Русский"},
{ flag: "pt", alt: "Português (Brasil)" }
],
outboundName: "proxy",
outbounds: ["proxy"],
Expand Down
100 changes: 100 additions & 0 deletions gui/src/assets/img/flags/flag_pt.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions gui/src/assets/img/flags/flag_ru.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion gui/src/locales/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
import zh from "./zh";
import en from "./en";
import fa from "./fa-ir";
import ru from './ru';
import pt from './pt-br';

export default {
zh,
en,
fa
fa,
ru,
pt,
};
Loading

0 comments on commit f01b23e

Please sign in to comment.