Updating stuff

This commit is contained in:
DrMint 2023-07-05 20:33:01 +02:00
parent ed7baa41ff
commit 4d818ed855
10 changed files with 3473 additions and 2712 deletions

6050
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -10,8 +10,8 @@
"strapi": "strapi"
},
"dependencies": {
"@strapi/plugin-graphql": "4.10.5",
"@strapi/strapi": "4.10.5",
"@strapi/plugin-graphql": "4.11.1",
"@strapi/strapi": "4.11.1",
"sqlite3": "5.1.6"
},
"author": {

View File

@ -29,6 +29,18 @@
"NieR",
"YoRHa"
]
},
"titles": {
"displayName": "Categories Title",
"type": "component",
"repeatable": true,
"component": "translations.categories-title"
},
"slug": {
"type": "string",
"required": true,
"unique": true,
"regex": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
}
}
}

View File

@ -19,6 +19,18 @@
"short": {
"type": "string",
"required": true
},
"titles": {
"displayName": "Game Platforms Translations",
"type": "component",
"repeatable": true,
"component": "translations.game-platforms-translations"
},
"slug": {
"type": "string",
"regex": "^[a-z0-9]+(?:-[a-z0-9]+)*$",
"unique": true,
"required": true
}
}
}

View File

@ -160,9 +160,6 @@
"relation": "oneToOne",
"target": "api::language.language"
},
"select_language": {
"type": "string"
},
"language": {
"type": "string"
},
@ -271,15 +268,6 @@
"status": {
"type": "string"
},
"transcribers": {
"type": "string"
},
"translators": {
"type": "string"
},
"proofreaders": {
"type": "string"
},
"transcript_notice": {
"type": "string"
},
@ -301,9 +289,6 @@
"open_settings": {
"type": "string"
},
"change_language": {
"type": "string"
},
"open_search": {
"type": "string"
},
@ -355,9 +340,6 @@
"secondary_language": {
"type": "string"
},
"combine_related_contents": {
"type": "string"
},
"previous_content": {
"type": "string"
},
@ -382,9 +364,6 @@
"available_at": {
"type": "string"
},
"search_title": {
"type": "string"
},
"want_it": {
"type": "string"
},
@ -406,9 +385,6 @@
"only_display_unmarked_items": {
"type": "string"
},
"display_all_items": {
"type": "string"
},
"table_of_contents": {
"type": "string"
},
@ -562,9 +538,6 @@
"player_name_tooltip": {
"type": "text"
},
"download_scans": {
"type": "string"
},
"search_placeholder": {
"type": "string"
},
@ -591,6 +564,15 @@
},
"author": {
"type": "string"
},
"download_archive": {
"type": "string"
},
"available_at_x": {
"type": "string"
},
"view_on_x": {
"type": "string"
}
}
}

View File

@ -11,6 +11,12 @@
"type": "relation",
"relation": "oneToOne",
"target": "api::audio-subtype.audio-subtype"
},
"tracks": {
"displayName": "track_set",
"type": "component",
"repeatable": true,
"component": "sets.track-set"
}
}
}

View File

@ -31,6 +31,11 @@
"type": "relation",
"relation": "oneToMany",
"target": "api::language.language"
},
"platform": {
"type": "relation",
"relation": "oneToOne",
"target": "api::game-platform.game-platform"
}
}
}

View File

@ -0,0 +1,20 @@
{
"collectionName": "components_sets_track_sets",
"info": {
"displayName": "track_set",
"description": ""
},
"options": {},
"attributes": {
"slug": {
"type": "string",
"required": true,
"unique": false,
"regex": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
},
"title": {
"type": "string",
"required": true
}
}
}

View File

@ -0,0 +1,20 @@
{
"collectionName": "components_translations_categories_titles",
"info": {
"displayName": "Categories Title"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"short": {
"type": "string"
},
"language": {
"type": "relation",
"relation": "oneToOne",
"target": "api::language.language"
}
}
}

View File

@ -0,0 +1,20 @@
{
"collectionName": "components_translations_game_platforms_translations",
"info": {
"displayName": "Game Platforms Translations"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"short": {
"type": "string"
},
"language": {
"type": "relation",
"relation": "oneToOne",
"target": "api::language.language"
}
}
}