-
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.
feat: add en messages prop, mb will need
- Loading branch information
1 parent
414e06c
commit 5753024
Showing
1 changed file
with
55 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Message templates | ||
message.welcome=Welcome, %s! To see what the bot can do, press /help | ||
message.help=Commands:<br><br>π <b>/newquery</b> β <i>Create a new job query</i><br>π <b>/myqueries</b> β <i>Show your saved queries</i> | ||
message.query.prompt=π Name your configuration? If you changed your mind, press /cancel | ||
message.user.queries=π My configurations: | ||
message.no.saved.queries=βΉοΈ No saved configurations. Press /newquery to create something new! | ||
message.query.output=π Configuration <b>%s</b> with query '<b>%s</b>'. What would you like to do with it? | ||
message.delete.confirmation=β Are you sure you want to delete the configuration <b>%s</b>? This action is permanent. | ||
message.config.deleted=β Configuration <b>%s</b> has been deleted. Happy now? | ||
message.config.exists=β οΈ A configuration named <b>%s</b> already exists. Duplicates are not cool. | ||
message.config.name.updated=Configuration name changed from <b>%s</b> to <b>%s</b>. | ||
message.query.set=Query <b>%s</b> has been set in configuration <b>%s</b>. | ||
message.exp.set=Experience <b>%s</b> has been set in configuration <b>%s</b>. | ||
message.area.set=Region <b>%s</b> has been set in configuration <b>%s</b>. | ||
message.any.area.set=Region is no longer considered in configuration <b>%s</b>. | ||
message.edu.save=Education level has been set in configuration <b>%s</b>. | ||
message.schedule.save=Work schedule has been set in configuration <b>%s</b>. | ||
message.config.not.found=β Configuration not found, unfortunately. | ||
message.invalid.input=β οΈ That can't be right! Check the input data. | ||
message.enter.config.name=Enter a new name for configuration <b>%s</b>: | ||
message.enter.query=Enter a query for configuration <b>%s</b>: | ||
message.enter.area=Enter a region name or <i>Any</i> for configuration <b>%s</b>: | ||
message.select.experience=Select work experience for configuration <b>%s</b>: | ||
message.select.education=Select the education level for configuration <b>%s</b>: | ||
message.select.schedule=Select the work schedule for configuration <b>%s</b>: | ||
message.command.cancelled=β Action cancelled. You can start again! | ||
message.menu.config.name=<i>β’ Configuration: </i> | ||
message.menu.config.query=<i>β’ Query: </i> | ||
message.menu.config.area=<i>β’ Region: </i> | ||
message.menu.config.experience=<i>β’ Work experience: </i> | ||
message.menu.config.education=<i>β’ Education level: </i> | ||
message.menu.config.schedule=<i>β’ Schedule: </i> | ||
|
||
# Admin message templates | ||
admin.message.no.permission=<b>You do not have the necessary permissions to execute this command.</b> | ||
admin.message.usage=Incorrect usage. Please enter the command as follows: `%s <password>` | ||
admin.message.enter.message=<b>Please enter the message to broadcast:</b> | ||
admin.message.incorrect.password=<i>The password you entered is incorrect. Please try again.</i> | ||
admin.message.sent=<b>The message has been successfully sent.</b> | ||
admin.message.searching.completed=<b>Vacancies searching has been successfully completed.</b> | ||
|
||
# Button texts | ||
button.update=π Update | ||
button.delete=ποΈ Delete | ||
button.delete.confirm=β Delete | ||
button.delete.cancel=β Keep | ||
button.update.config.name=Rename configuration | ||
button.update.query=Update query | ||
button.update.area=Update region | ||
button.update.experience=Update experience | ||
button.update.education=Update education | ||
button.update.schedule=Update schedule | ||
button.back=π Go back | ||
button.selected=\uD83D\uDD18 | ||
button.save=πΎ Save |