aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/attachment/attachment.vue4
-rw-r--r--src/i18n/messages.js25
2 files changed, 27 insertions, 2 deletions
diff --git a/src/components/attachment/attachment.vue b/src/components/attachment/attachment.vue
index 870ee233..98cd97fb 100644
--- a/src/components/attachment/attachment.vue
+++ b/src/components/attachment/attachment.vue
@@ -11,7 +11,7 @@
<img class="base03-border" referrerpolicy="no-referrer" :src="attachment.large_thumb_url || attachment.url"/>
</a>
- <video v-if="type === 'video' && !hidden" :src="attachment.url" controls loop></video>
+ <video class="base03" v-if="type === 'video' && !hidden" :src="attachment.url" controls loop></video>
<audio v-if="type === 'audio'" :src="attachment.url" controls></audio>
@@ -59,6 +59,7 @@
}
video {
+ max-height: 500px;
height: 100%;
border: 1px solid;
border-radius: 5px;
@@ -103,6 +104,7 @@
.text {
flex: 2;
margin: 8px;
+ word-break: break-all;
h1 {
font-size: 14px;
margin: 0px;
diff --git a/src/i18n/messages.js b/src/i18n/messages.js
index 43d77671..33e1cd3b 100644
--- a/src/i18n/messages.js
+++ b/src/i18n/messages.js
@@ -244,7 +244,8 @@ const et = {
show_new: 'Näita uusi',
error_fetching: 'Viga uuenduste laadimisel',
up_to_date: 'Uuendatud',
- load_older: 'Kuva vanemaid staatuseid'
+ load_older: 'Kuva vanemaid staatuseid',
+ conversation: 'Vestlus'
},
settings: {
user_settings: 'Kasutaja sätted',
@@ -275,6 +276,28 @@ const et = {
read: 'Loe!',
followed_you: 'alustas sinu jälgimist'
},
+ login: {
+ login: 'Logi sisse',
+ username: 'Kasutajanimi',
+ password: 'Parool',
+ register: 'Registreeru',
+ logout: 'Logi välja'
+ },
+ registration: {
+ registration: 'Registreerimine',
+ fullname: 'Kuvatav nimi',
+ email: 'E-post',
+ bio: 'Bio',
+ password_confirm: 'Parooli kinnitamine'
+ },
+ post_status: {
+ posting: 'Postitan',
+ default: 'Just sõitsin elektrirongiga Tallinnast Pääskülla.'
+ },
+ finder: {
+ find_user: 'Otsi kasutajaid',
+ error_fetching_user: 'Viga kasutaja leidmisel'
+ },
general: {
submit: 'Postita'
}