File: setup.c

package info (click to toggle)
vdr-plugin-osdteletext 2.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 860 kB
  • sloc: ansic: 12,465; makefile: 83; sh: 14
file content (46 lines) | stat: -rw-r--r-- 1,624 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*************************************************************** -*- c++ -*-
 *       Copyright (c) < 2021    by TODO                                   *
 *       Copyright (c) 2021      by Peter Bieringer (extenions)            *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#include "setup.h"

const char *st_modesHotkey[] =
{
      // 1:1 relation between st_modes[] in osdteletext.c + eTeletextAction in setup.h + st_modesHotkey in setup.c
      // maximum 10 chars used in line25 hotkey //
      trNOOP("Zoom"),
      trNOOP("Half Page"),
      trNOOP("ChangeChan"),
      trNOOP("SwitchBack"),
      trNOOP("Config"),
      trNOOP("FooterLine"),
      trNOOP("Answer"),
      trNOOP("Pause"),
      trNOOP("HkLevel+"),
      trNOOP("HkLevel-"),
      trNOOP("Preset+"),
      trNOOP("Preset-"),
      trNOOP("Jump to...") // has to stay always the last one
};

const char *config_modes[] =
{
   // maximum 9 chars, 10th is -/+
   trNOOP("Left"),
   trNOOP("Top"),
   trNOOP("Width"),
   trNOOP("Height"),
   trNOOP("Frame"),
   trNOOP("Text Font"),
   trNOOP("TxVoffset"),
   trNOOP("BackTrans"),
};

// vim: ts=3 sw=3 et