-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #68 from gavrylenkoIvan/dev
fix(i18n): change messages keys
- Loading branch information
Showing
15 changed files
with
132 additions
and
112 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
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
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
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
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
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 |
---|---|---|
@@ -1,89 +1,95 @@ | ||
/* DO NOT EDIT, file generated by nestjs-i18n */ | ||
|
||
import { Path } from 'nestjs-i18n'; | ||
import { Path } from "nestjs-i18n"; | ||
export type I18nTranslations = { | ||
buttons: { | ||
profile: string; | ||
change_lang: string; | ||
help: string; | ||
partner: string; | ||
}; | ||
commands: { | ||
start: string; | ||
help: string; | ||
coop: string; | ||
profiles: string; | ||
}; | ||
errors: { | ||
unknown: string; | ||
only_private: string; | ||
limit_exceeded: string; | ||
age: { | ||
invalid: string; | ||
"buttons": { | ||
"profile": string; | ||
"change_lang": string; | ||
"help": string; | ||
"partner": string; | ||
}; | ||
about: { | ||
invalid: string; | ||
"commands": { | ||
"start": string; | ||
"help": string; | ||
"coop": string; | ||
"profiles": string; | ||
}; | ||
forbidden: string; | ||
}; | ||
messages: { | ||
lang: { | ||
update: string; | ||
select: string; | ||
changed: string; | ||
invalid: string; | ||
"errors": { | ||
"unknown": string; | ||
"only_private": string; | ||
"limit_exceeded": string; | ||
"age": { | ||
"invalid": string; | ||
}; | ||
"about": { | ||
"invalid": string; | ||
}; | ||
"forbidden": string; | ||
"throttler": string; | ||
}; | ||
user: { | ||
new: string; | ||
"messages": { | ||
"lang": { | ||
"update": string; | ||
"select": string; | ||
"changed": string; | ||
"invalid": string; | ||
}; | ||
"user": { | ||
"new": string; | ||
}; | ||
"name": { | ||
"send": string; | ||
}; | ||
"age": { | ||
"send": string; | ||
"invalid": string; | ||
}; | ||
"picture": { | ||
"send": string; | ||
}; | ||
"about": { | ||
"send": string; | ||
}; | ||
"game": { | ||
"invalid": string; | ||
"ok": string; | ||
"already_added": string; | ||
"send": string; | ||
}; | ||
"register": { | ||
"completed": string; | ||
}; | ||
"next_action": string; | ||
"searching_teammates": string; | ||
"report": { | ||
"ad": string; | ||
"send": string; | ||
"ok": string; | ||
"channel": { | ||
"ok": string; | ||
}; | ||
}; | ||
"profile": { | ||
"last": { | ||
"clear": string; | ||
"cleared": string; | ||
"no_more": string; | ||
}; | ||
"delete": { | ||
"message": string; | ||
"success": string; | ||
}; | ||
"update": string; | ||
"deleted": string; | ||
}; | ||
"send_message": { | ||
"enter": { | ||
"ua": string; | ||
"en": string; | ||
}; | ||
"photo": string; | ||
"sent": string; | ||
}; | ||
}; | ||
name: { | ||
send: string; | ||
}; | ||
age: { | ||
send: string; | ||
invalid: string; | ||
}; | ||
picture: { | ||
send: string; | ||
}; | ||
about: { | ||
send: string; | ||
}; | ||
game: { | ||
invalid: string; | ||
ok: string; | ||
already_added: string; | ||
send: string; | ||
}; | ||
register: { | ||
completed: string; | ||
}; | ||
next_action: string; | ||
searching_teammates: string; | ||
report: { | ||
ad: string; | ||
send: string; | ||
ok: string; | ||
channel: { | ||
ok: string; | ||
}; | ||
}; | ||
profile: { | ||
last: { | ||
clear: string; | ||
cleared: string; | ||
no_more: string; | ||
}; | ||
delete_success: string; | ||
deleted: string; | ||
update: string; | ||
}; | ||
send_message: { | ||
enter_ua: string; | ||
enter_en: string; | ||
photo: string; | ||
sent: string; | ||
}; | ||
}; | ||
}; | ||
export type I18nPath = Path<I18nTranslations>; |
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
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
Oops, something went wrong.
b3e4b2c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
team-ua-compodoc – ./
team-ua-compodoc-git-master-gavrylenkoivan.vercel.app
team-ua-compodoc-gavrylenkoivan.vercel.app
team-ua-compodoc.vercel.app