### Install Starter Kits via Composer Source: https://github.com/laravel-lang/starter-kits/blob/main/README.md Installs the latest version of the Laravel-Lang Starter Kits package using Composer. This command adds the package to your project's development dependencies. ```bash composer require laravel-lang/starter-kits --dev ``` -------------------------------- ### Manual Installation via Composer JSON Source: https://github.com/laravel-lang/starter-kits/blob/main/README.md Manually add the Laravel-Lang Starter Kits package to your project's `composer.json` file under `require-dev` and then run `composer update`. ```json { "require-dev": { "laravel-lang/starter-kits": "^1.0" } } ``` -------------------------------- ### Update Localizations with Artisan Command Source: https://github.com/laravel-lang/starter-kits/blob/main/README.md After installation, run the `php artisan lang:update` console command to connect the package to your Laravel application and manage localizations. ```php php artisan lang:update ``` -------------------------------- ### Missing JSON Translation for 'Sign up' Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/ti.md This snippet details a missing translation for the key 'Sign up' in the 'json' file for the 'ti' language. It shows the key and its corresponding value, indicating that the translation is identical, suggesting it might be a placeholder or an oversight. ```json { "Sign up": "Sign up" } ``` -------------------------------- ### JSON Translation Keys - French Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/fr.md This snippet shows the French translations for 'Documentation' and 'Repository'. It indicates that 2 keys are missing in the JSON translation file. ```json { "Documentation": "Documentation", "Repository": "Repository" } ``` -------------------------------- ### JSON Translations for Laravel Starter Kits (zh_CN) Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/zh_CN.md This snippet contains JSON formatted translations for the zh_CN locale. It includes common phrases for user authentication, account management, and general UI elements. These translations are essential for localizing the Laravel starter kits. ```json { "A reset link will be sent if the account exists.": "A reset link will be sent if the account exists.", "Already have an account?": "Already have an account?", "Appearance": "Appearance", "Confirm password": "Confirm password", "Create account": "Create account", "Create an account": "Create an account", "Current password": "Current password", "Delete account": "Delete account", "Delete your account and all of its resources": "Delete your account and all of its resources", "Documentation": "Documentation", "Don't have an account?": "Don't have an account?", "Email address": "Email address", "Email password reset link": "Email password reset link", "Ensure your account is using a long, random password to stay secure": "Ensure your account is using a long, random password to stay secure", "Enter your details below to create your account": "Enter your details below to create your account", "Enter your email and password below to log in": "Enter your email and password below to log in", "Enter your email to receive a password reset link": "Enter your email to receive a password reset link", "Forgot password": "Forgot password", "Full name": "Full name", "log in": "log in", "Log in to your account": "Log in to your account", "Manage your profile and account settings": "Manage your profile and account settings", "New password": "New password", "Once your account is deleted, all of its resources and data will also be permanently deleted. Please confirm you would like to permanently delete your account.": "Once your account is deleted, all of its resources and data will also be permanently deleted. Please confirm you would like to permanently delete your account.", "Or, return to": "Or, return to", "Platform": "Platform", "Please enter your new password below": "Please enter your new password below", "Please verify your email address by clicking on the link we just emailed to you.": "Please verify your email address by clicking on the link we just emailed to you.", "Repository": "Repository", "Resend verification email": "Resend verification email", "Reset password": "Reset password", "Search": "Search", "Settings": "Settings", "Sign up": "Sign up", "status": "status", "This is a secure area of the application. Please confirm your password before continuing.": "This is a secure area of the application. Please confirm your password before continuing.", "Update password": "Update password", "Update the appearance settings for your account": "Update the appearance settings for your account", "Update your account's appearance settings": "Update your account's appearance settings", "Update your name and email address": "Update your name and email address" } ``` -------------------------------- ### Swahili Translations (JSON) Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/sw.md This snippet represents the Swahili translations for the project, specifically in JSON format. All 40 keys are marked as missing, indicating a need for translation. ```json { "A reset link will be sent if the account exists.": "A reset link will be sent if the account exists.", "Already have an account?": "Already have an account?", "Appearance": "Appearance", "Confirm password": "Confirm password", "Create account": "Create account", "Create an account": "Create an account", "Current password": "Current password", "Delete account": "Delete account", "Delete your account and all of its resources": "Delete your account and all of its resources", "Documentation": "Documentation", "Don't have an account?": "Don't have an account?", "Email address": "Email address", "Email password reset link": "Email password reset link", "Ensure your account is using a long, random password to stay secure": "Ensure your account is using a long, random password to stay secure", "Enter your details below to create your account": "Enter your details below to create your account", "Enter your email and password below to log in": "Enter your email and password below to log in", "Enter your email to receive a password reset link": "Enter your email to receive a password reset link", "Forgot password": "Forgot password", "Full name": "Full name", "log in": "log in", "Log in to your account": "Log in to your account", "Manage your profile and account settings": "Manage your profile and account settings", "New password": "New password", "Once your account is deleted, all of its resources and data will also be permanently deleted. Please confirm you would like to permanently delete your account.": "Once your account is deleted, all of its resources and data will also be permanently deleted. Please confirm you would like to permanently delete your account.", "Or, return to": "Or, return to", "Platform": "Platform", "Please enter your new password below": "Please enter your new password below", "Please verify your email address by clicking on the link we just emailed to you.": "Please verify your email address by clicking on the link we just emailed to you.", "Repository": "Repository", "Resend verification email": "Resend verification email", "Reset password": "Reset password", "Search": "Search", "Settings": "Settings", "Sign up": "Sign up", "status": "status", "This is a secure area of the application. Please confirm your password before continuing.": "This is a secure area of the application. Please confirm your password before continuing.", "Update password": "Update password", "Update the appearance settings for your account": "Update the appearance settings for your account", "Update your account's appearance settings": "Update your account's appearance settings", "Update your name and email address": "Update your name and email address" } ``` -------------------------------- ### JSON Translations for 'mg' Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/mg.md This snippet shows the JSON keys that are missing translations for the 'mg' language. It includes the keys 'Password' and 'Repository', indicating that these strings need to be translated. ```json { "Password": "Password", "Repository": "Repository" } ``` -------------------------------- ### JSON Translations for 'sl' Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/sl.md This snippet details the missing JSON translations for the 'sl' language. It lists the keys that are present but lack corresponding translated values. ```json { "status": "status" } ``` -------------------------------- ### JSON Translations for 'su' Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/su.md This snippet shows the missing JSON translations for the 'su' language. It lists the keys that are present but have no corresponding translated value. ```json { "Platform": "Platform", "status": "status" } ``` -------------------------------- ### User Authentication and Profile Management Translations Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/sr_Latn_ME.md This snippet contains common translation keys related to user authentication, account management, and profile settings. It includes phrases for login, registration, password reset, email verification, and account deletion. ```en "A new verification link has been sent to your email address." "A reset link will be sent if the account exists." "Already have an account?" "Appearance" "Are you sure you want to delete your account?" "Click here to re-send the verification email." "Confirm password" "Create account" "Create an account" "Current password" "Dark" "Delete account" "Delete your account and all of its resources" "Documentation" "Don't have an account?" "Email address" "Email password reset link" "Ensure your account is using a long, random password to stay secure" "Enter your details below to create your account" "Enter your email and password below to log in" "Enter your email to receive a password reset link" "Forgot password" "Full name" "Light" "log in" "Log in to your account" "Log out" "Manage your profile and account settings" "New password" "Once your account is deleted, all of its resources and data will also be permanently deleted. Please confirm you would like to permanently delete your account." "Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account." "Or, return to" "Platform" "Please enter your new password below" "Please verify your email address by clicking on the link we just emailed to you." "Repository" "Resend verification email" "Reset password" "Search" ``` -------------------------------- ### General UI and Navigation Phrases Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/uz_Latn.md Common phrases used for general UI elements, navigation, and settings within a Laravel application. ```en Appearance Dark Dashboard Documentation Light Manage your profile and account settings Platform Repository ``` -------------------------------- ### User Authentication and Profile Management Translations Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/sr_Latn.md This snippet contains common translation keys related to user authentication, account management, and profile settings. It includes phrases for login, registration, password reset, email verification, and account deletion. ```en "A new verification link has been sent to your email address." "A reset link will be sent if the account exists." "Already have an account?" "Appearance" "Are you sure you want to delete your account?" "Click here to re-send the verification email." "Confirm password" "Create account" "Create an account" "Current password" "Dark" "Delete account" "Delete your account and all of its resources" "Documentation" "Don't have an account?" "Email address" "Email password reset link" "Ensure your account is using a long, random password to stay secure" "Enter your details below to create your account" "Enter your email and password below to log in" "Enter your email to receive a password reset link" "Forgot password" "Full name" "Light" "log in" "Log in to your account" "Log out" "Manage your profile and account settings" "New password" "Once your account is deleted, all of its resources and data will also be permanently deleted. Please confirm you would like to permanently delete your account." "Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account." "Or, return to" "Platform" "Please enter your new password below" "Please verify your email address by clicking on the link we just emailed to you." "Repository" "Resend verification email" "Reset password" "Search" ``` -------------------------------- ### JSON Translation Entry for 'cy' Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/cy.md This snippet shows a single JSON key-value pair for the 'cy' language, indicating a missed translation. The key 'System' is present, but its corresponding value in 'cy' is missing. ```json { "System": "System" } ``` -------------------------------- ### Th Translation Strings Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/th.md A collection of key-value pairs for Thai language translations used in the Laravel starter kits. These strings cover user authentication, profile management, and general UI elements. ```json { "A reset link will be sent if the account exists.": "A reset link will be sent if the account exists.", "Already have an account?": "Already have an account?", "Appearance": "Appearance", "Confirm password": "Confirm password", "Create account": "Create account", "Create an account": "Create an account", "Current password": "Current password", "Delete account": "Delete account", "Delete your account and all of its resources": "Delete your account and all of its resources", "Documentation": "Documentation", "Don't have an account?": "Don't have an account?", "Email address": "Email address", "Email password reset link": "Email password reset link", "Ensure your account is using a long, random password to stay secure": "Ensure your account is using a long, random password to stay secure", "Enter your details below to create your account": "Enter your details below to create your account", "Enter your email and password below to log in": "Enter your email and password below to log in", "Enter your email to receive a password reset link": "Enter your email to receive a password reset link", "Forgot password": "Forgot password", "Full name": "Full name", "log in": "log in", "Log in to your account": "Log in to your account", "Manage your profile and account settings": "Manage your profile and account settings", "New password": "New password", "Once your account is deleted, all of its resources and data will also be permanently deleted. Please confirm you would like to permanently delete your account.": "Once your account is deleted, all of its resources and data will also be permanently deleted. Please confirm you would like to permanently delete your account.", "Or, return to": "Or, return to", "Platform": "Platform", "Please enter your new password below": "Please enter your new password below", "Please verify your email address by clicking on the link we just emailed to you.": "Please verify your email address by clicking on the link we just emailed to you.", "Repository": "Repository", "Resend verification email": "Resend verification email", "Reset password": "Reset password", "Search": "Search", "Settings": "Settings", "Sign up": "Sign up", "status": "status", "This is a secure area of the application. Please confirm your password before continuing.": "This is a secure area of the application. Please confirm your password before continuing.", "Update password": "Update password", "Update the appearance settings for your account": "Update the appearance settings for your account", "Update your account's appearance settings": "Update your account's appearance settings", "Update your name and email address": "Update your name and email address" } ``` -------------------------------- ### Filipino Translations for JSON Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/fil.md This snippet displays a comparison of translation keys and their values for the Filipino language within the JSON format. It highlights the keys that are missing translations. ```json { "Dashboard": "Dashboard", "Email": "Email", "Email address": "Email address", "Password": "Password", "Platform": "Platform", "Profile": "Profile" } ``` -------------------------------- ### JSON Translations - Missing Keys Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/ms.md This snippet shows the missing JSON translations for the 'ms' language. It indicates that 'Platform' and 'status' keys are untranslated. ```json { "Platform": "Platform", "status": "status" } ``` -------------------------------- ### JSON Translations for 'lb' Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/lb.md This snippet displays the current status of JSON translations for the 'lb' language. It lists the keys that are present and their corresponding values, indicating which translations are missing. ```json { "Dashboard": "Dashboard", "Repository": "Repository" } ``` -------------------------------- ### Missing Translations for 'nn' Language Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/nn.md This snippet shows the keys that are missing translations in the 'nn' language file. It lists 'status' and 'System' as the keys requiring translation. ```json { "status": "status", "System": "System" } ``` -------------------------------- ### JSON Translations for 'ku' Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/ku.md This snippet shows the JSON structure for 'ku' language translations. It indicates that 'Dashboard', 'Email', and 'Repository' are keys that are missing their corresponding values in the 'ku' locale. ```json { "Dashboard": "Dashboard", "Email": "Email", "Repository": "Repository" } ``` -------------------------------- ### Authentication Phrases Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/uz_Latn.md Common phrases related to user authentication, including registration, login, password reset, and email verification. ```en A new verification link has been sent to your email address. A reset link will be sent if the account exists. Already have an account? Are you sure you want to delete your account? Click here to re-send the verification email. Confirm password Create account Create an account Current password Delete account Delete your account and all of its resources Don't have an account? Email address Email password reset link Ensure your account is using a long, random password to stay secure Enter your details below to create your account Enter your email and password below to log in Enter your email to receive a password reset link Forgot password Full name log in Log in to your account Log Out Log out New password Once your account is deleted, all of its resources and data will also be permanently deleted. Please confirm you would like to permanently delete your account. Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account. Or, return to Please enter your new password below Please verify your email address by clicking on the link we just emailed to you. Resend verification email ``` -------------------------------- ### Bengali UI Translations (JSON) Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/bn.md This snippet represents a collection of Bengali translations for user interface elements and messages commonly found in web applications. It includes phrases related to authentication, account management, and general navigation. ```json { "A reset link will be sent if the account exists.": "A reset link will be sent if the account exists.", "Already have an account?": "Already have an account?", "Appearance": "Appearance", "Confirm password": "Confirm password", "Create account": "Create account", "Create an account": "Create an account", "Current password": "Current password", "Delete account": "Delete account", "Delete your account and all of its resources": "Delete your account and all of its resources", "Documentation": "Documentation", "Don't have an account?": "Don't have an account?", "Email address": "Email address", "Email password reset link": "Email password reset link", "Ensure your account is using a long, random password to stay secure": "Ensure your account is using a long, random password to stay secure", "Enter your details below to create your account": "Enter your details below to create your account", "Enter your email and password below to log in": "Enter your email and password below to log in", "Enter your email to receive a password reset link": "Enter your email to receive a password reset link", "Forgot password": "Forgot password", "Full name": "Full name", "log in": "log in", "Log in to your account": "Log in to your account", "Manage your profile and account settings": "Manage your profile and account settings", "New password": "New password", "Once your account is deleted, all of its resources and data will also be permanently deleted. Please confirm you would like to permanently delete your account.": "Once your account is deleted, all of its resources and data will also be permanently deleted. Please confirm you would like to permanently delete your account.", "Or, return to": "Or, return to", "Platform": "Platform", "Please enter your new password below": "Please enter your new password below", "Please verify your email address by clicking on the link we just emailed to you.": "Please verify your email address by clicking on the link we just emailed to you.", "Repository": "Repository", "Resend verification email": "Resend verification email", "Reset password": "Reset password", "Search": "Search", "Settings": "Settings", "Sign up": "Sign up", "status": "status", "This is a secure area of the application. Please confirm your password before continuing.": "This is a secure area of the application. Please confirm your password before continuing.", "Update password": "Update password", "Update the appearance settings for your account": "Update the appearance settings for your account", "Update your account's appearance settings": "Update your account's appearance settings", "Update your name and email address": "Update your name and email address" } ``` -------------------------------- ### JSON Translations - tl Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/tl.md This snippet shows the JSON structure for translations in the 'tl' language. It lists keys like 'Dashboard', 'Email address', 'Password', and 'Platform', indicating that these specific translations are missing. ```json { "Dashboard": "Dashboard", "Email address": "Email address", "Password": "Password", "Platform": "Platform" } ``` -------------------------------- ### el Language JSON Translations Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/el.md This snippet represents the Greek ('el') language translations for various UI elements and messages within the Laravel starter kits. It includes keys for account management, authentication, and general application text. All 40 entries are marked as missing. ```json { "A reset link will be sent if the account exists.": "A reset link will be sent if the account exists.", "Already have an account?": "Already have an account?", "Appearance": "Appearance", "Confirm password": "Confirm password", "Create account": "Create account", "Create an account": "Create an account", "Current password": "Current password", "Delete account": "Delete account", "Delete your account and all of its resources": "Delete your account and all of its resources", "Documentation": "Documentation", "Don't have an account?": "Don't have an account?", "Email address": "Email address", "Email password reset link": "Email password reset link", "Ensure your account is using a long, random password to stay secure": "Ensure your account is using a long, random password to stay secure", "Enter your details below to create your account": "Enter your details below to create your account", "Enter your email and password below to log in": "Enter your email and password below to log in", "Enter your email to receive a password reset link": "Enter your email to receive a password reset link", "Forgot password": "Forgot password", "Full name": "Full name", "log in": "log in", "Log in to your account": "Log in to your account", "Manage your profile and account settings": "Manage your profile and account settings", "New password": "New password", "Once your account is deleted, all of its resources and data will also be permanently deleted. Please confirm you would like to permanently delete your account.": "Once your account is deleted, all of its resources and data will also be permanently deleted. Please confirm you would like to permanently delete your account.", "Or, return to": "Or, return to", "Platform": "Platform", "Please enter your new password below": "Please enter your new password below", "Please verify your email address by clicking on the link we just emailed to you.": "Please verify your email address by clicking on the link we just emailed to you.", "Repository": "Repository", "Resend verification email": "Resend verification email", "Reset password": "Reset password", "Search": "Search", "Settings": "Settings", "Sign up": "Sign up", "status": "status", "This is a secure area of the application. Please confirm your password before continuing.": "This is a secure area of the application. Please confirm your password before continuing.", "Update password": "Update password", "Update the appearance settings for your account": "Update the appearance settings for your account", "Update your account's appearance settings": "Update your account's appearance settings", "Update your name and email address": "Update your name and email address" } ``` -------------------------------- ### JSON Translations (Missing) Source: https://github.com/laravel-lang/starter-kits/blob/main/docs/statuses/mt.md This snippet shows the missing JSON translations for the 'mt' language. It lists the keys that require translation, indicating a gap in the localization process for these specific terms. ```json { "Email": "Email", "Password": "Password", "Settings": "Settings", "status": "status" } ```