summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorWalter Pagani <paganiwalter@gmail.com>2021-01-09 19:55:43 -0300
committerGitHub <noreply@github.com>2021-01-09 23:55:43 +0100
commitd042b9da811b4a9961054a07130e27768a52790a (patch)
treee559b5c6a2ce418965864e1e5c764b9ed8443c25 /docs
parentc50b4edc223a2ea184203d087e5e509f8b7e2e79 (diff)
downloadwiki-d042b9da811b4a9961054a07130e27768a52790a.tar.gz
wiki-d042b9da811b4a9961054a07130e27768a52790a.tar.bz2
wiki-d042b9da811b4a9961054a07130e27768a52790a.zip
chore(wiki): add `quest_request_items_locale` table (#325)
Diffstat (limited to 'docs')
-rw-r--r--docs/quest_request_items_locale.md55
1 files changed, 55 insertions, 0 deletions
diff --git a/docs/quest_request_items_locale.md b/docs/quest_request_items_locale.md
new file mode 100644
index 0000000..7940353
--- /dev/null
+++ b/docs/quest_request_items_locale.md
@@ -0,0 +1,55 @@
+# quest\_request\_items\_locale
+
+**Table: quest\_request\_items\_locale**
+
+[<-Back-to:World](database-world.md)
+
+**Structure**
+
+| Field | Type | Attribute | Key | Null | Default | Extra | Comment |
+|---------------------|-------------|-----------|-----|------|---------|-------|---------|
+| [ID][1] | int(10) | unsigned | PRI | NO | | | |
+| [locale][2] | varchar(4) | | PRI | NO | | | |
+| [CompletionText][3] | text | | | YES | NULL | | |
+| [VerifiedBuild][4] | smallint(6) | | | NO | | | |
+
+[1]: #id
+[2]: #locale
+[3]: #completiontext
+[4]: #verifiedbuild
+
+**Description of the fields**
+
+### ID
+
+Is the quest ID, obtained from quest_template
+
+### locale
+
+It is the language in which you want to make the translation.
+You can choose from the following:
+
+| ID | Language |
+|----|----------|
+| 0 | enUS |
+| 1 | koKR |
+| 2 | frFR |
+| 3 | deDE |
+| 4 | zhCN |
+| 5 | zhTW |
+| 6 | esES |
+| 7 | esMX |
+| 8 | ruRU |
+
+### CompletionText
+
+It is the text that is shown, while the quest is not completed.
+
+### VerifiedBuild
+
+### Example
+```sql
+DELETE FROM `quest_request_items_locale` WHERE `ID`=2 AND `locale`='esES';
+INSERT INTO `quest_request_items_locale` (`ID`, `locale`, `CompletionText`, `VerifiedBuild`) VALUES`ID`, `locale`, `CompletionText`, `VerifiedBuild`
+(2, "esES", "Sí, $gpoderoso:poderosa; $c, he presentido tu llegada. Confío que tienes más noticias que darme sobre tu caza.", 0);
+```