mirror of
https://github.com/Snigdha-OS/package-browser.git
synced 2025-09-05 12:16:42 +02:00
50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
export const ENGLISH = {
|
|
// src/components/Header.tsx
|
|
Header: {
|
|
"all-repositories": "All Repositories"
|
|
},
|
|
|
|
// src/components/InstallGuide.tsx
|
|
InstallGuide: {
|
|
"installation-command": "Installation Command",
|
|
|
|
"copy": {
|
|
"prompt": "Copy to clipboard",
|
|
"success": "Copied!"
|
|
}
|
|
},
|
|
|
|
// src/components/Logo.tsx
|
|
Logo: {
|
|
"title": "Snigdha OS Package List",
|
|
"description": "Browse and search through the official Snigdha OS package repository",
|
|
},
|
|
|
|
// src/components/PackageCard.tsx
|
|
PackageCard: {
|
|
"show-installation": "Show Installation",
|
|
"hide-installation": "Hide Installation"
|
|
},
|
|
|
|
// src/components/SearchBar.tsx
|
|
SearchBar: {
|
|
"placeholder": "Search packages..."
|
|
},
|
|
|
|
// src/App.tsx
|
|
App: {
|
|
"package_count": {
|
|
"single": "Showing {{count}} package",
|
|
"multiple": "Showing {{count}} packages",
|
|
"plural": "Showing {{count}} packages",
|
|
},
|
|
|
|
error: {
|
|
"fetching-packages": "An error occurred while fetching packages: {{error}}",
|
|
"retry-fetching-packages": "Retry"
|
|
},
|
|
|
|
"no-packages-found": "No packages found matching your search."
|
|
}
|
|
};
|