kate_categories.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * kate_categories.c : maps well known category tags to translated strings.
  3.  *****************************************************************************
  4.  * Copyright (C) 2009 ogg.k.ogg.k@googlemail.com
  5.  * $Id: bfe98d4696888a6d5dc514eb8a813824627a023c $
  6.  *
  7.  * Authors: ogg.k.ogg.k@googlemail.com
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <stddef.h>
  30. #include <string.h>
  31. #include "kate_categories.h"
  32. static const struct {
  33.   const char *psz_tag;
  34.   const char *psz_i18n;
  35. } Katei18nCategories[] = {
  36.     /* From Silvia's Mozilla list */
  37.     { "CC",      N_("Closed captions") },
  38.     { "SUB",     N_("Subtitles") },
  39.     { "TAD",     N_("Textual audio descriptions") },
  40.     { "KTV",     N_("Karaoke") },
  41.     { "TIK",     N_("Ticker text") },
  42.     { "AR",      N_("Active regions") },
  43.     { "NB",      N_("Semantic annotations") },
  44.     { "META",    N_("Metadata") },
  45.     { "TRX",     N_("Transcript") },
  46.     { "LRC",     N_("Lyrics") },
  47.     { "LIN",     N_("Linguistic markup") },
  48.     { "CUE",     N_("Cue points") },
  49.     /* Grandfathered */
  50.     { "subtitles", N_("Subtitles") },
  51.     { "spu-subtitles", N_("Subtitles (images)") },
  52.     { "lyrics", N_("Lyrics") },
  53.     /* Kate specific */
  54.     { "K-SPU", N_("Subtitles (images)") },
  55.     { "K-SLD-T", N_("Slides (text)") },
  56.     { "K-SLD-I", N_("Slides (images)") },
  57. };
  58. const char *FindKateCategoryName( const char *psz_tag )
  59. {
  60.     size_t i;
  61.     for( i = 0; i < sizeof(Katei18nCategories)/sizeof(Katei18nCategories[0]); i++ )
  62.     {
  63.         if( !strcmp( psz_tag, Katei18nCategories[i].psz_tag ) )
  64.             return Katei18nCategories[i].psz_i18n;
  65.     }
  66.     return N_("Unknown category");
  67. }