locale.js 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. "use strict";
  2. module.exports = {
  3. strings: {
  4. addBulkFilesFailed: {
  5. 0: 'Failed to add %{smart_count} file due to an internal error',
  6. 1: 'Failed to add %{smart_count} files due to internal errors'
  7. },
  8. youCanOnlyUploadX: {
  9. 0: 'You can only upload %{smart_count} file',
  10. 1: 'You can only upload %{smart_count} files'
  11. },
  12. youHaveToAtLeastSelectX: {
  13. 0: 'You have to select at least %{smart_count} file',
  14. 1: 'You have to select at least %{smart_count} files'
  15. },
  16. exceedsSize: '%{file} exceeds maximum allowed size of %{size}',
  17. missingRequiredMetaField: 'Missing required meta fields',
  18. missingRequiredMetaFieldOnFile: 'Missing required meta fields in %{fileName}',
  19. inferiorSize: 'This file is smaller than the allowed size of %{size}',
  20. youCanOnlyUploadFileTypes: 'You can only upload: %{types}',
  21. noMoreFilesAllowed: 'Cannot add more files',
  22. noDuplicates: "Cannot add the duplicate file '%{fileName}', it already exists",
  23. companionError: 'Connection with Companion failed',
  24. authAborted: 'Authentication aborted',
  25. companionUnauthorizeHint: 'To unauthorize to your %{provider} account, please go to %{url}',
  26. failedToUpload: 'Failed to upload %{file}',
  27. noInternetConnection: 'No Internet connection',
  28. connectedToInternet: 'Connected to the Internet',
  29. // Strings for remote providers
  30. noFilesFound: 'You have no files or folders here',
  31. selectX: {
  32. 0: 'Select %{smart_count}',
  33. 1: 'Select %{smart_count}'
  34. },
  35. allFilesFromFolderNamed: 'All files from folder %{name}',
  36. openFolderNamed: 'Open folder %{name}',
  37. cancel: 'Cancel',
  38. logOut: 'Log out',
  39. filter: 'Filter',
  40. resetFilter: 'Reset filter',
  41. loading: 'Loading...',
  42. authenticateWithTitle: 'Please authenticate with %{pluginName} to select files',
  43. authenticateWith: 'Connect to %{pluginName}',
  44. signInWithGoogle: 'Sign in with Google',
  45. searchImages: 'Search for images',
  46. enterTextToSearch: 'Enter text to search for images',
  47. search: 'Search',
  48. emptyFolderAdded: 'No files were added from empty folder',
  49. folderAlreadyAdded: 'The folder "%{folder}" was already added',
  50. folderAdded: {
  51. 0: 'Added %{smart_count} file from %{folder}',
  52. 1: 'Added %{smart_count} files from %{folder}'
  53. }
  54. }
  55. };