summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/onionshare_cli/resources/version.txt2
-rw-r--r--cli/onionshare_cli/settings.py18
-rw-r--r--cli/pyproject.toml2
-rw-r--r--cli/setup.py2
4 files changed, 14 insertions, 10 deletions
diff --git a/cli/onionshare_cli/resources/version.txt b/cli/onionshare_cli/resources/version.txt
index 355ca743..c0943d3e 100644
--- a/cli/onionshare_cli/resources/version.txt
+++ b/cli/onionshare_cli/resources/version.txt
@@ -1 +1 @@
-2.3.dev2 \ No newline at end of file
+2.3 \ No newline at end of file
diff --git a/cli/onionshare_cli/settings.py b/cli/onionshare_cli/settings.py
index 82fcd6b9..00dde00c 100644
--- a/cli/onionshare_cli/settings.py
+++ b/cli/onionshare_cli/settings.py
@@ -63,32 +63,36 @@ class Settings(object):
# mapped to the language name, in that language
self.available_locales = {
"ar": "العربية", # Arabic
- #'bn': 'বাংলা', # Bengali (commented out because not at 90% translation)
+ "bn": "বাংলা", # Bengali
"ca": "Català", # Catalan
"zh_Hant": "正體中文 (繁體)", # Traditional Chinese
"zh_Hans": "中文 (简体)", # Simplified Chinese
+ "hr": "Hrvatski", # Croatian
"da": "Dansk", # Danish
"nl": "Nederlands", # Dutch
"en": "English", # English
- # "fi": "Suomi", # Finnish (commented out because not at 90% translation)
+ "fi": "Suomi", # Finnish
"fr": "Français", # French
+ "gl": "Galego", # Galician
"de": "Deutsch", # German
"el": "Ελληνικά", # Greek
"is": "Íslenska", # Icelandic
- "ga": "Gaeilge", # Irish
+ # "ga": "Gaeilge", # Irish
"it": "Italiano", # Italian
"ja": "日本語", # Japanese
+ "ckb": "Soranî", # Kurdish (Central)
"nb_NO": "Norsk Bokmål", # Norwegian Bokmål
- "fa": "فارسی", # Persian
+ # "fa": "فارسی", # Persian
"pl": "Polski", # Polish
"pt_BR": "Português (Brasil)", # Portuguese Brazil
"pt_PT": "Português (Portugal)", # Portuguese Portugal
- "ro": "Română", # Romanian
+ "sk": "Slovenčina", # Slovak
+ # "ro": "Română", # Romanian
"ru": "Русский", # Russian
- "sr_Latn": "Srpska (latinica)", # Serbian (latin)
+ # "sr_Latn": "Srpska (latinica)", # Serbian (latin)
"es": "Español", # Spanish
"sv": "Svenska", # Swedish
- "te": "తెలుగు", # Telugu
+ # "te": "తెలుగు", # Telugu
"tr": "Türkçe", # Turkish
"uk": "Українська", # Ukrainian
}
diff --git a/cli/pyproject.toml b/cli/pyproject.toml
index eb5db684..2843d0bb 100644
--- a/cli/pyproject.toml
+++ b/cli/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "onionshare_cli"
-version = "2.3.dev2"
+version = "2.3"
description = "OnionShare lets you securely and anonymously send and receive files. It works by starting a web server, making it accessible as a Tor onion service, and generating an unguessable web address so others can download files from you, or upload files to you. It does _not_ require setting up a separate server or using a third party file-sharing service."
authors = ["Micah Lee <micah@micahflee.com>"]
license = "GPLv3+"
diff --git a/cli/setup.py b/cli/setup.py
index 1ebe028c..fa597408 100644
--- a/cli/setup.py
+++ b/cli/setup.py
@@ -25,7 +25,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
import setuptools
-version = "2.3.dev2"
+version = "2.3"
setuptools.setup(
name="onionshare-cli",