PageRenderTime 45ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/libxnoise/Resources/xnoise-resources.vala

https://bitbucket.org/michel-slm/xnoise
Vala | 90 lines | 48 code | 13 blank | 29 comment | 0 complexity | de4382250185ac6a2de5f7440f9888f5 MD5 | raw file
  1. /* xnoise-recources.vala
  2. *
  3. * Copyright (C) 2012 Jörn Magens
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * The Xnoise authors hereby grant permission for non-GPL compatible
  11. * GStreamer plugins to be used and distributed together with GStreamer
  12. * and Xnoise. This permission is above and beyond the permissions granted
  13. * by the GPL license by which Xnoise is covered. If you modify this code
  14. * you may extend this exception to your version of the code, but you are not
  15. * obligated to do so. If you do not wish to do so, delete this exception
  16. * statement from your version.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU General Public License
  24. * along with this program; if not, write to the Free Software
  25. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  26. *
  27. * Author:
  28. * Jörn Magens
  29. */
  30. namespace Xnoise.Resources {
  31. public static const string UNKNOWN_ARTIST = "unknown artist";
  32. public static const string VARIOUS_ARTISTS = "Various artists";
  33. public static const string UNKNOWN_TITLE = "unknown title";
  34. public static const string UNKNOWN_ALBUM = "unknown album";
  35. public static const string UNKNOWN_GENRE = "unknown genre";
  36. public static const string UNKNOWN_ORGANIZATION = "unknown organization";
  37. public static const string UNKNOWN_LOCATION = "unknown location";
  38. public static const string EMPTYSTRING = "";
  39. public static const string VA_ICON_SYMBOLIC = "system-users-symbolic";
  40. public static const string ARTIST_ICON_SYMBOLIC = "avatar-default-symbolic";
  41. public static const string ALBUM_ICON_SYMBOLIC = "media-optical-symbolic";
  42. public static const string TITLE_ICON_SYMBOLIC = "audio-x-generic-symbolic";
  43. public static const string GENRE_ICON_SYMBOLIC = "emblem-documents-symbolic";
  44. public static const string VIDEO_ICON_SYMBOLIC = "video-x-generic-symbolic";
  45. public static const string STREAM_ICON_SYMBOLIC = "network-cellular-signal-excellent-symbolic";
  46. public static const string MAIN_DATABASE_NAME = "db.sqlite";
  47. public static const string INIFILE = "xnoise.ini";
  48. public static const string VIDEOVIEW_NAME = "VideoView";
  49. public static const string TRACKLIST_VIEW_NAME = "TrackListView";
  50. public static const string LYRICS_VIEW_NAME = "LyricsView";
  51. internal static const int ICON_LARGE_PIXELSIZE = 180;
  52. internal static const int ICON_SMALL_PIXELSIZE = 30;
  53. public static const int VIDEOTHUMBNAILSIZE = 40; //TODO
  54. internal static const int DB_VERSION_MAJOR = 21;
  55. internal static const int DB_VERSION_MINOR = 0;
  56. public static const string UNKNOWN_ARTIST_LOCALIZED = _("unknown artist");
  57. public static const string UNKNOWN_TITLE_LOCALIZED = _("unknown title");
  58. public static const string UNKNOWN_ALBUM_LOCALIZED = _("unknown album");
  59. internal static const string SHOWVIDEO = _("Now Playing");
  60. internal static const string SHOWTRACKLIST = _("Tracklist");
  61. internal static const string SHOWLYRICS = _("Lyrics");
  62. internal static const string HIDE_LIBRARY = _("Hide Media Library");
  63. internal static const string SHOW_LIBRARY = _("Show Media Library");
  64. internal static const string AUTHORS[] = {
  65. "Jörn Magens",
  66. "Andi",
  67. "Francisco Pérez Cuadrado",
  68. "Tal",
  69. "Dominique Lasserre",
  70. null
  71. };
  72. internal static const string COPYRIGHT = "Copyright \xc2\xa9 2008-2013 Jörn Magens";
  73. internal static const string PROGRAM_NAME = "xnoise";
  74. internal static const string WEBSITE = "http://www.xnoise-media-player.com/";
  75. internal static const string WEB_FAQ = "https://bitbucket.org/shuerhaaken/xnoise/wiki/FAQ";
  76. internal static const string WEB_KEYBOARD_SC = "https://bitbucket.org/shuerhaaken/xnoise/wiki/KeyBindings";
  77. }