imp_exp 1.2.0 → 1.2.2
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/app/services/imp_exp/importers/xlsx.rb +2 -0
- data/config/locales/en.yml +1 -0
- data/config/locales/fr.yml +1 -0
- data/lib/imp_exp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8aa648fb22a8ea9ab4bd200a1b4333969b35754000b9addf9076bdd3e4a5321b
|
|
4
|
+
data.tar.gz: 56dd4ed753b8852269551ed0b47991f63723653064af6fadf6f3bc9e0351ca5a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1fa7dec5d74354edf860e59e47cfb30c0b250bd8a9e7427123000e5df4dbcae6b07812c705e0100ce07512d57252f994f4ba0e3f6abef4ce13ff1a5e6d60dd0e
|
|
7
|
+
data.tar.gz: 150a90b8aa62d859ba221586c125092a91f0f5eec72b809319c4ed28d964aead93a8694bcb035f06a852fa78383f0c687c63068e99a4ee391c9d8d1f2d4915bb
|
data/config/locales/en.yml
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
en:
|
|
2
2
|
imp_exp:
|
|
3
3
|
importer:
|
|
4
|
+
duplicated_headers: "A duplicate header in a sheet of the import file prevents the file from being imported"
|
|
4
5
|
invalid_columns: "The %{model_name} sheet does not contain the expected columns. Expected columns: %{expected_columns} Columns in the file: %{in_file_columns}."
|
|
5
6
|
invalid_sheets: "The file does not contain the expected sheets. Expected sheets: %{expected_sheets} Sheets in the file: %{in_file_sheets}."
|
|
6
7
|
record_not_found: "%{model_name} with %{conditions} conditions has not been found."
|
data/config/locales/fr.yml
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
fr:
|
|
2
2
|
imp_exp:
|
|
3
3
|
importer:
|
|
4
|
+
duplicated_headers: "Un doublon d'en-tête de colonne dans une feuille du fichier d'import empêche l'import de fonctionner."
|
|
4
5
|
invalid_columns: "La feuille %{model_name} ne contient pas les colonnes attendues. Colonnes attendues : %{expected_columns}. Colonnes dans le fichier : %{in_file_columns}."
|
|
5
6
|
invalid_sheets: "Le fichier ne contient pas les feuilles attendues. Feuilles attendues : %{expected_sheets}. Feuilles dans le fichier : %{in_file_sheets}."
|
|
6
7
|
record_not_found: "%{model_name} avec les conditions %{conditions} n'a pas été trouvé."
|
data/lib/imp_exp/version.rb
CHANGED