|
@@ -1,4 +1,4 @@
|
|
|
-const sv_SE = {};
|
|
|
+const sv_SE = {}
|
|
|
|
|
|
sv_SE.strings = {
|
|
|
addMore: 'Lägg till',
|
|
@@ -136,17 +136,17 @@ sv_SE.strings = {
|
|
|
'1': 'Du måste välja minst %{smart_count} filer',
|
|
|
'2': 'Du måste välja minst %{smart_count} filer'
|
|
|
}
|
|
|
-};
|
|
|
+}
|
|
|
|
|
|
sv_SE.pluralize = function (n) {
|
|
|
if (n === 1) {
|
|
|
- return 0;
|
|
|
+ return 0
|
|
|
}
|
|
|
- return 1;
|
|
|
-};
|
|
|
+ return 1
|
|
|
+}
|
|
|
|
|
|
if (typeof window !== 'undefined' && typeof window.Uppy !== 'undefined') {
|
|
|
- window.Uppy.locales.sv_SE = sv_SE;
|
|
|
+ window.Uppy.locales.sv_SE = sv_SE
|
|
|
}
|
|
|
|
|
|
-module.exports = sv_SE;
|
|
|
+module.exports = sv_SE
|