Skip to content

Commit

Permalink
Fixes #32
Browse files Browse the repository at this point in the history
  • Loading branch information
eprovst committed Apr 16, 2019
1 parent c90a22d commit e07c845
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 31 deletions.
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module github.com/Wraparound/wrap

require (
github.com/flopp/go-findfont v0.0.0-20180308170802-e788239e52bc
github.com/flopp/go-findfont v0.0.0-20190129180057-9c9287a99f3b
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/signintech/gopdf v0.8.1-0.20180903072759-36ecb37321d6
github.com/signintech/gopdf v0.9.0
github.com/spf13/cobra v0.0.3
github.com/spf13/pflag v1.0.3 // indirect
)
14 changes: 8 additions & 6 deletions languages/dutch.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,26 @@ var DutchTranslation = Translation{
Language: Dutch,

SceneTags: []string{
"int", "ext", "est", "int./ext", "int/ext", "i/e",
"bin", "bui", "bin./bui", "open", "bin/bui", "bi/bu",
"int ", "ext ", "est ", "int./ext ", "int/ext ", "i/e ",
"int. ", "ext. ", "est. ", "int./ext. ", "int/ext. ", "i/e. ",
"bin ", "bui ", "bin./bui ", "open ", "bin/bui ", "bi/bu ",
"bin. ", "bui. ", "bin./bui. ", "open. ", "bin/bui. ", "bi/bu. ",
},

StageplaySceneTags: []string{
"scene", "scène",
"scene ", "scène ",
},

TransitionTags: []string{
"TO:", "NAAR:",
" TO:", " NAAR:",
},

BeginActTags: []string{
"BEDRIJF",
"BEDRIJF ",
},

EndActTags: []string{
"EINDE BEDRIJF", "EINDE VAN BEDRIJF",
"EINDE BEDRIJF ", "EINDE VAN BEDRIJF ",
},

More: "(MEER)",
Expand Down
11 changes: 6 additions & 5 deletions languages/english.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,24 @@ var EnglishTranslation = Translation{
Language: English,

SceneTags: []string{
"int", "ext", "est", "int./ext", "int/ext", "i/e",
"int ", "ext ", "est ", "int./ext ", "int/ext ", "i/e ",
"int. ", "ext. ", "est. ", "int./ext. ", "int/ext. ", "i/e. ",
},

StageplaySceneTags: []string{
"scene",
"scene ",
},

TransitionTags: []string{
"TO:",
" TO:",
},

BeginActTags: []string{
"ACT",
"ACT ",
},

EndActTags: []string{
"END OF ACT",
"END OF ACT ",
},

More: "(MORE)",
Expand Down
11 changes: 6 additions & 5 deletions languages/french.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,24 @@ var FrenchTranslation = Translation{
Language: French,

SceneTags: []string{
"int", "ext", "est", "int./ext", "int/ext", "i/e",
"int ", "ext ", "est ", "int./ext ", "int/ext ", "i/e ",
"int. ", "ext. ", "est. ", "int./ext. ", "int/ext. ", "i/e. ",
},

StageplaySceneTags: []string{
"scene", "scène",
"scene ", "scène ",
},

TransitionTags: []string{
"TO:", "A:", "À:",
" TO:", " A:", " À:",
},

BeginActTags: []string{
"ACTE",
"ACTE ",
},

EndActTags: []string{
"FIN D'ACTE", "FIN D' ACTE",
"FIN D'ACTE ", "FIN D' ACTE ",
},

More: "(PLUS)",
Expand Down
14 changes: 8 additions & 6 deletions languages/german.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,26 @@ var GermanTranslation = Translation{
Language: German,

SceneTags: []string{
"int", "ext", "est", "int./ext", "int/ext", "i/e",
"etabl",
"int ", "ext ", "est ", "int./ext ", "int/ext ", "i/e ",
"int. ", "ext. ", "est. ", "int./ext. ", "int/ext. ", "i/e. ",
"etabl ",
"etabl. ",
},

StageplaySceneTags: []string{
"szene",
"szene ",
},

TransitionTags: []string{
"TO:", "ZU:",
" TO:", " ZU:",
},

BeginActTags: []string{
"AKT",
"AKT ",
},

EndActTags: []string{
"ENDE DES AKTS", "ENDE DES AKTES",
"ENDE DES AKTS ", "ENDE DES AKTES ",
},

More: "(MEHR)",
Expand Down
8 changes: 1 addition & 7 deletions prime/complete.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e07c845

Please sign in to comment.