44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
import {
|
|
registerTranslation
|
|
} from "./chunk.O27EHOBW.js";
|
|
|
|
// src/translations/en.ts
|
|
var translation = {
|
|
$code: "en",
|
|
$name: "English",
|
|
$dir: "ltr",
|
|
carousel: "Carousel",
|
|
clearEntry: "Clear entry",
|
|
close: "Close",
|
|
copied: "Copied",
|
|
copy: "Copy",
|
|
currentValue: "Current value",
|
|
error: "Error",
|
|
goToSlide: (slide, count) => `Go to slide ${slide} of ${count}`,
|
|
hidePassword: "Hide password",
|
|
loading: "Loading",
|
|
nextSlide: "Next slide",
|
|
numOptionsSelected: (num) => {
|
|
if (num === 0)
|
|
return "No options selected";
|
|
if (num === 1)
|
|
return "1 option selected";
|
|
return `${num} options selected`;
|
|
},
|
|
previousSlide: "Previous slide",
|
|
progress: "Progress",
|
|
remove: "Remove",
|
|
resize: "Resize",
|
|
scrollToEnd: "Scroll to end",
|
|
scrollToStart: "Scroll to start",
|
|
selectAColorFromTheScreen: "Select a color from the screen",
|
|
showPassword: "Show password",
|
|
slideNum: (slide) => `Slide ${slide}`,
|
|
toggleColorFormat: "Toggle color format"
|
|
};
|
|
registerTranslation(translation);
|
|
var en_default = translation;
|
|
|
|
export {
|
|
en_default
|
|
};
|