diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-02-16 00:06:00 +0200 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-02-16 00:06:00 +0200 |
commit | 96d81768bc60f42a884778eab3432987129425c8 (patch) | |
tree | 6de168de3974d2e9bba32669771516bd51313d20 /sandstorm-pkgdef.capnp | |
parent | cd012954e9cc577ffbf9b8b67a57c93b2b0ba6ee (diff) | |
download | wekan-96d81768bc60f42a884778eab3432987129425c8.tar.gz wekan-96d81768bc60f42a884778eab3432987129425c8.tar.bz2 wekan-96d81768bc60f42a884778eab3432987129425c8.zip |
v0.75
Diffstat (limited to 'sandstorm-pkgdef.capnp')
-rw-r--r-- | sandstorm-pkgdef.capnp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index b7a9ddab..8aec475f 100644 --- a/sandstorm-pkgdef.capnp +++ b/sandstorm-pkgdef.capnp @@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = ( appTitle = (defaultText = "Wekan"), # The name of the app as it is displayed to the user. - appVersion = 59, + appVersion = 60, # Increment this for every release. - appMarketingVersion = (defaultText = "0.74.0~2018-02-13"), + appMarketingVersion = (defaultText = "0.75.0~2018-02-16"), # Human-readable presentation of the app version. minUpgradableAppVersion = 0, @@ -118,12 +118,14 @@ const pkgdef :Spk.PackageDefinition = ( defaultText = "participate", localizations = [ (locale = "fr", text = "participer"), + (locale = "fi", text = "osallistu"), ], ), description = ( defaultText = "allows participating in the board", localizations = [ (locale = "fr", text = "permet de participer dans le tableau"), + (locale = "fi", text = "mahdollistaa taululle osallistumisen"), ], ) ), ( @@ -132,12 +134,14 @@ const pkgdef :Spk.PackageDefinition = ( defaultText = "configure", localizations = [ (locale = "fr", text = "configurer"), + (locale = "fi", text = "asetukset"), ], ), description = ( defaultText = "allows configuring the board", localizations = [ (locale = "fr", text = "permet de configurer le tableau"), + (locale = "fi", text = "mahdollistaa taulun asetusten määrittämisen"), ], ) )], @@ -147,6 +151,7 @@ const pkgdef :Spk.PackageDefinition = ( defaultText = "observer", localizations = [ (locale = "fr", text = "observateur"), + (locale = "fi", text = "tarkkailija"), ], ), permissions = [false, false], @@ -154,6 +159,7 @@ const pkgdef :Spk.PackageDefinition = ( defaultText = "can read", localizations = [ (locale = "fr", text = "peut lire"), + (locale = "fi", text = "voi lukea"), ], ) ), ( @@ -161,6 +167,7 @@ const pkgdef :Spk.PackageDefinition = ( defaultText = "member", localizations = [ (locale = "fr", text = "membre"), + (locale = "fi", text = "jäsen"), ], ), permissions = [true, false], @@ -168,6 +175,7 @@ const pkgdef :Spk.PackageDefinition = ( defaultText = "can edit", localizations = [ (locale = "fr", text = "peut éditer"), + (locale = "fi", text = "voi muokata"), ], ), default = true, |