Update translationfiles

This commit is contained in:
Ozzieisaacs
2019-05-31 15:48:19 +02:00
parent 4fecce0a0d
commit 6662a58cb0
28 changed files with 13685 additions and 11130 deletions

View File

@@ -28,6 +28,7 @@ parser.add_argument('-p', metavar='path', help='path and name to settings db, e.
parser.add_argument('-g', metavar='path', help='path and name to gdrive db, e.g. /opt/gd.db')
parser.add_argument('-c', metavar='path', help='path and name to SSL certfile, e.g. /opt/test.cert, works only in combination with keyfile')
parser.add_argument('-k', metavar='path', help='path and name to SSL keyfile, e.g. /opt/test.key, works only in combination with certfile')
parser.add_argument('-v', action='store_true', help='shows version number and exits Calibre-web')
args = parser.parse_args()
generalPath = os.path.normpath(os.getenv("CALIBRE_DBPATH",
@@ -67,3 +68,7 @@ if (args.k and not args.c) or (not args.k and args.c):
if args.k is "":
keyfilepath = ""
if args.v:
print("Calibre-web version: 0.6.4")
sys.exit(1)