shopify_app 9.0.4 → 10.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -0
- data/README.md +13 -2
- data/app/assets/javascripts/shopify_app/storage_access.js +1 -1
- data/app/controllers/shopify_app/sessions_controller.rb +10 -1
- data/app/views/shopify_app/sessions/enable_cookies.html.erb +1 -0
- data/config/locales/cs.yml +23 -0
- data/config/locales/da.yml +20 -0
- data/config/locales/de.yml +2 -2
- data/config/locales/es.yml +2 -2
- data/config/locales/fi.yml +20 -0
- data/config/locales/fr.yml +3 -3
- data/config/locales/hi.yml +23 -0
- data/config/locales/it.yml +2 -3
- data/config/locales/ja.yml +1 -1
- data/config/locales/ko.yml +19 -0
- data/config/locales/ms.yml +21 -0
- data/config/locales/nb.yml +21 -0
- data/config/locales/nl.yml +7 -7
- data/config/locales/pl.yml +21 -0
- data/config/locales/pt-BR.yml +2 -2
- data/config/locales/pt-PT.yml +22 -0
- data/config/locales/sv.yml +21 -0
- data/config/locales/th.yml +20 -0
- data/config/locales/tr.yml +22 -0
- data/config/locales/zh-CN.yml +2 -2
- data/config/locales/zh-TW.yml +1 -2
- data/lib/shopify_app/controller_concerns/login_protection.rb +9 -0
- data/lib/shopify_app/version.rb +1 -1
- data/package-lock.json +1144 -1164
- data/package.json +1 -1
- data/shopify_app.gemspec +1 -1
- metadata +18 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e0d05767b5c3ee4f64bcf9e9198943956769b371d47fe4f1e4d986e8c87b776
|
4
|
+
data.tar.gz: d19668b932f7e091c012f82096e12648fe61a6d2358b8c8a62c1dc18dc267eae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 33d7d6e5c3b054a30f8d18b296ac335310561c9f383e24b8dd0a0cf0cb52f324421efa14e2ca721a1b4c48e0b63894b72d9443d37e59df155a1477eb25d6372d
|
7
|
+
data.tar.gz: dec296c178ac77f2d315e7f4534dcd50c3e042ff1875299748668b10f32278ed54d6b76dec45c7a9600a97a023f6f0718ba6a022ba4fe056f8e982ab514b1305
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
10.0.0
|
2
|
+
-----
|
3
|
+
|
4
|
+
* Make sure OAuth-related redirects return user to originally requested URL once authenticated
|
5
|
+
* Add/update translations
|
6
|
+
* Update README to clarify nested routes
|
7
|
+
* Remove example app. Users should instead use the generators to scaffold an example app.
|
8
|
+
* Bump required Rails version to `> 5.2.1` to ensure `5.2.1.1` or greater is used. This ensures two things:
|
9
|
+
* Apps are not vulnerable to [CVE-2018-16476](https://nvd.nist.gov/vuln/detail/CVE-2018-16476)
|
10
|
+
* Webhook payloads, from Shopify for API version 2019-07, which are processed in ActiveJob background jobs (the
|
11
|
+
default behaviour of shopify_app's WebhooksController) are compatible, due to how ActiveJob versions prior to
|
12
|
+
5.2.1.1 process GlobalIDs encoded as string in job parameters. This prevents the
|
13
|
+
[exceptions reported previously](https://github.com/Shopify/shopify_app/issues/600).
|
14
|
+
|
1
15
|
9.0.4
|
2
16
|
-----
|
3
17
|
|
data/README.md
CHANGED
@@ -45,8 +45,6 @@ Description
|
|
45
45
|
-----------
|
46
46
|
This gem includes a Rails Engine and generators for writing Rails applications using the Shopify API. The Engine provides a SessionsController and all the required code for authenticating with a shop via Oauth (other authentication methods are not supported).
|
47
47
|
|
48
|
-
The [example](https://github.com/Shopify/shopify_app/tree/master/example) directory contains an app that was generated with this gem. It also contains sample code demonstrating the usage of the embedded app sdk.
|
49
|
-
|
50
48
|
*Note: It's recommended to use this on a new Rails project, so that the generator won't overwrite/delete some of your files.*
|
51
49
|
|
52
50
|
|
@@ -207,6 +205,19 @@ provider :shopify,
|
|
207
205
|
callback_path: '/nested/auth/shopify/callback'
|
208
206
|
```
|
209
207
|
|
208
|
+
You may also need to change your `config/routes.rb` to render a view for `/nested`, since this is what will be rendered in the Shopify Admin of any shops that have installed your app. The engine itself doesn't have a view for this, so you'll need something like this:
|
209
|
+
|
210
|
+
```ruby
|
211
|
+
# config/routes.rb
|
212
|
+
Rails.application.routes.draw do
|
213
|
+
root :to => 'something_else#index'
|
214
|
+
get "/nested", to: "home#index"
|
215
|
+
mount ShopifyApp::Engine, at: '/nested'
|
216
|
+
end
|
217
|
+
```
|
218
|
+
|
219
|
+
Finally, note that if you do this, to add your app to a store, you must navigate to `/nested` in order to render the `Enter your shop domain to log in or install this app.` UI.
|
220
|
+
|
210
221
|
### Custom login URL
|
211
222
|
|
212
223
|
While you can customize the login view by creating a `/app/views/shopify_app/sessions/new.html.erb` file, you may also want to customize the URL entirely. You can modify your `shopify_app.rb` initializer to provide a custom `login_url` e.g.:
|
@@ -103,7 +103,7 @@
|
|
103
103
|
|
104
104
|
/* ITP 2.0 solution: handles cookie partitioning */
|
105
105
|
StorageAccessHelper.prototype.setUpHelper = function() {
|
106
|
-
return new ITPHelper({redirectUrl: window.shopOrigin + "/admin/apps/" + window.apiKey});
|
106
|
+
return new ITPHelper({redirectUrl: window.shopOrigin + "/admin/apps/" + window.apiKey + window.returnTo});
|
107
107
|
}
|
108
108
|
|
109
109
|
StorageAccessHelper.prototype.setCookieAndRedirect = function() {
|
@@ -54,6 +54,8 @@ module ShopifyApp
|
|
54
54
|
return render_invalid_shop_error unless sanitized_shop_name.present?
|
55
55
|
session['shopify.omniauth_params'] = { shop: sanitized_shop_name }
|
56
56
|
|
57
|
+
session[:return_to] = params[:return_to] if params[:return_to]
|
58
|
+
|
57
59
|
if user_agent_can_partition_cookies
|
58
60
|
authenticate_with_partitioning
|
59
61
|
else
|
@@ -77,7 +79,7 @@ module ShopifyApp
|
|
77
79
|
authenticate_in_context
|
78
80
|
else
|
79
81
|
set_top_level_oauth_cookie
|
80
|
-
|
82
|
+
enable_cookie_access
|
81
83
|
end
|
82
84
|
end
|
83
85
|
|
@@ -96,6 +98,13 @@ module ShopifyApp
|
|
96
98
|
redirect_to return_address
|
97
99
|
end
|
98
100
|
|
101
|
+
def enable_cookie_access
|
102
|
+
fullpage_redirect_to(enable_cookies_path(
|
103
|
+
shop: sanitized_shop_name,
|
104
|
+
return_to: session[:return_to]
|
105
|
+
))
|
106
|
+
end
|
107
|
+
|
99
108
|
def authenticate_in_context
|
100
109
|
redirect_to "#{main_app.root_path}auth/shopify"
|
101
110
|
end
|
@@ -17,6 +17,7 @@
|
|
17
17
|
<script>
|
18
18
|
window.apiKey = "<%= ShopifyApp.configuration.api_key %>";
|
19
19
|
window.shopOrigin = "https://<%= @shop %>";
|
20
|
+
window.returnTo = "<%= params[:return_to] %>"
|
20
21
|
</script>
|
21
22
|
|
22
23
|
<%= javascript_include_tag('shopify_app/enable_cookies', crossorigin: 'anonymous', integrity: true) %>
|
@@ -0,0 +1,23 @@
|
|
1
|
+
---
|
2
|
+
cs:
|
3
|
+
logged_out: Odhlášení proběhlo úspěšně
|
4
|
+
could_not_log_in: Nelze se přihlásit do obchodu Shopify
|
5
|
+
invalid_shop_url: Neplatná doména obchodu
|
6
|
+
enable_cookies_heading: Zapnout soubory cookie z aplikace %{app}
|
7
|
+
enable_cookies_body: Pokud chceš v Shopify používat aplikaci %{app}, musíš soubory
|
8
|
+
cookie v tomto prohlížeči povolit ručně.
|
9
|
+
enable_cookies_footer: Soubory cookie umožňují, aby tě aplikace ověřila pomocí dočasného
|
10
|
+
uchování preferencí a osobních údajů. Jejich platnost vyprší po 30 dnech.
|
11
|
+
enable_cookies_action: Povolit soubory cookie
|
12
|
+
top_level_interaction_heading: Tvůj prohlížeč potřebuje ověřit aplikaci %{app}
|
13
|
+
top_level_interaction_body: Tvůj prohlížeč vyžaduje, aby si od tebe aplikace, jako
|
14
|
+
je %{app}, nejdřív vyžádaly přístup k souborům cookie, než je pro tebe Shopify
|
15
|
+
otevře.
|
16
|
+
top_level_interaction_action: Pokračovat
|
17
|
+
request_storage_access_heading: Aplikace %{app} potřebuje získat přístup k souborům
|
18
|
+
cookie
|
19
|
+
request_storage_access_body: Tato aplikace ti umožní ověření prostřednictvím dočasného
|
20
|
+
uchování tvých osobních údajů. Pokud chceš používat tuto aplikaci, klikni na tlačítko
|
21
|
+
Pokračovat a povol soubory cookie.
|
22
|
+
request_storage_access_footer: Platnost souborů cookie vyprší po 30 dnech.
|
23
|
+
request_storage_access_action: Pokračovat
|
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
da:
|
3
|
+
logged_out: Logget ud
|
4
|
+
could_not_log_in: Kunne ikke logge ind på Shopify-butik
|
5
|
+
invalid_shop_url: Ugyldig butiksdomæne
|
6
|
+
enable_cookies_heading: Aktivér cookies fra %{app}
|
7
|
+
enable_cookies_body: Du skal manuelt aktivere cookies i denne browser for at kunne
|
8
|
+
bruge %{app} i Shopify.
|
9
|
+
enable_cookies_footer: Cookies lader appen godkende dig ved at gemme dine præferencer
|
10
|
+
og personlige oplysninger midlertidigt. De udløber efter 30 dage.
|
11
|
+
enable_cookies_action: Aktivér cookies
|
12
|
+
top_level_interaction_heading: Din browser skal godkende %{app}
|
13
|
+
top_level_interaction_body: Din browser kræver, at apps som f.eks. %{app} spørger
|
14
|
+
dig om adgang til cookies, inden Shopify kan åbne den for dig.
|
15
|
+
top_level_interaction_action: Fortsæt
|
16
|
+
request_storage_access_heading: "%{app} skal have adgang til cookies"
|
17
|
+
request_storage_access_body: Det lader appen godkende dig ved at gemme dine personlige
|
18
|
+
oplysninger midlertidigt. Klik på forsæt, og tillad cookies for at bruge appen.
|
19
|
+
request_storage_access_footer: Cookies udløber efter 30 dage.
|
20
|
+
request_storage_access_action: Fortsæt
|
data/config/locales/de.yml
CHANGED
@@ -11,8 +11,8 @@ de:
|
|
11
11
|
Sie laufen nach 30 Tagen ab.
|
12
12
|
enable_cookies_action: Cookies aktivieren
|
13
13
|
top_level_interaction_heading: Ihr Browser muss %{app} authentifizieren
|
14
|
-
top_level_interaction_body: Ihr Browser verlangt, dass Apps
|
15
|
-
|
14
|
+
top_level_interaction_body: Ihr Browser verlangt, dass Apps wie %{app} Sie um Zugriff
|
15
|
+
auf Cookies bitten, bevor Shopify sie für Sie öffnen kann.
|
16
16
|
top_level_interaction_action: Weiter
|
17
17
|
request_storage_access_heading: "%{app} braucht Zugriff auf Cookies"
|
18
18
|
request_storage_access_body: Damit kann die App Sie authentifizieren, indem Ihre
|
data/config/locales/es.yml
CHANGED
@@ -11,8 +11,8 @@ es:
|
|
11
11
|
de 30 días.
|
12
12
|
enable_cookies_action: Habilitar cookies
|
13
13
|
top_level_interaction_heading: Tu navegador necesita autenticar %{app}
|
14
|
-
top_level_interaction_body: Tu navegador requiere aplicaciones
|
15
|
-
|
14
|
+
top_level_interaction_body: Tu navegador requiere aplicaciones como %{app} para
|
15
|
+
solicitarte acceso a cookies antes de que Shopify pueda abrirlo por ti.
|
16
16
|
top_level_interaction_action: Continuar
|
17
17
|
request_storage_access_heading: "%{app} necesita acceso a las cookies"
|
18
18
|
request_storage_access_body: Esto permite que la aplicación te autentique almacenando
|
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
fi:
|
3
|
+
logged_out: Olet kirjautunut ulos
|
4
|
+
could_not_log_in: Kirjautuminen Shopify-kauppaan ei onnistunut
|
5
|
+
invalid_shop_url: Virheellinen kaupan verkkotunnus
|
6
|
+
enable_cookies_heading: Ota käyttöön sovelluksen %{app} evästeet
|
7
|
+
enable_cookies_body: Sinun on otettava evästeet käyttöön manuaalisesti tässä selaimessa,
|
8
|
+
jotta voit käyttää sovellusta %{app} Shopifyssa.
|
9
|
+
enable_cookies_footer: Evästeiden avulla sovellus voi todentaa sinut tallentamalla
|
10
|
+
asetuksesi ja henkilötietosi tilapäisesti. Ne vanhenevat 30 päivän kuluttua.
|
11
|
+
enable_cookies_action: Ota evästeet käyttöön
|
12
|
+
top_level_interaction_heading: Selaimesi täytyy todentaa %{app}
|
13
|
+
top_level_interaction_body: Selaimesi vaatii sovelluksia, kuten %{app}, pyytämään
|
14
|
+
sinulta luvan evästeiden käyttöön, ennen kuin Shopify voi avata sovelluksen.
|
15
|
+
top_level_interaction_action: Jatka
|
16
|
+
request_storage_access_heading: "%{app} edellyttää evästeiden käyttöä"
|
17
|
+
request_storage_access_body: Näin sovellus voi todentaa sinut tallentamalla henkilötietosi
|
18
|
+
tilapäisesti. Napsauta Jatka ja salli evästeet sovelluksen käyttämiseksi.
|
19
|
+
request_storage_access_footer: Evästeet vanhenevat 30 päivän kuluttua.
|
20
|
+
request_storage_access_action: Jatka
|
data/config/locales/fr.yml
CHANGED
@@ -11,9 +11,9 @@ fr:
|
|
11
11
|
expirent après 30 jours.
|
12
12
|
enable_cookies_action: Activer les cookies
|
13
13
|
top_level_interaction_heading: Votre navigateur doit s'authentifier %{app}
|
14
|
-
top_level_interaction_body: Votre navigateur nécessite des applications
|
15
|
-
|
16
|
-
|
14
|
+
top_level_interaction_body: Votre navigateur nécessite des applications telles que
|
15
|
+
%{app} pour vous demander l'accès aux cookies avant que Shopify ne puisse l'ouvrir
|
16
|
+
pour vous.
|
17
17
|
top_level_interaction_action: Continuer
|
18
18
|
request_storage_access_heading: "%{app} a besoin d'accéder aux cookies"
|
19
19
|
request_storage_access_body: Cela permet à l'application de vous authentifier en
|
@@ -0,0 +1,23 @@
|
|
1
|
+
---
|
2
|
+
hi:
|
3
|
+
logged_out: सफलतापूर्वक लॉग आउट कर दिया
|
4
|
+
could_not_log_in: Shopify स्टोर में लॉग इन नहीं किया जा सका
|
5
|
+
invalid_shop_url: अमान्य शॉप डोमेन
|
6
|
+
enable_cookies_heading: "%{app} के कुकीज़ सक्षम करें"
|
7
|
+
enable_cookies_body: आपको %{app} का उपयोग Shopify में करने के लिए इस ब्राउज़र में
|
8
|
+
कुकीज़ मैन्युअल रूप से सक्षम करने चाहिए.
|
9
|
+
enable_cookies_footer: कुकीज़ अस्थायी रूप से आपकी वरीयताएं और व्यक्तिगत जानकारी स्टोर
|
10
|
+
कर ऐप को आपको प्रमाणित करने देते हैं. इनकी समय-सीमा 30 दिनों बाद समाप्त हो जाती
|
11
|
+
है.
|
12
|
+
enable_cookies_action: कुकीज़ को सक्षम करें
|
13
|
+
top_level_interaction_heading: आपके ब्राउज़र को %{app} प्रमाणित करने की आवश्यकता
|
14
|
+
है
|
15
|
+
top_level_interaction_body: आपके ब्राउज़र को %{app} जैसे ऐप की ज़रूरत होती है, जो
|
16
|
+
Shopify द्वारा आपके लिए उसे खोलने से पहले कुकीज़ पर पहुंचने करने की अनुमति मांगे.
|
17
|
+
top_level_interaction_action: जारी रखें
|
18
|
+
request_storage_access_heading: "%{app} को कुकीज़ पर पहुंच करने की आवश्यकता है"
|
19
|
+
request_storage_access_body: यह आपकी व्यक्तिगत जानकारी अस्थायी रूप से स्टोर कर ऐप
|
20
|
+
को आपको प्रमाणित करने देता है. जारी रखें पर क्लिक करें और कुकीज़ को ऐप उपयोग करने
|
21
|
+
की अनुमति दें.
|
22
|
+
request_storage_access_footer: कुकीज़ की समय-सीमा 30 दिनों बाद समाप्त हो जाती है.
|
23
|
+
request_storage_access_action: जारी रखें
|
data/config/locales/it.yml
CHANGED
@@ -10,9 +10,8 @@ it:
|
|
10
10
|
temporaneamente le tue preferenze e informazioni personali. Scadono dopo 30 giorni.
|
11
11
|
enable_cookies_action: Abilita i cookie
|
12
12
|
top_level_interaction_heading: Il tuo browser deve autenticare %{app}
|
13
|
-
top_level_interaction_body: Il tuo browser richiede che app
|
14
|
-
|
15
|
-
di Shopify.
|
13
|
+
top_level_interaction_body: Il tuo browser richiede che app come %{app} ti chiedano
|
14
|
+
l'accesso ai cookie prima dell'apertura automatica da parte di Shopify.
|
16
15
|
top_level_interaction_action: Continua
|
17
16
|
request_storage_access_heading: "%{app} deve accedere ai cookie"
|
18
17
|
request_storage_access_body: L'app potrà così autenticarti memorizzando temporaneamente
|
data/config/locales/ja.yml
CHANGED
@@ -8,7 +8,7 @@ ja:
|
|
8
8
|
enable_cookies_footer: Cookieを使用すると、各種設定や個人情報を一時的に保存することで、アプリ認証を受けることができます。30日後に有効期限が切れます。
|
9
9
|
enable_cookies_action: Cookieを有効にする
|
10
10
|
top_level_interaction_heading: お使いのブラウザを更新する必要があります%{app}
|
11
|
-
top_level_interaction_body: Shopifyがアプリを開けるように、ブラウザーはCookie
|
11
|
+
top_level_interaction_body: Shopifyがアプリを開けるように、ブラウザーはCookieにアクセスするための%{app}のようなアプリが必要です。
|
12
12
|
top_level_interaction_action: 続ける
|
13
13
|
request_storage_access_heading: "%{app}クッキーにアクセスする必要がある"
|
14
14
|
request_storage_access_body: Cookieを使用すると、個人情報を一時的に保存することで、アプリ認証を受けることができます。[続行]
|
@@ -0,0 +1,19 @@
|
|
1
|
+
---
|
2
|
+
ko:
|
3
|
+
logged_out: 성공적으로 로그아웃 되었습니다.
|
4
|
+
could_not_log_in: Shopify 스토어에 로그인할 수 없습니다.
|
5
|
+
invalid_shop_url: 유효하지 않은 상점 도메인
|
6
|
+
enable_cookies_heading: "%{app}에서 쿠키를 사용 가능"
|
7
|
+
enable_cookies_body: Shopify 내에서 %{app} 을 사용하기 위해 이 브라우저에서 쿠키를 수동으로 사용할 수 있습니다.
|
8
|
+
enable_cookies_footer: 쿠키를 사용하면 개인의 선호나 정보를 임시로 저장하여 앱에서 사용자를 인증할 수 있습니다. 쿠키는 30일
|
9
|
+
후에 만료됩니다.
|
10
|
+
enable_cookies_action: 쿠리 사용 가능
|
11
|
+
top_level_interaction_heading: 브라우저에서 %{app} 을 인증해야 합니다.
|
12
|
+
top_level_interaction_body: Shopify를 열기 전 쿠키에 엑세스하려면 %{app} 과 같은 앱 들이 브라우저에 설치되어야
|
13
|
+
합니다.
|
14
|
+
top_level_interaction_action: 계속
|
15
|
+
request_storage_access_heading: "%{app}에서 쿠키에 접근해야 합니다."
|
16
|
+
request_storage_access_body: 이를 통해 개인 정보를 임시로 저장하여 앱에서 사용자를 인증할 수 있습니다. 계속 클릭하여
|
17
|
+
쿠키로 앱을 사용하세요.
|
18
|
+
request_storage_access_footer: 쿠키는 30일 후에 만료됩니다.
|
19
|
+
request_storage_access_action: 계속
|
@@ -0,0 +1,21 @@
|
|
1
|
+
---
|
2
|
+
ms:
|
3
|
+
logged_out: Berjaya log keluar
|
4
|
+
could_not_log_in: Tidak dapat log masuk ke kedai Shopify
|
5
|
+
invalid_shop_url: Domain kedai tidak sah
|
6
|
+
enable_cookies_heading: Dayakan kuki dari %{app}
|
7
|
+
enable_cookies_body: Anda mesti mengaktifkan kuki secara manual dalam browser ini
|
8
|
+
untuk %{app} digunakan dalam Shopify.
|
9
|
+
enable_cookies_footer: Kuki membenarkan app mengesahkan anda dengan menyimpan keutamaan
|
10
|
+
dan maklumat peribadi anda buat sementara waktu. Ia tamat tempoh selepas 30 hari.
|
11
|
+
enable_cookies_action: Dayakan kuki
|
12
|
+
top_level_interaction_heading: Browser anda perlu mengesahkan %{app}
|
13
|
+
top_level_interaction_body: Browser anda memerlukan app seperti %{app} untuk meminta
|
14
|
+
anda akses kepada kuki sebelum Shopify boleh membukanya untuk anda.
|
15
|
+
top_level_interaction_action: Teruskan
|
16
|
+
request_storage_access_heading: "%{app} memerlukan akses kepada kuki"
|
17
|
+
request_storage_access_body: Ini membolehkan app mengesahkan anda dengan menyimpan
|
18
|
+
maklumat peribadi anda buat sementara waktu. Klik teruskan dan benarkan kuki untuk
|
19
|
+
menggunakan app.
|
20
|
+
request_storage_access_footer: Kuki akan tamat tempoh selepas 30 hari.
|
21
|
+
request_storage_access_action: Teruskan
|
@@ -0,0 +1,21 @@
|
|
1
|
+
---
|
2
|
+
nb:
|
3
|
+
logged_out: Logget ut
|
4
|
+
could_not_log_in: Kunne ikke logge på Shopify-butikken
|
5
|
+
invalid_shop_url: Ugyldig butikkdomene
|
6
|
+
enable_cookies_heading: Aktiver informasjonskapsler fra %{app}
|
7
|
+
enable_cookies_body: Du kan manuelt aktivere informasjonskapsler i denne nettleseren
|
8
|
+
for å kunne bruke %{app} i Shopify.
|
9
|
+
enable_cookies_footer: Informasjonskapsler lar appen autentisere deg ved å midlertidig
|
10
|
+
lagre innstillingene og personopplysningene dine. De går ut etter 30 dager.
|
11
|
+
enable_cookies_action: Aktiver informasjonskapsler
|
12
|
+
top_level_interaction_heading: Nettleseren din må autentisere %{app}
|
13
|
+
top_level_interaction_body: Nettleseren din krever apper som %{app} for å spørre
|
14
|
+
deg om tilgang til informasjonskapsler før Shopify kan åpne den for deg.
|
15
|
+
top_level_interaction_action: Fortsett
|
16
|
+
request_storage_access_heading: "%{app} må ha tilgang til informasjonskapsler"
|
17
|
+
request_storage_access_body: Informasjonskapsler lar appen autentisere deg ved å
|
18
|
+
midlertidig lagre personopplysningene dine. Klikk på Fortsett og gi informasjonskapsler
|
19
|
+
tillatelse til å bruke appen.
|
20
|
+
request_storage_access_footer: Informasjonskapslene går ut etter 30 dager.
|
21
|
+
request_storage_access_action: Fortsett
|
data/config/locales/nl.yml
CHANGED
@@ -1,20 +1,20 @@
|
|
1
1
|
---
|
2
2
|
nl:
|
3
|
-
logged_out:
|
3
|
+
logged_out: u bent afgemeld
|
4
4
|
could_not_log_in: Kon niet aanmelden bij Shopify-winkel
|
5
5
|
invalid_shop_url: Ongeldig winkeldomein
|
6
6
|
enable_cookies_heading: Schakel cookies in van %{app}
|
7
|
-
enable_cookies_body:
|
7
|
+
enable_cookies_body: Je moet cookies in deze browser handmatig inschakelen om %{app}
|
8
8
|
binnen Shopify te gebruiken.
|
9
|
-
enable_cookies_footer: Met cookies kan de app
|
9
|
+
enable_cookies_footer: Met cookies kan de app je verifiëren door je voorkeuren en
|
10
10
|
persoonlijke informatie tijdelijk op te slaan. Ze vervallen na 30 dagen.
|
11
11
|
enable_cookies_action: Schakel cookies in
|
12
|
-
top_level_interaction_heading:
|
13
|
-
top_level_interaction_body:
|
14
|
-
|
12
|
+
top_level_interaction_heading: Je browser moet %{app} verifiëren
|
13
|
+
top_level_interaction_body: Je browser heeft apps nodig zoals %{app} om je toegang
|
14
|
+
te vragen tot cookies voordat Shopify het voor je kan openen.
|
15
15
|
top_level_interaction_action: Doorgaan
|
16
16
|
request_storage_access_heading: "%{app} heeft toegang tot cookies nodig"
|
17
|
-
request_storage_access_body: Hiermee kan de app
|
17
|
+
request_storage_access_body: Hiermee kan de app je verifiëren door je persoonlijke
|
18
18
|
gegevens tijdelijk op te slaan. Klik op Doorgaan en sta cookies toe om de app
|
19
19
|
te gebruiken.
|
20
20
|
request_storage_access_footer: Cookies verlopen na 30 dagen.
|
@@ -0,0 +1,21 @@
|
|
1
|
+
---
|
2
|
+
pl:
|
3
|
+
logged_out: Pomyślne wylogowanie
|
4
|
+
could_not_log_in: Nie można zalogować się do sklepu Shopify
|
5
|
+
invalid_shop_url: Nieprawidłowa domena sklepu
|
6
|
+
enable_cookies_heading: Włącz korzystanie z plików cookie z %{app}
|
7
|
+
enable_cookies_body: Aby móc korzystać z %{app} w Shopify, musisz ręcznie włączyć
|
8
|
+
korzystanie z plików cookie w tej przeglądarce.
|
9
|
+
enable_cookies_footer: Pliki cookie umożliwiają uwierzytelnianie aplikacji przez
|
10
|
+
tymczasowe przechowywanie preferencji i danych osobowych. Wygasają one po 30 dniach.
|
11
|
+
enable_cookies_action: Włącz korzystanie z plików cookie
|
12
|
+
top_level_interaction_heading: Twoja przeglądarka wymaga uwierzytelnienia %{app}
|
13
|
+
top_level_interaction_body: Twoja przeglądarka wymaga takich aplikacji jak %{app},
|
14
|
+
aby poprosić o dostęp do plików cookie, zanim Shopify będzie mógł ją otworzyć.
|
15
|
+
top_level_interaction_action: Kontynuuj
|
16
|
+
request_storage_access_heading: "%{app} potrzebuje dostępu do plików cookie"
|
17
|
+
request_storage_access_body: Dzięki temu aplikacja może Cię uwierzytelniać, tymczasowo,
|
18
|
+
przechowując Twoje dane osobowe. Kliknij przycisk Kontynuuj i zezwalaj na pliki
|
19
|
+
cookie, aby korzystać z aplikacji.
|
20
|
+
request_storage_access_footer: Pliki cookie wygasają po 30 dniach.
|
21
|
+
request_storage_access_action: Kontynuuj
|
data/config/locales/pt-BR.yml
CHANGED
@@ -11,8 +11,8 @@ pt-BR:
|
|
11
11
|
de 30 dias.
|
12
12
|
enable_cookies_action: Ativar cookies
|
13
13
|
top_level_interaction_heading: Seu navegador precisa autenticar %{app}
|
14
|
-
top_level_interaction_body: Seu navegador exige que apps
|
15
|
-
|
14
|
+
top_level_interaction_body: Seu navegador exige que apps como o %{app} consultem
|
15
|
+
você sobre o acesso a cookies antes que a Shopify os abra.
|
16
16
|
top_level_interaction_action: Continuar
|
17
17
|
request_storage_access_heading: "%{app} precisa acessar cookies"
|
18
18
|
request_storage_access_body: Isso permite que o app autentique você armazenando
|
@@ -0,0 +1,22 @@
|
|
1
|
+
---
|
2
|
+
pt-PT:
|
3
|
+
logged_out: Terminou a sessão com sucesso
|
4
|
+
could_not_log_in: Não foi possível iniciar sessão na loja da Shopify
|
5
|
+
invalid_shop_url: Domínio de loja inválido
|
6
|
+
enable_cookies_heading: Ativar cookies de %{app}
|
7
|
+
enable_cookies_body: Tem de ativar manualmente os cookies neste navegador para utilizar
|
8
|
+
%{app} dentro da Shopify.
|
9
|
+
enable_cookies_footer: Os cookies permitem que a aplicação o autentique armazenando
|
10
|
+
temporariamente as suas preferências e informações pessoais. Expiram ao fim de
|
11
|
+
30 dias.
|
12
|
+
enable_cookies_action: Ativar cookies
|
13
|
+
top_level_interaction_heading: O seu navegador tem de autenticar %{app}
|
14
|
+
top_level_interaction_body: O seu navegador exige que aplicações como %{app} lhe
|
15
|
+
solicitem o acesso de cookies, antes que a Shopify as possa abrir.
|
16
|
+
top_level_interaction_action: Continuar
|
17
|
+
request_storage_access_heading: "%{app} tem de aceder a cookies"
|
18
|
+
request_storage_access_body: Isto permite que a aplicação o autentique armazenando
|
19
|
+
temporariamente as suas informações pessoais. Clique em continuar e permita os
|
20
|
+
cookies para utilizar a aplicação.
|
21
|
+
request_storage_access_footer: Os cookies expiram ao fim de 30 dias.
|
22
|
+
request_storage_access_action: Continuar
|
@@ -0,0 +1,21 @@
|
|
1
|
+
---
|
2
|
+
sv:
|
3
|
+
logged_out: Har loggats ut
|
4
|
+
could_not_log_in: Det gick inte att logga in i Shopify-butiken
|
5
|
+
invalid_shop_url: Ogiltig butiksdomän
|
6
|
+
enable_cookies_heading: Aktivera cookies från %{app}
|
7
|
+
enable_cookies_body: Du måste aktivera cookies manuellt i den här webbläsaren för
|
8
|
+
att kunna använda %{app} inom Shopify.
|
9
|
+
enable_cookies_footer: Cookies låter appen autentisera dig genom att tillfälligt
|
10
|
+
lagra dina inställningar och personuppgifter. De upphör efter 30 dagar.
|
11
|
+
enable_cookies_action: Aktivera cookies
|
12
|
+
top_level_interaction_heading: Din webbläsare måste verifiera %{app}
|
13
|
+
top_level_interaction_body: Din webbläsare kräver att appar som %{app} frågar dig
|
14
|
+
om tillgång till cookies innan Shopify kan öppna den för dig.
|
15
|
+
top_level_interaction_action: Fortsätt
|
16
|
+
request_storage_access_heading: "%{app} behöver tillgång till cookies"
|
17
|
+
request_storage_access_body: Detta gör det möjligt för appen att autentisera dig
|
18
|
+
genom att tillfälligt lagra din personliga information. Klicka på fortsätt och
|
19
|
+
tillåta cookies att använda appen.
|
20
|
+
request_storage_access_footer: Cookies upphör efter 30 dagar.
|
21
|
+
request_storage_access_action: Fortsätt
|
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
th:
|
3
|
+
logged_out: ออกจากระบบสำเร็จ
|
4
|
+
could_not_log_in: ไม่สามารถเข้าสู่ระบบร้านค้า Shopify ได้
|
5
|
+
invalid_shop_url: โดเมนร้านค้าไม่ถูกต้อง
|
6
|
+
enable_cookies_heading: เปิดใช้งานคุกกี้จาก %{app}
|
7
|
+
enable_cookies_body: คุณต้องเปิดใช้งานคุกกี้ด้วยตนเองในเบราว์เซอร์นี้เพื่อใช้งาน
|
8
|
+
%{app} ภายใน Shopify
|
9
|
+
enable_cookies_footer: คุกกี้ช่วยให้แอปตรวจสอบความถูกต้องของคุณด้วยการจัดเก็บความชื่นชอบและข้อมูลส่วนตัวของคุณชั่วคราว
|
10
|
+
คุกกี้จะหมดอายุหลังจาก 30 วัน
|
11
|
+
enable_cookies_action: เปิดใช้งานคุกกี้
|
12
|
+
top_level_interaction_heading: เบราว์เซอร์ของคุณต้องรับรองความถูกต้องของ %{app}
|
13
|
+
top_level_interaction_body: เบราว์เซอร์ของคุณต้องการแอปอย่าง %{app} เพื่อขอให้คุณเข้าถึงคุกกี้ก่อนที่
|
14
|
+
Shopify จะสามารถเปิดมันให้คุณได้
|
15
|
+
top_level_interaction_action: ดำเนินการต่อ
|
16
|
+
request_storage_access_heading: "%{app} ต้องการสิทธิ์การเข้าถึงคุกกี้"
|
17
|
+
request_storage_access_body: สิ่งนี้ช่วยให้แอปตรวจสอบความถูกต้องของคุณด้วยการจัดเก็บข้อมูลส่วนตัวของคุณชั่วคราว
|
18
|
+
คลิกดำเนินการต่อและอนุญาตให้คุกกี้ใช้แอป
|
19
|
+
request_storage_access_footer: คุกกี้จะหมดอายุหลังจาก 30 วัน
|
20
|
+
request_storage_access_action: ดำเนินการต่อ
|