diff --git a/android/app/src/main/assets/public/blah/en-cat.json b/android/app/src/main/assets/public/blah/en-cat.json index 515cf00f..95c07f09 100644 --- a/android/app/src/main/assets/public/blah/en-cat.json +++ b/android/app/src/main/assets/public/blah/en-cat.json @@ -14,7 +14,7 @@ "dm.key.too.large": "meowchat key too large :o", "dm.key.not.found": "meowchat key not found :c", "dm.key.updated": "meowchat key updated successfully :3", - "body.too.large": "request body too large ><", + "body.too.large": "request too large ><", "invite.revoked": "invite revoked successfully", "invite.declined": "invite declined successfully", "account.creation.request.expired": "cat creation request expired. try again", @@ -33,12 +33,8 @@ "username.conditions.allowed": "cat name can only include {all}", "password.not.hashed.properly": "meow word is not hashed properly", "invalid.username.or.password": "invalid cat name or meow word", - "error.account.not.exist": "Meowccount Does Not Exist", "error.storage.limit.exceeded": "Storage Limit Exceeded, purr", - "error.username.taken": "Meowname is Taken", "error.network.error": "Network error, check connection or file size, meow.", - "error.body.too.large": "File is too large, meow! (max 10MB)", - "error.unknown.error": "Unknown error, purr", "account.not.exist": "cat with this name doesn't exist", "invalid.nonce": "invalid nonce. try again", "username.changed": "cat name changed successfully", @@ -122,7 +118,6 @@ "title.back.to.register": "back to registration", "title.details": "details", "title.members": "cats", - "placeholder.username": "cat name", "placeholder.captcha.code": "captcha code", "desc.messages.loading": "loading meows...", @@ -191,5 +186,11 @@ "action.attachment.poll": "Meowll", "action.attachment.uploading": "Uploading meowttachments...", "attachment.legacy": "Legacy meowttachment", - "warning.unencrypted": "This meowsage is not encrypted" + "warning.unencrypted": "This meowsage is not encrypted", + "action.change.avatar": "Change Cat Picture", + "action.change.banner": "Change Cat Banner", + "placeholder.type.text.emoji": "Type purr / meow...", + "action.cancel": "Cancel", + "title.crop.image": "Crop Image", + "title.zoom": "Zoom" } \ No newline at end of file diff --git a/android/app/src/main/assets/public/blah/en-us.json b/android/app/src/main/assets/public/blah/en-us.json index fdeaf7f6..e550f1b1 100644 --- a/android/app/src/main/assets/public/blah/en-us.json +++ b/android/app/src/main/assets/public/blah/en-us.json @@ -14,7 +14,7 @@ "dm.key.too.large": "DM key too large", "dm.key.not.found": "DM key not found", "dm.key.updated": "DM key updated successfully", - "body.too.large": "Request body too large", + "body.too.large": "Request too large", "invite.revoked": "Invite revoked successfully", "invite.declined": "Invite declined successfully", "account.creation.request.expired": "Account creation request expired. Try again", @@ -33,12 +33,8 @@ "username.conditions.allowed": "Username can only include {all}", "password.not.hashed.properly": "Password is not hashed properly", "invalid.username.or.password": "Invalid username or password", - "error.account.not.exist": "Account Does Not Exist", "error.storage.limit.exceeded": "Storage Limit Exceeded", - "error.username.taken": "Username is Taken", "error.network.error": "Network error, check connection or file size.", - "error.body.too.large": "File is too large (max 10MB)", - "error.unknown.error": "Unknown error", "account.not.exist": "Account with this name doesn't exist", "invalid.nonce": "Invalid nonce. Try again", "username.changed": "Username changed successfully", @@ -156,7 +152,6 @@ "title.loading": "Loading...", "title.details": "Details", "title.members": "Members", - "action.edit.profile": "Edit profile", "action.open.dm": "Open DM", "action.invite.accept": "Accept invite", @@ -191,5 +186,11 @@ "action.attachment.poll": "Poll", "action.attachment.uploading": "Uploading attachments...", "attachment.legacy": "Legacy attachment", - "warning.unencrypted": "This message is not encrypted" + "warning.unencrypted": "This message is not encrypted", + "action.change.avatar": "Change Avatar", + "action.change.banner": "Change Banner", + "placeholder.type.text.emoji": "Type text / emoji...", + "action.cancel": "Cancel", + "title.crop.image": "Crop Image", + "title.zoom": "Zoom" } \ No newline at end of file diff --git a/android/app/src/main/assets/public/blah/index.json b/android/app/src/main/assets/public/blah/index.json index 4571bb39..ecf850c2 100644 --- a/android/app/src/main/assets/public/blah/index.json +++ b/android/app/src/main/assets/public/blah/index.json @@ -1,4 +1,5 @@ { "en-us": { "english": "English (US)", "native": "English (US)" }, - "en-cat": { "english": "English (Cat)", "native": "Meowlish" } + "en-cat": { "english": "English (Cat)", "native": "Meowlish" }, + "pl-pl": { "english": "Polish", "native": "Polski" } } diff --git a/android/app/src/main/assets/public/icons.js b/android/app/src/main/assets/public/icons.js index 2d05a6b2..706ff6bf 100644 --- a/android/app/src/main/assets/public/icons.js +++ b/android/app/src/main/assets/public/icons.js @@ -3,6 +3,7 @@ const ICONS = { _create: function(content, defaultProps, customProps = {}) { let p = { ...defaultProps, ...customProps }; + if (customProps.width && !customProps.height) p.height = customProps.width; let strokeAttrs = p.strokeWidth ? ` stroke-width="${p.strokeWidth}" stroke-linecap="${p.strokeLinecap}" stroke-linejoin="${p.strokeLinejoin}"` : ""; let classAttr = p.className ? ` class="${p.className}"` : ""; let styleAttr = p.style ? ` style="${p.style}"` : ""; diff --git a/android/app/src/main/assets/public/index.html b/android/app/src/main/assets/public/index.html index e30afd98..2dff68be 100644 --- a/android/app/src/main/assets/public/index.html +++ b/android/app/src/main/assets/public/index.html @@ -93,17 +93,17 @@