@shift72/core-template 0.3.4 → 0.3.5

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased](https://github.com/shift72/core-template/compare/0.3.4...HEAD)
3
+ ## [Unreleased](https://github.com/shift72/core-template/compare/0.3.5...HEAD)
4
+
5
+ ## [0.3.5](https://github.com/shift72/core-template/compare/0.3.4...0.3.5)
6
+
7
+ ### Fixed
8
+ - Nav vertical line is now hidden when search and language selector are both disabled.
9
+ - Decoupled footer and accept invite header language variables.
10
+ - Added missing rental duration language variables.
4
11
 
5
12
  ## [0.3.4](https://github.com/shift72/core-template/compare/0.3.3...0.3.4)
6
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shift72/core-template",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "Shift72 core template",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -8,11 +8,11 @@
8
8
  <main id="main" class="page form-page">
9
9
 
10
10
  <div class="page-header">
11
- <h1>{{ i18n("accept_invite_page_header") }}{{ i18n("site_owner") }}</h1>
11
+ <h1>{{i18n("accept_invite_page_header")}}</h1>
12
12
  </div>
13
13
 
14
14
  <div class="page-form">
15
- <s72-acceptinvite-form acceptinvite-url="{{ routeToPath("/acceptinvite.html") }}" />
15
+ <s72-acceptinvite-form acceptinvite-url="{{routeToPath("/acceptinvite.html")}}" />
16
16
  </div>
17
17
 
18
18
  </main>
@@ -74,7 +74,7 @@
74
74
 
75
75
  "social_media_buttons_title": { "other": "النشر " },
76
76
 
77
- "accept_invite_page_header": { "other": "أهلاً بك على" },
77
+ "accept_invite_page_header": { "other": "أهلا بك" },
78
78
  "acceptinvite_form_invalid_reset_password_token": { "other": "يبدو أنك طالبت بهذه الدعوة من قبل ، يجب عليك <a href=\"{{.SigninURL}}\"> تسجيل الدخول </a> بدلاً من ذلك. إذا نسيت كلمة المرور ، فيمكنك أيضًا <a href=\"{{.ForgotPasswordURL}}\"> إعادة تعيين كلمة المرور </a>." },
79
79
  "acceptinvite_complete": { "other": "شكراً لك. لقد تم إنشاء حسابك." },
80
80
  "acceptinvite_form_submit": { "other": "قبول الدعوة" },
@@ -215,6 +215,8 @@
215
215
  "shopping_info_available_until_date_explanation_rent": { "other": "لن تتمكن من عرض المحتوى بعد ذلك." },
216
216
  "shopping_info_available_until_date_explanation_buy": { "other": "لن تتمكن من عرض المحتوى بعد ذلك." },
217
217
 
218
+ "duration_hour": { "one": "1 ساعة", "other": "{{.Count}} ساعة" },
219
+ "duration_day": { "one": "1 يوم", "other": "{{.Count}} يوما" },
218
220
  "shopping_info_rental_period_duration": { "other": "تأجير لمدة {{.ValueUnit}} أيام" },
219
221
  "shopping_info_watch_window_duration": { "other": "تشغيل لمدة {{.Count}} ساعة." },
220
222
  "shopping_info_watch_window_explanation_film": {
@@ -140,7 +140,7 @@
140
140
  "other": "Compartir"
141
141
  },
142
142
  "accept_invite_page_header": {
143
- "other": "Benvingut a "
143
+ "other": "Benvingut"
144
144
  },
145
145
  "acceptinvite_form_invalid_reset_password_token": {
146
146
  "other": "Sembla que ja heu reclamat aquesta invitació, haureu de fer <a href=\"{{.SigninURL}}\">inicia la sessió</a> en canvi. Si heu oblidat la vostra contrasenya, també podeu <a href=\"{{.ForgotPasswordURL}}\">restablir la contrasenya</a>."
@@ -501,12 +501,12 @@
501
501
  "other": "No podreu veure el contingut després d'això."
502
502
  },
503
503
  "duration_hour": {
504
- "one": "1 hour",
505
- "other": "{{.Count}} hours"
504
+ "one": "1 hora",
505
+ "other": "{{.Count}} hores"
506
506
  },
507
507
  "duration_day": {
508
- "one": "1 day",
509
- "other": "{{.Count}} days"
508
+ "one": "1 dia",
509
+ "other": "{{.Count}} dies"
510
510
  },
511
511
  "shopping_info_rental_period_duration": {
512
512
  "other": "{{.Count}} Dia de lloguer "
@@ -125,7 +125,7 @@
125
125
  "other": "Del"
126
126
  },
127
127
  "accept_invite_page_header": {
128
- "other": "Velkommen til "
128
+ "other": "Velkommen"
129
129
  },
130
130
  "acceptinvite_form_invalid_reset_password_token": {
131
131
  "other": "Det ser ud som om du allerede har accepteret denne invitation, du skal derfor <a href=\"signin.html\">logge ind</a> i stedet Hvis du har glemt dit kodeord, kan du også <a href=\"forgotpassword.html\">nulstille dit kodeord</a>."
@@ -485,6 +485,8 @@
485
485
  "shopping_info_available_until_date_explanation_buy": {
486
486
  "other": "Du vil ikke kunne se indholdet efter dette."
487
487
  },
488
+ "duration_hour": { "one": "1 time", "other": "{{.Count}} timer" },
489
+ "duration_day": { "one": "1 dag", "other": "{{.Count}} dage" },
488
490
  "shopping_info_rental_period_duration": {
489
491
  "other": "{{.ValueUnit}} dages leje "
490
492
  },
@@ -68,7 +68,7 @@
68
68
 
69
69
  "social_media_buttons_title": { "other": "Teilen" },
70
70
 
71
- "accept_invite_page_header": { "other": "Willkommen bei " },
71
+ "accept_invite_page_header": { "other": "Willkommen" },
72
72
  "acceptinvite_form_invalid_reset_password_token": { "other": "Sie haben diese Einladung bereits angenommen. <a href=\"{{.SigninURL}}\">Loggen Sie sich hier ein</a>. Falls Sie Ihr Passwort vergessen haben, können Sie es <a href=\"{{.ForgotPasswordURL}}\">hier zurücksetzen</a>." },
73
73
  "acceptinvite_complete": { "other": "Vielen Dank. Ihr Konto wurde erstellt." },
74
74
  "acceptinvite_form_submit": { "other": "Einladung annehmen" },
@@ -189,6 +189,8 @@
189
189
  "shopping_info_available_until_date_explanation_rent": { "other": "Danach können Sie den Film nicht mehr ansehen." },
190
190
  "shopping_info_available_until_date_explanation_buy": { "other": "Danach können Sie den Film nicht mehr ansehen." },
191
191
 
192
+ "duration_hour": { "one": "1 Stunde", "other": "{{.Count}} Stunden" },
193
+ "duration_day": { "one": "1 Tag", "other": "{{.Count}} Tage" },
192
194
  "shopping_info_rental_period_duration": { "other": "Verfügbar für {{.ValueUnit}} Tage " },
193
195
  "shopping_info_watch_window_duration": { "other": "Abspielbar für {{.Count}} Stunden. " },
194
196
  "shopping_info_watch_window_explanation_film": {
@@ -74,7 +74,7 @@
74
74
 
75
75
  "social_media_buttons_title": { "other": "Jaga" },
76
76
 
77
- "accept_invite_page_header": { "other": "Tere tulemast " },
77
+ "accept_invite_page_header": { "other": "Tere tulemast" },
78
78
  "acceptinvite_form_invalid_reset_password_token": { "other": "Näib, et sa oled kutse juba vastu võtnud. Sa peaksid hoopis <a href=\"{{.SigninURL}}\">sisse logima</a>. Kui oled salasõna unustanud, saad selle <a href=\"{{.ForgotPasswordURL}}\">uuendada</a>." },
79
79
  "acceptinvite_complete": { "other": "Aitäh! Sinu konto on loodud." },
80
80
  "acceptinvite_form_submit": { "other": "Võta kutse vastu." },
@@ -197,6 +197,8 @@
197
197
  "shopping_info_available_until_date_explanation_rent": { "other": "Pärast antud kuupäeva ei saa filmi enam vaadata." },
198
198
  "shopping_info_available_until_date_explanation_buy": { "other": "Pärast antud kuupäeva ei saa filmi enam vaadata." },
199
199
 
200
+ "duration_hour": { "one": "1 tund", "other": "{{.Count}} tundi" },
201
+ "duration_day": { "one": "1 päev", "other": "{{.Count}} päeva" },
200
202
  "shopping_info_rental_period_duration": { "other": "Pilet kehtib {{.ValueUnit}} päeva " },
201
203
  "shopping_info_watch_window_duration": { "other": "{{.Count}} tunnine vaatamise periood. " },
202
204
  "shopping_info_watch_window_explanation_film": {
@@ -74,7 +74,7 @@
74
74
 
75
75
  "social_media_buttons_title": { "other": "Μοιράσου το" },
76
76
 
77
- "accept_invite_page_header": { "other": "Καλώς ήρθατε στο " },
77
+ "accept_invite_page_header": { "other": "Καλώς ορίσατε" },
78
78
  "acceptinvite_form_invalid_reset_password_token": { "other": "Φαίνεται πως έχετε ήδη αποδεχθεί αυτή την πρόσκληση, πρέπει να <a href=\"{{.SigninURL}}\">εισέλθετε</a> στο λογαριασμό σας." },
79
79
  "acceptinvite_complete": { "other": "Ευχαριστούμε πολύ. Ο λογαριασμός σας έχει δημιουργηθεί." },
80
80
  "acceptinvite_form_submit": { "other": "Αποδοχή πρόσκλησης" },
@@ -194,6 +194,8 @@
194
194
  "shopping_info_available_until_date_explanation_rent": { "other": "Δεν θα μπορείτε να παρακολουθήσετε το περιεχόμενο μετά από τότε. " },
195
195
  "shopping_info_available_until_date_explanation_buy": { "other": "Δεν θα μπορείτε να παρακολουθήσετε το περιεχόμενο μετά από τότε. " },
196
196
 
197
+ "duration_hour": { "one": "1 ώρα", "other": "{{.Count}} ώρες" },
198
+ "duration_day": { "one": "1 μέρα", "other": "{{.Count}} μέρες" },
197
199
  "shopping_info_rental_period_duration": { "other": "{{.ValueUnit}} μέρες ενοικίασης. " },
198
200
  "shopping_info_watch_window_duration": { "other": "{{.Count}} ώρες μέχρι να ολοκληρωθεί η προβολή. " },
199
201
  "shopping_info_watch_window_explanation_film": {
@@ -75,7 +75,7 @@
75
75
 
76
76
  "social_media_buttons_title": { "other": "Share" },
77
77
 
78
- "accept_invite_page_header": { "other": "Welcome to " },
78
+ "accept_invite_page_header": { "other": "Welcome" },
79
79
  "acceptinvite_form_invalid_reset_password_token": { "other": "It looks like you have already claimed this invite, you should <a href=\"{{.SigninURL}}\">sign in</a> instead. If you have forgotten your password, you can also <a href=\"{{.ForgotPasswordURL}}\">reset your password</a>." },
80
80
  "acceptinvite_complete": { "other": "Thank you. Your account has been created." },
81
81
  "acceptinvite_form_submit": { "other": "Accept Invitation" },
@@ -74,7 +74,7 @@
74
74
 
75
75
  "social_media_buttons_title": { "other": "Compartir" },
76
76
 
77
- "accept_invite_page_header": { "other": "Bienvenido a " },
77
+ "accept_invite_page_header": { "other": "Bienvenido" },
78
78
  "acceptinvite_form_invalid_reset_password_token": { "other": "Parece que ya ha reclamado esta invitación, usted debe <a href=\"{{.SigninURL}}\">iniciar sesión</a> sin embargo. Si ha olvidado su contraseña, usted puede <a href=\"{{.ForgotPasswordURL}}\">recuperar su contraseña</a>." },
79
79
  "acceptinvite_complete": { "other": "Gracias. Su cuenta ha sido creada." },
80
80
  "acceptinvite_form_submit": { "other": "Aceptar invitación" },
@@ -194,6 +194,8 @@
194
194
  "shopping_info_available_until_date_explanation_rent": { "other": "Usted no podrá ver el contenido después de esto." },
195
195
  "shopping_info_available_until_date_explanation_buy": { "other": "Usted no podrá ver el contenido después de esto." },
196
196
 
197
+ "duration_hour": { "one": "1 hora", "other": "{{.Count}} horas" },
198
+ "duration_day": { "one": "1 día", "other": "{{.Count}} dias" },
197
199
  "shopping_info_rental_period_duration": { "other": "{{.ValueUnit}} día(s) de alquiler " },
198
200
  "shopping_info_watch_window_duration": { "other": "{{.Count}} hora(s) de ventana de visualización. " },
199
201
  "shopping_info_watch_window_explanation_film": {
@@ -74,7 +74,7 @@
74
74
 
75
75
  "social_media_buttons_title": { "other": "Compartir" },
76
76
 
77
- "accept_invite_page_header": { "other": "Bienvenido a " },
77
+ "accept_invite_page_header": { "other": "Bienvenido" },
78
78
  "acceptinvite_form_invalid_reset_password_token": { "other": "Parece que ya ha canjeado esta invitación, debería <a href=\"{{.SigninURL}}\">ingresar</a>. Si has olvidado tu contraseña, puedes también <a href=\"{{.ForgotPasswordURL}}\">reestablecer tu contraseña</a>." },
79
79
  "acceptinvite_complete": { "other": "Gracias. Se ha creado su cuenta." },
80
80
  "acceptinvite_form_submit": { "other": "Aceptar invitación" },
@@ -194,6 +194,8 @@
194
194
  "shopping_info_available_until_date_explanation_rent": { "other": "No podrás ver el contenido después de esto." },
195
195
  "shopping_info_available_until_date_explanation_buy": { "other": "No podrás ver el contenido después de esto." },
196
196
 
197
+ "duration_hour": { "one": "1 hora", "other": "{{.Count}} horas" },
198
+ "duration_day": { "one": "1 día", "other": "{{.Count}} dias" },
197
199
  "shopping_info_rental_period_duration": { "other": "Renta de {{.ValueUnit}} día " },
198
200
  "shopping_info_watch_window_duration": { "other": "Ventana de reproducción de {{.Count}} horas. " },
199
201
  "shopping_info_watch_window_explanation_film": {
@@ -52,7 +52,7 @@
52
52
 
53
53
  "social_media_buttons_title": { "other": "Jaa" },
54
54
 
55
- "accept_invite_page_header": { "other": "Tervetuloa " },
55
+ "accept_invite_page_header": { "other": "Tervetuloa" },
56
56
  "acceptinvite_form_invalid_reset_password_token": { "other": "Vaikuttaa siltä, että olet jo käyttänyt tämän kutsun. Kokeile <a href=\"signin.html\">kirjautua sisään</a> palveluun. Jos olet unohtanut salasanasi, voit <a href=\"forgotpassword.html\">tilata uuden salasanan</a>." },
57
57
  "acceptinvite_complete": { "other": "Kiitos. Tilisi on luotu." },
58
58
  "acceptinvite_form_submit": { "other": "Hyväksy kutsu" },
@@ -169,6 +169,8 @@
169
169
  "shopping_info_available_until_date_explanation_rent": { "other": "Sen jälkeen sisältöä ei voi enää katsoa." },
170
170
  "shopping_info_available_until_date_explanation_buy": { "other": "Sen jälkeen sisältöä ei voi enää katsoa." },
171
171
 
172
+ "duration_hour": { "one": "1 tunti", "other": "{{.Count}} tuntia" },
173
+ "duration_day": { "one": "1 päivä", "other": "{{.Count}} päivää" },
172
174
  "shopping_info_rental_period_duration": { "other": "{{.ValueUnit}} päivän vuokra " },
173
175
  "shopping_info_watch_window_duration": { "other": "{{.Count}} tunnin katseluoikeus. " },
174
176
  "shopping_info_watch_window_explanation_film": {
@@ -72,7 +72,7 @@
72
72
 
73
73
  "social_media_buttons_title": { "other": "Partager" },
74
74
 
75
- "accept_invite_page_header": { "other": "Bienvenue à " },
75
+ "accept_invite_page_header": { "other": "Bienvenue" },
76
76
  "acceptinvite_form_invalid_reset_password_token": { "other": "Il semble que vous ayez déjà utilisé ce lien, vous devriez essayer de <a href=\"{{.SigninURL}}\">vous connecter</a>. Si vous avez oublié votre mot de passe, vous pouvez aussi <a href=\"{{.ForgotPasswordURL}}\">réinitialiser votre mot de passe</a>." },
77
77
  "acceptinvite_complete": { "other": "Merci, votre compte a bien été créé." },
78
78
  "acceptinvite_form_submit": { "other": "Accepter l'invitation" },
@@ -206,6 +206,8 @@
206
206
 
207
207
  "shopping_info_rental_period_coming_soon": { "other": "Bientôt disponible" },
208
208
 
209
+ "duration_hour": { "one": "1 heure", "other": "{{.Count}} heures" },
210
+ "duration_day": { "one": "1 jour", "other": "{{.Count}} jours" },
209
211
  "shopping_info_rental_period_duration": { "other": "Location pour {{.ValueUnit}} jours " },
210
212
  "shopping_info_watch_window_duration": { "other": "Fenêtre de lecture est de {{.Count}} heures. " },
211
213
  "shopping_info_watch_window_explanation_film": {
@@ -49,7 +49,7 @@
49
49
 
50
50
  "social_media_buttons_title": { "other": "Podijeli" },
51
51
 
52
- "accept_invite_page_header": { "other": "Dobrodošli na" },
52
+ "accept_invite_page_header": { "other": "Dobrodošli" },
53
53
  "acceptinvite_form_invalid_reset_password_token": { "other": "Ovaj pozivni kod je već iskorišten i potrebna je ponovna <a href=\"{{.SigninURL}}\">prijava</a>. Ako ste zaboravili lozinku, možete je <a href=\"{{.ForgotPasswordURL}}\">resetirati</a>." },
54
54
  "acceptinvite_complete": { "other": "Hvala vam. Izradili ste korisnički račun." },
55
55
  "acceptinvite_form_submit": { "other": "Prihvati pozivnicu" },
@@ -187,6 +187,8 @@
187
187
  "shopping_info_available_until_date_explanation_rent": { "other": "Nakon ovoga više ne možete gledati sadržaj." },
188
188
  "shopping_info_available_until_date_explanation_buy": { "other": "Nakon ovoga više ne možete gledati sadržaj." },
189
189
 
190
+ "duration_hour": { "one": "1 sat", "other": "{{.Count}} sata" },
191
+ "duration_day": { "one": "1 dan", "other": "{{.Count}} dana" },
190
192
  "shopping_info_rental_period_duration": { "other": "{{.Count}} dana posudbe" },
191
193
  "shopping_info_watch_window_duration": { "other": "{{.Count}} sati zaslona za reprodukciju." },
192
194
 
@@ -74,7 +74,7 @@
74
74
 
75
75
  "social_media_buttons_title": { "other": "Megosztás" },
76
76
 
77
- "accept_invite_page_header": { "other": "Üdvözlünk " },
77
+ "accept_invite_page_header": { "other": "Üdvözöljük" },
78
78
  "acceptinvite_form_invalid_reset_password_token": { "other": "Úgy tűnik, már felhasználtad a meghívódat, próbálj meg <a href=\"{{.SigninURL}}\">bejelentkezni</a>. Ha elfelejtetted a jelszavadat, <a href=\"{{.ForgotPasswordURL}}\">állíts be újat</a>." },
79
79
  "acceptinvite_complete": { "other": "Köszönjük. A fiókodat létrehoztuk." },
80
80
  "acceptinvite_form_submit": { "other": "Meghívó elfogadása" },
@@ -197,6 +197,8 @@
197
197
  "shopping_info_available_until_date_explanation_rent": { "other": "Ezután a dátum után nem lesz elérhető a tartalom." },
198
198
  "shopping_info_available_until_date_explanation_buy": { "other": "Ezután a dátum után nem lesz elérhető a tartalom." },
199
199
 
200
+ "duration_hour": { "one": "1 óra", "other": "{{.Count}} óra" },
201
+ "duration_day": { "one": "1 nap", "other": "{{.Count}} nap" },
200
202
  "shopping_info_rental_period_duration": { "other": "{{.ValueUnit}} nap a kölcsönzési idő " },
201
203
  "shopping_info_watch_window_duration": { "other": "{{.Count}} óra van a lejátszásra " },
202
204
  "shopping_info_watch_window_explanation_film": {
@@ -74,7 +74,7 @@
74
74
 
75
75
  "social_media_buttons_title": { "other": "Condividi" },
76
76
 
77
- "accept_invite_page_header": { "other": "Benvenuto a " },
77
+ "accept_invite_page_header": { "other": "Accoglienza" },
78
78
  "acceptinvite_form_invalid_reset_password_token": { "other": "Questo Invito è già stato usato." },
79
79
  "acceptinvite_complete": { "other": "Grazie. Il tuo account è stato creato." },
80
80
  "acceptinvite_form_submit": { "other": "Accetta l'Invito" },
@@ -197,6 +197,8 @@
197
197
  "shopping_info_available_until_date_explanation_rent": { "other": "Non potrai vedere il contenuto oltre questa data." },
198
198
  "shopping_info_available_until_date_explanation_buy": { "other": "Non potrai vedere il contenuto oltre questa data." },
199
199
 
200
+ "duration_hour": { "one": "1 ora", "other": "{{.Count}} ore" },
201
+ "duration_day": { "one": "1 giorno", "other": "{{.Count}} giorni" },
200
202
  "shopping_info_rental_period_duration": { "other": "{{.ValueUnit}} giorni " },
201
203
  "shopping_info_rental_period_coming_soon": { "other": "dalla data e ora della pubblicazione." },
202
204
  "shopping_info_watch_window_duration": { "other": "Finestra di riproduzione: {{.Count}} ore. " },
@@ -51,7 +51,7 @@
51
51
 
52
52
  "social_media_buttons_title": { "other": "共有" },
53
53
 
54
- "accept_invite_page_header": { "other": "ようこそ " },
54
+ "accept_invite_page_header": { "other": "ようこそ" },
55
55
  "acceptinvite_form_invalid_reset_password_token": { "other": "すでに招待リクエスト済みですので、サインインしてください。" },
56
56
  "acceptinvite_complete": { "other": "ありがとうございます。アカウント登録は完了しました。" },
57
57
  "acceptinvite_form_submit": { "other": "招待を受け取る" },
@@ -169,6 +169,8 @@
169
169
  "shopping_info_available_until_date_explanation_rent": { "other": "この日時以降の視聴はできません。" },
170
170
  "shopping_info_available_until_date_explanation_buy": { "other": "この日時以降の視聴はできません。" },
171
171
 
172
+ "duration_hour": { "one": "1時間", "other": "{{.Count}}時間" },
173
+ "duration_day": { "one": "1日", "other": "{{.Count}}日" },
172
174
  "shopping_info_rental_period_duration": { "other": "レンタル期間 {{.ValueUnit}}日間" },
173
175
  "shopping_info_watch_window_duration": { "other": "再生開始後{{.Count}} 時間視聴できます。" },
174
176
  "shopping_info_watch_window_explanation_film": {
@@ -74,7 +74,7 @@
74
74
 
75
75
  "social_media_buttons_title": { "other": "Dalintis" },
76
76
 
77
- "accept_invite_page_header": { "other": "Sveiki atvykę į " },
77
+ "accept_invite_page_header": { "other": "Sveiki" },
78
78
  "acceptinvite_form_invalid_reset_password_token": { "other": "Panašu, kad jau patvirtinote šį kvietimą, prašome <a href=\"{{.SigninURL}}\">prisijungti</a>. Pamiršus slaptažodį, galite <a href=\"{{.ForgotPasswordURL}}\">susikurti naują</a>." },
79
79
  "acceptinvite_complete": { "other": "Ačiū, jūsų paskyra sukurta." },
80
80
  "acceptinvite_form_submit": { "other": "Priimti kvietimą" },
@@ -210,6 +210,8 @@
210
210
  "shopping_info_available_until_date_explanation_rent": { "other": "Po šios datos peržiūra bus nebegalima." },
211
211
  "shopping_info_available_until_date_explanation_buy": { "other": "Po šios datos peržiūra bus nebegalima." },
212
212
 
213
+ "duration_hour": { "one": "1 valandą", "other": "{{.Count}} valandos" },
214
+ "duration_day": { "one": "1 diena", "other": "{{.Count}} dienos" },
213
215
  "shopping_info_rental_period_duration": { "other": "{{.ValueUnit}} dienų nuoma " },
214
216
  "shopping_info_watch_window_duration": { "other": "{{.Count}} val. peržiūros laikas. " },
215
217
  "shopping_info_watch_window_explanation_film": {
@@ -74,7 +74,7 @@
74
74
 
75
75
  "social_media_buttons_title": { "other": "Deel" },
76
76
 
77
- "accept_invite_page_header": { "other": "Welkom op " },
77
+ "accept_invite_page_header": { "other": "Welkom" },
78
78
  "acceptinvite_form_invalid_reset_password_token": { "other": "Het lijkt erop dat u deze uitnodiging al hebt gebruikt. U dient zich hier <a href=\"{{.SigninURL}}\">in te loggen</a>. <a href=\"{{.ForgotPasswordURL}}\">Wachtwoord vergeten?</a>." },
79
79
  "acceptinvite_complete": { "other": "Bedankt. Uw account is aangemaakt." },
80
80
  "acceptinvite_form_submit": { "other": "Aanvaard uitnodiging" },
@@ -210,6 +210,8 @@
210
210
  "shopping_info_available_until_date_explanation_rent": { "other": "U zult de inhoud hierna niet meer kunnen bekijken." },
211
211
  "shopping_info_available_until_date_explanation_buy": { "other": "U zult de inhoud hierna niet meer kunnen bekijken." },
212
212
 
213
+ "duration_hour": { "one": "1 uur", "other": "{{.Count}} uur" },
214
+ "duration_day": { "one": "1 dag", "other": "{{.Count}} dagen" },
213
215
  "shopping_info_rental_period_duration": { "other": "{{.ValueUnit}} dagen bekijken " },
214
216
  "shopping_info_watch_window_duration": { "other": "{{.Count}} uur (her)bekijken. " },
215
217
  "shopping_info_watch_window_explanation_film": {
@@ -74,7 +74,7 @@
74
74
 
75
75
  "social_media_buttons_title": { "other": "Del" },
76
76
 
77
- "accept_invite_page_header": { "other": "Velkommen til " },
77
+ "accept_invite_page_header": { "other": "Velkommen" },
78
78
  "acceptinvite_form_invalid_reset_password_token": { "other": "Det ser ut til at du allerede har godtatt denne invitasjonen, forsøk i stedet å <a href=\"{{.SigninURL}}\">logge inn</a>. Hvis du har glemt passordet kan du også <a href=\"{{.ForgotPasswordURL}}\">tilbakestille passordet</a>." },
79
79
  "acceptinvite_complete": { "other": "Takk! Din konto er opprettet." },
80
80
  "acceptinvite_form_submit": { "other": "Godta invitasjon" },
@@ -197,6 +197,8 @@
197
197
  "shopping_info_available_until_date_explanation_rent": { "other": "Du vil ikke kunne se innholdet etter dette." },
198
198
  "shopping_info_available_until_date_explanation_buy": { "other": "Du vil ikke kunne se innholdet etter dette." },
199
199
 
200
+ "duration_hour": { "one": "1 time", "other": "{{.Count}} timer" },
201
+ "duration_day": { "one": "1 dag", "other": "{{.Count}} dager" },
200
202
  "shopping_info_rental_period_duration": { "other": "{{.ValueUnit}}dagers leie " },
201
203
  "shopping_info_watch_window_duration": { "other": "{{.Count}} timers avspillingsvindu. " },
202
204
  "shopping_info_watch_window_explanation_film": {
@@ -51,7 +51,7 @@
51
51
 
52
52
  "social_media_buttons_title": { "other": "Udostępnij" },
53
53
 
54
- "accept_invite_page_header": { "other": "Witamy " },
54
+ "accept_invite_page_header": { "other": "Witamy" },
55
55
  "acceptinvite_form_invalid_reset_password_token": { "other": "Wygląda na to, że już odebrałeś to zaproszenie. Kliknij zatem <a href=\"{{.SigninURL}}\"> zaloguj się </a>. Jeśli zapomniałeś hasła, możesz je odzyskać <a href=\"{{.ForgotPasswordURL}}\"> resetując hasło </a>." },
56
56
  "acceptinvite_complete": { "other": "Dziękujemy. Twoje konto zostało utworzone." },
57
57
  "acceptinvite_form_submit": { "other": "Zaakceptuj zaproszenie." },
@@ -180,8 +180,10 @@
180
180
  "shopping_info_available_until_date_explanation_rent": { "other": "Po upływie tego czasu nie będziesz mógł przeglądać treści." },
181
181
  "shopping_info_available_until_date_explanation_buy": { "other": "Po upływie tego czasu nie będziesz mógł przeglądać treści." },
182
182
 
183
+ "duration_hour": { "one": "1 godzina", "other": "{{.Count}} godziny" },
184
+ "duration_day": { "one": "1 dzień", "other": "{{.Count}} dni" },
183
185
  "shopping_info_rental_period_duration": {
184
- "one": "Wypożyczono na {{.ValueUnit}} dni ",
186
+ "one": "Wypożyczono na {{.ValueUnit}} dzień ",
185
187
  "few": "Wypożyczono na {{.ValueUnit}} dni ",
186
188
  "many": "Wypożyczono na {{.ValueUnit}} dni ",
187
189
  "other": "Wypożyczono na {{.ValueUnit}} dni "
@@ -140,7 +140,7 @@
140
140
  "other": "Compartilhar"
141
141
  },
142
142
  "accept_invite_page_header": {
143
- "other": "Bem-vindo(a) a"
143
+ "other": "Acolher"
144
144
  },
145
145
  "acceptinvite_form_invalid_reset_password_token": {
146
146
  "other": "Parece que você já aceitou esse convite, você deve <a href=\"{{.SigninURL}}\">entrar em sua conta</a>. Se você esqueceu sua senha, você também pode <a href=\"{{.ForgotPasswordURL}}\">alterar sua senha</a>."
@@ -501,12 +501,12 @@
501
501
  "other": "Você não poderá assistir ao conteúdo após esta data."
502
502
  },
503
503
  "duration_hour": {
504
- "one": "1 hour",
505
- "other": "{{.Count}} hours"
504
+ "one": "1 hora",
505
+ "other": "{{.Count}} horas"
506
506
  },
507
507
  "duration_day": {
508
- "one": "1 day",
509
- "other": "{{.Count}} days"
508
+ "one": "1 dia",
509
+ "other": "{{.Count}} dias"
510
510
  },
511
511
  "shopping_info_rental_period_duration": {
512
512
  "other": "Aluguel de {{.Count}} dias."
@@ -74,7 +74,7 @@
74
74
 
75
75
  "social_media_buttons_title": { "other": "Compartilhar" },
76
76
 
77
- "accept_invite_page_header": { "other": "Bem-vindo(a) a" },
77
+ "accept_invite_page_header": { "other": "Acolher" },
78
78
  "acceptinvite_form_invalid_reset_password_token": { "other": "Parece que você já aceitou esse convite, você deve <a href=\"{{.SigninURL}}\">entrar em sua conta</a>. Se você esqueceu sua senha, você também pode <a href=\"{{.ForgotPasswordURL}}\">alterar sua senha</a>." },
79
79
  "acceptinvite_complete": { "other": "Obrigado! Sua conta foi criada." },
80
80
  "acceptinvite_form_submit": { "other": "Aceitar Convite" },
@@ -194,6 +194,8 @@
194
194
  "shopping_info_available_until_date_explanation_rent": { "other": "Você não poderá assistir ao conteúdo após esta data." },
195
195
  "shopping_info_available_until_date_explanation_buy": { "other": "Você não poderá assistir ao conteúdo após esta data." },
196
196
 
197
+ "duration_hour": { "one": "1 hora", "other": "{{.Count}} horas" },
198
+ "duration_day": { "one": "1 dia", "other": "{{.Count}} dias" },
197
199
  "shopping_info_rental_period_duration": { "other": "Aluguel de {{.ValueUnit}} dias." },
198
200
  "shopping_info_watch_window_duration": { "other": "Período de reprodução de {{.Count}} horas." },
199
201
  "shopping_info_watch_window_explanation_film": {
@@ -75,7 +75,7 @@
75
75
 
76
76
  "social_media_buttons_title": { "other": "Поделиться" },
77
77
 
78
- "accept_invite_page_header": { "other": "Добро пожаловать в " },
78
+ "accept_invite_page_header": { "other": "Добро пожаловать" },
79
79
  "acceptinvite_form_invalid_reset_password_token": { "other": "Вы уже подтвердили регистрацию, вам надо <a href=\"{{.SigninURL}}\">войти</a> . Если вы забыли свой пароль, вы можете <a href=\"{{.ForgotPasswordURL}}\">сбросить пароль</a>." },
80
80
  "acceptinvite_complete": { "other": "Спасибо. Ваш аккаунт был создан." },
81
81
  "acceptinvite_form_submit": { "other": "Принять приглашение" },
@@ -204,7 +204,9 @@
204
204
  "shopping_info_available_until_date_title": { "other": "Доступно до {{.Date}}. " },
205
205
  "shopping_info_available_until_date_explanation_rent": { "other": "Вы не сможете просматривать содержимое после этого." },
206
206
  "shopping_info_available_until_date_explanation_buy": { "other": "Вы не сможете просматривать содержимое после этого." },
207
-
207
+
208
+ "duration_hour": { "one": "1 час", "other": "{{.Count}} часа" },
209
+ "duration_day": { "one": "1 день", "other": "{{.Count}} дня" },
208
210
  "shopping_info_rental_period_duration": {
209
211
  "few": "{{.ValueUnit}} день аренды",
210
212
  "many": "{{.ValueUnit}} день аренды"
@@ -74,7 +74,7 @@
74
74
 
75
75
  "social_media_buttons_title": { "other": "Поделите" },
76
76
 
77
- "accept_invite_page_header": { "other": "Добродошли на " },
77
+ "accept_invite_page_header": { "other": "Добродошли" },
78
78
  "acceptinvite_form_invalid_reset_password_token": { "other": "Изгледа да сте већ активирали овај позив. Потребно је да се <a href=\"{{.SigninURL}}\">пријавите</a>. Ако сте заборавили лозинку, можете и да <a href=\"{{.ForgotPasswordURL}}\">ресетујете лозинку</a>." },
79
79
  "acceptinvite_complete": { "other": "Хвала Вам. Ваш налог је направљен." },
80
80
  "acceptinvite_form_submit": { "other": "Прихватите позив." },
@@ -210,6 +210,8 @@
210
210
  "shopping_info_available_until_date_explanation_rent": { "other": "Нећете моћи да гледате садржај након тога." },
211
211
  "shopping_info_available_until_date_explanation_buy": { "other": "Нећете моћи да гледате садржај након тога." },
212
212
 
213
+ "duration_hour": { "one": "1 сат", "other": "{{.Count}} сата" },
214
+ "duration_day": { "one": "1 дан", "other": "{{.Count}} дана" },
213
215
  "shopping_info_rental_period_duration": { "other": "Изнајмљено на {{.ValueUnit}} дана" },
214
216
  "shopping_info_watch_window_duration": { "other": "{{.Count}} ч. за гледање." },
215
217
  "shopping_info_watch_window_explanation_film": {
@@ -1,6 +1,9 @@
1
1
  {{block nav_user_logged_out()}}
2
2
  <s72-user-anon class="user-anon">
3
- <div class="vertical-line"></div>
3
+ {{if config("search_disabled") != "true" || isEnabled("language_selector")}}
4
+ <div class="vertical-line"></div>
5
+ {{end}}
6
+
4
7
  {{if config("disable_user_signups") == "true"}}
5
8
  <a href="{{ routeToPath("/signin.html") }}" class="btn btn-signin-primary">{{i18n("nav_signin")}}</a>
6
9
  {{else}}
@@ -74,7 +74,7 @@
74
74
 
75
75
  "social_media_buttons_title": { "other": "Paylaş" },
76
76
 
77
- "accept_invite_page_header": { "other": "...'e hoşgeldiniz " },
77
+ "accept_invite_page_header": { "other": "Hoşgeldiniz" },
78
78
  "acceptinvite_form_invalid_reset_password_token": { "other": "Görünüşe göre bu davet talebini zaten yapmışsınız, onun yerine <a href=\"{{.SigninURL}}\">sign in</a> denemelisiniz. Parolanızı unuttuysanız, parolanızı ayrıca <a href=\"{{.ForgotPasswordURL}}\"> sıfırlayabilirsiniz." },
79
79
  "acceptinvite_complete": { "other": "Teşekkürler. Hesabınız oluşturuldu." },
80
80
  "acceptinvite_form_submit": { "other": "Daveti Kabul Et." },
@@ -197,6 +197,8 @@
197
197
  "shopping_info_available_until_date_explanation_rent": { "other": "Bundan sonra içeriği görüntüleyemeceksiniz." },
198
198
  "shopping_info_available_until_date_explanation_buy": { "other": "Bundan sonra içeriği görüntüleyemeceksiniz." },
199
199
 
200
+ "duration_hour": { "one": "1 saat", "other": "{{.Count}} saat" },
201
+ "duration_day": { "one": "1 gün", "other": "{{.Count}} gün" },
200
202
  "shopping_info_rental_period_duration": { "other": "{{.ValueUnit}} kiralanan gün sayısı " },
201
203
  "shopping_info_watch_window_duration": { "other": "{{.Count}} saat playback oynatma penceresi " },
202
204
  "shopping_info_watch_window_explanation_film": {
@@ -127,7 +127,7 @@
127
127
  "other": "Поділитися"
128
128
  },
129
129
  "accept_invite_page_header": {
130
- "other": "Ласкаво просимо до"
130
+ "other": "Ласкаво просимо"
131
131
  },
132
132
  "acceptinvite_form_invalid_reset_password_token": {
133
133
  "other": "Здається, ви вже використали це запрошення. Спробуйте <a href=\"signin.html\">увійти</a>. Якщо ви забули свій пароль, ви можете <a href=\"forgotpassword.html\">скинути свій пароль</a>."
@@ -489,7 +489,9 @@
489
489
  },
490
490
  "shopping_info_available_until_date_explanation_buy": {
491
491
  "other": "Ви не зможете переглянути контент після цього."
492
- },
492
+ },
493
+ "duration_hour": { "one": "1 година", "other": "{{.Count}} години" },
494
+ "duration_day": { "one": "1 день", "other": "{{.Count}} дні" },
493
495
  "shopping_info_rental_period_duration": {
494
496
  "few": "{{.ValueUnit}} день прокату",
495
497
  "many": "{{.ValueUnit}} день прокату"
@@ -140,7 +140,7 @@
140
140
  "other": "分享"
141
141
  },
142
142
  "accept_invite_page_header": {
143
- "other": "歡迎來到"
143
+ "other": "歡迎"
144
144
  },
145
145
  "acceptinvite_form_invalid_reset_password_token": {
146
146
  "other": "您已接受過此邀請,請從 <a href=\"{{.SigninURL}}\">登入</a> 。若忘記密碼,請至 <a href=\"{{.ForgotPasswordURL}}\">重設密碼</a>。"
@@ -500,6 +500,8 @@
500
500
  "shopping_info_available_until_date_explanation_buy": {
501
501
  "other": "影片下線後將無法觀看。"
502
502
  },
503
+ "duration_hour": { "one": "1小時", "other": "{{.Count}}個小時" },
504
+ "duration_day": { "one": "1天", "other": "{{.Count}}天" },
503
505
  "shopping_info_rental_period_duration": {
504
506
  "other": "租借天數 {{.ValueUnit}} 天"
505
507
  },