summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorWalter Pagani <paganiwalter@gmail.com>2021-01-13 20:03:05 -0300
committerGitHub <noreply@github.com>2021-01-14 00:03:05 +0100
commitabe6477ab99b32c6330254b1e39fab761c9f3a92 (patch)
tree74349afc81c2a0929c181e94bd25f05d50b13ce4 /docs
parentc3afe47b013fca85d8ed70811618a615aa2ce26e (diff)
downloadwiki-abe6477ab99b32c6330254b1e39fab761c9f3a92.tar.gz
wiki-abe6477ab99b32c6330254b1e39fab761c9f3a92.tar.bz2
wiki-abe6477ab99b32c6330254b1e39fab761c9f3a92.zip
update achievement_reward_locale (#363)
Diffstat (limited to 'docs')
-rw-r--r--docs/achievement_reward_locale.md25
1 files changed, 16 insertions, 9 deletions
diff --git a/docs/achievement_reward_locale.md b/docs/achievement_reward_locale.md
index 3c58a6f..6610241 100644
--- a/docs/achievement_reward_locale.md
+++ b/docs/achievement_reward_locale.md
@@ -4,20 +4,27 @@
**The \`achievement\_reward\_locale\` table**
+It is the table that stores the translations of the table `achievement_reward`, so that the game client can display the messages in different languages.
+
**Structure**
-| Field | Type | Attributes | Collation | Null | Key | Default | Extra | Comment |
-|---------|--------------|------------|-----------------|------|-----|---------|-------|---------|
-| ID | mediumint(8) | unsigned | | NO | PRI | 0 | | |
-| Locale | varchar(4) | | utf8_general_ci | NO | PRI | (NULL) | | |
-| Subject | text | | utf8_general_ci | YES | | (NULL) | | |
-| Text | text | | utf8_general_ci | YES | | (NULL) | | |
+| Field | Type | Attributes | Key | Null | Default | Extra | Comment |
+|--------------|--------------|------------|-----|------|---------|-------|---------|
+| [ID][1] | mediumint(8) | unsigned | PRI | NO | 0 | | |
+| [Locale][2] | varchar(4) | | PRI | NO | | | |
+| [Subject][3] | text | | | YES | | | |
+| [Text][4] | text | | | YES | | | |
+
+[1]: #id
+[2]: #locale
+[3]: #subject
+[4]: #text
**Description of the fields**
### ID
-It is the ID of the achievement obtained from `achievement_reward`
+It is the [ID](achievement_reward#id) of the achievement obtained from `achievement_reward`
### Locale
@@ -37,11 +44,11 @@ This is the language of the gaming client.
### Subject
-It is the text of the column `Subject` of the table `achievement_reward`
+It is the text of the column [Subject](achievement_reward#subject) of the table `achievement_reward`
### Text
-It is the text of the column `Body` of the table `achievement_reward`
+It is the text of the column [Body](achievement_reward#body) of the table `achievement_reward`
### Example
```sql