summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2016-01-19 18:57:49 +0100
committerYorhel <git@yorhel.nl>2016-01-19 18:57:49 +0100
commitf7f096f2a07658381c4f98aef81c4991d997d19f (patch)
tree4f9aa0a0647def7b7c6930fe6e28780887cf10bf /data
parent9b98e609a5f9cbbf754184629c23a7f68c759c0a (diff)
global.pl: Fix incorrect naming of producer relation types
Diffstat (limited to 'data')
-rw-r--r--data/global.pl12
1 files changed, 6 insertions, 6 deletions
diff --git a/data/global.pl b/data/global.pl
index 7362ddea..62b41b43 100644
--- a/data/global.pl
+++ b/data/global.pl
@@ -128,12 +128,12 @@ our %S;
prod_relations => ordhash(
'old' => [ 'new', 'Formerly' ],
'new' => [ 'old', 'Succeeded by' ],
- 'spa' => [ 'ori', 'Subsidiary' ],
- 'ori' => [ 'spa', 'Parent producer' ],
- 'sub' => [ 'par', 'Imprint' ],
- 'par' => [ 'sub', 'Parent brand' ],
- 'imp' => [ 'ipa', 'Spawned' ],
- 'ipa' => [ 'imp', 'Originated from' ],
+ 'spa' => [ 'ori', 'Spawned' ],
+ 'ori' => [ 'spa', 'Originated from' ],
+ 'sub' => [ 'par', 'Subsidiary' ],
+ 'par' => [ 'sub', 'Parent producer' ],
+ 'imp' => [ 'ipa', 'Imprint' ],
+ 'ipa' => [ 'imp', 'Parent brand ' ],
),
age_ratings => [-1, 0, 6..18],
release_types => [qw|complete partial trial|],