properties.inc.php 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?php
  2. /**
  3. * Gallery
  4. *
  5. * Copyright 2010-2012 by Shaun McCormick <shaun@modx.com>
  6. *
  7. * Gallery is free software; you can redistribute it and/or modify it under the
  8. * terms of the GNU General Public License as published by the Free Software
  9. * Foundation; either version 2 of the License, or (at your option) any later
  10. * version.
  11. *
  12. * Gallery is distributed in the hope that it will be useful, but WITHOUT ANY
  13. * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  14. * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License along with
  17. * Gallery; if not, write to the Free Software Foundation, Inc., 59 Temple
  18. * Place, Suite 330, Boston, MA 02111-1307 USA
  19. *
  20. * @package gallery
  21. */
  22. /**
  23. * German Lexicon Entries
  24. * Translated by Martin Gartner (gadgetto) / bitego.com
  25. *
  26. * @var array $_lang
  27. * @package gallery
  28. * @subpackage lexicon
  29. */
  30. /* Gallery Snippet */
  31. $_lang['gallery.activecls_desc'] = 'The CSS class to add when the active item (the item specified in the GalleryItem snippet) is displayed.';
  32. $_lang['gallery.album_desc'] = 'Will load only items from this album. Can be either the name or ID of the Album.';
  33. $_lang['gallery.albumrequestvar_desc'] = 'If checkForRequestAlbumVar is set to true, will look for a REQUEST var with this name to select the album.';
  34. $_lang['gallery.checkforrequestalbumvar_desc'] = 'If 1, if a REQUEST var of "album" is found, will use that as the album property for the snippet.';
  35. $_lang['gallery.checkforrequesttagvar_desc'] = 'If 1, if a REQUEST var of "tag" is found, will use that as the tag property for the snippet.';
  36. $_lang['gallery.containertpl_desc'] = 'An optional chunk to wrap the output in.';
  37. $_lang['gallery.dir_desc'] = 'The direction to sort images by.';
  38. $_lang['gallery.imagefar_desc'] = 'The "far" value for phpThumb for the image, for aspect ratio zooming.';
  39. $_lang['gallery.imageheight_desc'] = 'If being used by a plugin, the height of the currently on-display image.';
  40. $_lang['gallery.imagegetparam_desc'] = 'The GET param to use when not linking directly to an image. Make sure this matches the getParam property in the GalleryItem snippet call.';
  41. $_lang['gallery.imageproperties_desc'] = 'A JSON object of parameters to pass to phpThumb as properties for the image.';
  42. $_lang['gallery.imagequality_desc'] = 'The "q" value for phpThumb for the image, for quality.';
  43. $_lang['gallery.imagewidth_desc'] = 'If being used by a plugin, the width of the currently on-display image.';
  44. $_lang['gallery.imagezoomcrop_desc'] = 'If being used by a plugin, whether or not the currently on-display image will be zoom-cropped.';
  45. $_lang['gallery.itemcls_desc'] = 'The CSS class for each thumbnail.';
  46. $_lang['gallery.limit_desc'] = 'If set to non-zero, will only show X number of items.';
  47. $_lang['gallery.linktoimage_desc'] = 'If true, will link directly to the image. If false, will append GET parameters to the URL to load the image with the GalleryItem snippet.';
  48. $_lang['gallery.plugin_desc'] = 'The name of a plugin to use for front-end displaying. Please see the official docs for a list of available plugins.';
  49. $_lang['gallery.pluginpath_desc'] = 'Could not load plugin "[[+name]]" from path: [[+path]]';
  50. $_lang['gallery.showinactive_desc'] = 'If 1, will also display inactive images.';
  51. $_lang['gallery.sort_desc'] = 'The field to sort images by.';
  52. $_lang['gallery.start_desc'] = 'The index to start grabbing from when limiting the number of items. Similar to an SQL order by start clause.';
  53. $_lang['gallery.tag_desc'] = 'Will load only items with this tag.';
  54. $_lang['gallery.tagrequestvar_desc'] = 'If checkForRequestTagVar is set to true, will look for a REQUEST var with this name to select the tag.';
  55. $_lang['gallery.toplaceholder_desc'] = 'If set, will set the output to a placeholder of this value, and the snippet call will output nothing.';
  56. $_lang['gallery.thumbfar_desc'] = 'The "far" value for phpThumb for the thumbnail, for aspect ratio zooming.';
  57. $_lang['gallery.thumbheight_desc'] = 'The height of the generated thumbnails, in pixels.';
  58. $_lang['gallery.thumbproperties_desc'] = 'A JSON object of parameters to pass to phpThumb as properties for the thumbnail.';
  59. $_lang['gallery.thumbquality_desc'] = 'The "q" value for phpThumb for the thumbnail, for quality.';
  60. $_lang['gallery.thumbtpl_desc'] = 'The Chunk to use as a tpl for each thumbnail.';
  61. $_lang['gallery.thumbwidth_desc'] = 'The width of the generated thumbnails, in pixels.';
  62. $_lang['gallery.thumbzoomcrop_desc'] = 'Whether or not the thumbnail will be zoom-cropped.';
  63. $_lang['gallery.usecss_desc'] = 'Whether or not to use the pre-provided CSS for the snippet.';
  64. /* GalleryAlbums Snippet */
  65. $_lang['galleryalbums.albumrequestvar_desc'] = 'If checkForRequestAlbumVar is set to true, will look for a REQUEST var with this name to select the album.';
  66. $_lang['galleryalbums.albumcoversort_desc'] = 'The field which to use when sorting to get the Album Cover. To get the first image, use "rank". To get a random image, use "random".';
  67. $_lang['galleryalbums.albumcoversortdir_desc'] = 'The direction to use when sorting to get the Album Cover. Accepts "ASC" or "DESC".';
  68. $_lang['galleryalbums.dir_desc'] = 'The direction to sort the results by.';
  69. $_lang['galleryalbums.limit_desc'] = 'If set to non-zero, will limit the number of results returned.';
  70. $_lang['galleryalbums.parent_desc'] = 'Grab only the albums with a parent album with this ID.';
  71. $_lang['galleryalbums.prominentonly_desc'] = 'If 1, will only display albums marked with a "prominent" status.';
  72. $_lang['galleryalbums.rowcls_desc'] = 'A CSS class to be added to each album row.';
  73. $_lang['galleryalbums.rowtpl_desc'] = 'The Chunk to use for each album row.';
  74. $_lang['galleryalbums.showall_desc'] = 'If 1, will show all albums regardless of their parent.';
  75. $_lang['galleryalbums.showinactive_desc'] = 'If 1, will show inactive galleries as well.';
  76. $_lang['galleryalbums.showall_desc'] = 'If 0, will hide the album name in the album row tpl.';
  77. $_lang['galleryalbums.start_desc'] = 'The index to start from in the results.';
  78. $_lang['galleryalbums.sort_desc'] = 'The field to sort the results by.';
  79. $_lang['galleryalbums.thumbfar_desc'] = 'The "far" value for phpThumb for the album cover thumbnail, for aspect ratio zooming.';
  80. $_lang['galleryalbums.thumbheight_desc'] = 'The height of the generated album cover thumbnail, in pixels.';
  81. $_lang['galleryalbums.thumbproperties_desc'] = 'A JSON object of parameters to pass to phpThumb as properties for the album thumbnail.';
  82. $_lang['galleryalbums.thumbquality_desc'] = 'The "q" value for phpThumb for the album cover thumbnail, for quality.';
  83. $_lang['galleryalbums.thumbwidth_desc'] = 'The width of the generated album cover thumbnail, in pixels.';
  84. $_lang['galleryalbums.thumbzoomcrop_desc'] = 'Whether or not the album coverthumbnail will be zoom-cropped.';
  85. $_lang['galleryalbums.toplaceholder_desc'] = 'If not empty, will set the output to a placeholder with this value.';
  86. /* GalleryItem Snippet */
  87. $_lang['galleryitem.albumrequestvar_desc'] = 'The REQUEST var to use when linking albums.';
  88. $_lang['galleryitem.albumseparator_desc'] = 'A string separator for each album listed for the Item.';
  89. $_lang['galleryitem.albumtpl_desc'] = 'Name of a chunk to use for each album that is listed for the Item.';
  90. $_lang['galleryitem.id_desc'] = 'The ID of the item to display.';
  91. $_lang['galleryitem.imagefar_desc'] = 'The "far" value for phpThumb for the image, for aspect ratio zooming.';
  92. $_lang['galleryitem.imageheight_desc'] = 'If being used by a plugin, the max height of the generated image.';
  93. $_lang['galleryitem.imageproperties_desc'] = 'A JSON object of parameters to pass to phpThumb as properties for the generated image.';
  94. $_lang['galleryitem.imagequality_desc'] = 'The "q" value for phpThumb for the image, for quality.';
  95. $_lang['galleryitem.imagewidth_desc'] = 'If being used by a plugin, the max width of the generated image.';
  96. $_lang['galleryitem.imagezoomcrop_desc'] = 'Whether or not to use zoom cropping for the image.';
  97. $_lang['galleryitem.tagrequestvar_desc'] = 'The REQUEST var to use when linking tags.';
  98. $_lang['galleryitem.tagseparator_desc'] = 'A string separator for each tag listed for the Item.';
  99. $_lang['galleryitem.tagsortdir_desc'] = 'A the direction to sort the tags listed for the Item.';
  100. $_lang['galleryitem.tagtpl_desc'] = 'Name of a chunk to use for each tag that is listed for the Item.';
  101. $_lang['galleryitem.toplaceholders_desc'] = 'If true, will set the properties of the Item to placeholders. If false, will use the tpl property to output a chunk.';
  102. $_lang['galleryitem.toplaceholdersprefix_desc'] = 'Optional. The prefix to add to placeholders set by this snippet. Only works if toPlaceholders is true.';
  103. $_lang['galleryitem.tpl_desc'] = 'Name of a chunk to use when toPlaceholders is set to false.';
  104. $_lang['galleryitem.thumbfar_desc'] = 'The "far" value for phpThumb for the thumbnail, for aspect ratio zooming.';
  105. $_lang['galleryitem.thumbheight_desc'] = 'The max height of the generated thumbnail, in pixels.';
  106. $_lang['galleryitem.thumbproperties_desc'] = 'A JSON object of parameters to pass to phpThumb as properties for the thumbnail.';
  107. $_lang['galleryitem.thumbquality_desc'] = 'The "q" value for phpThumb for the thumbnail, for quality.';
  108. $_lang['galleryitem.thumbwidth_desc'] = 'The max width of the generated thumbnail, in pixels.';
  109. $_lang['galleryitem.thumbzoomcrop_desc'] = 'Whether or not to use zoom cropping for the thumbnail.';