lato 3.12.0 โ†’ 3.13.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 829951858f3b05e35085c7a93641f831234b14e685967574c949f6f9505fe965
4
- data.tar.gz: 0ad3dc08123b049e43138f6867e9d2b09413b247119ba2e8e55646276a8a0a72
3
+ metadata.gz: dd51e6200f38ef058645aae3e2684f967d2bcdd2965d7bdfd36b8f73ab6b5007
4
+ data.tar.gz: 1cee6903435fac581f18be2c0e7c6fda2fc6a2d1f141cea02bacf4f6f58f315c
5
5
  SHA512:
6
- metadata.gz: 1f284b80289bc433efd01dcd6cb0928576cdb458ee953045811d3c9953ee297f5a5431eb96644d18190a9b19b62fe5954db864791712311aa9705a7ce08a1ac0
7
- data.tar.gz: 270452d1c4703d4c0bba1e259a66c0f12a95f4387499f1244107f8154d3a4b62e6fa3b7c2af04c224693e3bc206062e82e551be360b93096ec7fb6ac904fdf03
6
+ metadata.gz: 8629876c8baa8092aa4ba662ddb5e492b68b11a75c985684e10d4fb04b24c9f13db65d542a47bda39cb454638a665a41e3df4764ec17c71d1ed3d5eddd367e07
7
+ data.tar.gz: 2920b2de9e327a6bcc2e6ff24ccf9cf9e2a5dbd4ee7d4cecdac1e8d9fa5e2db2ea3a1719de37cdaa102190a67849e93af3d6335a96116c4abd9bd5ed756d9f02
data/README.md CHANGED
@@ -17,7 +17,7 @@ The gem is ready to be used with the **latest Rails 7+** features like **[ESM im
17
17
 
18
18
  <img src="./preview.gif" alt="Lato preview" width="100%">
19
19
 
20
- ## Full documentation (๐Ÿ‡ฎ๐Ÿ‡น Italian only)
20
+ ## Full documentation
21
21
 
22
22
  The full documentation is available at: ๐Ÿ‘‰ ๐Ÿ‘‰ [THIS LINK](http://lato.gregoriogalante.com/) ๐Ÿ‘ˆ ๐Ÿ‘ˆ
23
23
 
@@ -2,8 +2,8 @@
2
2
  <div data-controller="lato-operation">
3
3
  <% if operation.created_status? %>
4
4
  <div class="text-center">
5
- <h2>Operazione in corso</h2>
6
- <p>Si prega di attendere..</p>
5
+ <h2><%= I18n.t('lato.operation_title') %></h2>
6
+ <p><%= I18n.t('lato.operation_subtitle') %></p>
7
7
  <div class="progress" style="height: 20px;">
8
8
  <div class="progress-bar progress-bar-animated progress-bar-striped bg-primary" role="progressbar" style="width: 100%" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
9
9
  </div>
@@ -12,8 +12,8 @@
12
12
 
13
13
  <% if operation.running_status? %>
14
14
  <div class="text-center">
15
- <h2>Operazione in corso</h2>
16
- <p>Si prega di attendere..</p>
15
+ <h2><%= I18n.t('lato.operation_title') %></h2>
16
+ <p><%= I18n.t('lato.operation_subtitle') %></p>
17
17
  <% if operation.percentage.nil? %>
18
18
  <div class="progress" style="height: 20px;">
19
19
  <div class="progress-bar progress-bar-animated progress-bar-striped bg-primary" role="progressbar" style="width: 100%" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
@@ -31,8 +31,8 @@
31
31
  <div class="fs-1 text-success">
32
32
  <i class="bi bi-check-circle"></i>
33
33
  </div>
34
- <h2>Operazione completata</h2>
35
- <p>L'operazione รจ stata completata con successo</p>
34
+ <h2><%= I18n.t('lato.operation_completed_title') %></h2>
35
+ <p><%= I18n.t('lato.operation_completed_subtitle') %></p>
36
36
 
37
37
  <% if operation.output_file? %>
38
38
  <%= link_to '', main_app.url_for(operation.output_file), download: true, class: 'd-none', data: { lato_operation_target: 'outputFile' } %>
@@ -51,8 +51,8 @@
51
51
  <div class="fs-1 text-danger">
52
52
  <i class="bi bi-x-circle"></i>
53
53
  </div>
54
- <h2>Operazione fallita</h2>
55
- <p>L'operazione รจ fallita a causa di un errore</p>
54
+ <h2><%= I18n.t('lato.operation_failed_title') %></h2>
55
+ <p><%= I18n.t('lato.operation_failed_subtitle') %></p>
56
56
  <% if operation.output_error? %>
57
57
  <p class="text-danger fw-bold">
58
58
  <%= operation.output_error %>
@@ -64,6 +64,12 @@ en:
64
64
  confirm_title: Confirm
65
65
  confirm_yes: Yes, confirm
66
66
  confirm_no: No, cancel
67
+ operation_title: Running operation
68
+ operation_subtitle: Please wait..
69
+ operation_completed_title: Operation completed
70
+ operation_completed_subtitle: The operation has been completed successfully
71
+ operation_failed_title: Operation failed
72
+ operation_failed_subtitle: The operation has failed because of an error
67
73
 
68
74
  invitation_mailer:
69
75
  invite_mail_subject: You received an invitation
@@ -66,6 +66,12 @@ it:
66
66
  confirm_title: Conferma
67
67
  confirm_yes: Sรฌ, procedi
68
68
  confirm_no: No, annulla
69
+ operation_title: Operazione in corso
70
+ operation_subtitle: Si prega di attendere..
71
+ operation_completed_title: Operazione completata
72
+ operation_completed_subtitle: L'operazione รจ stata completata con successo
73
+ operation_failed_title: Operazione fallita
74
+ operation_failed_subtitle: Si รจ verificato un errore durante l'operazione
69
75
 
70
76
  invitation_mailer:
71
77
  invite_mail_subject: Hai ricevuto un invito
data/lib/lato/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Lato
2
- VERSION = "3.12.0"
2
+ VERSION = "3.13.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lato
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.12.0
4
+ version: 3.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gregorio Galante
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-09 00:00:00.000000000 Z
11
+ date: 2025-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails