~ubuntu-branches/ubuntu/breezy/remind/breezy

« back to all changes in this revision

Viewing changes to src/langs/norwgian.h

  • Committer: Bazaar Package Importer
  • Author(s): Javier Fernandez-Sanguino Pen~a
  • Date: 1999-02-19 13:36:15 UTC
  • Revision ID: james.westby@ubuntu.com-19990219133615-ovob95sord67b0ks
Tags: 03.00.22-1
* NMU upload, maintainer seems to be missing.
* Changed to main (now GPL) (Closes: #42402)
* New upstream version (Closes: #59447)
* Moved to use debconf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************/
 
2
/*                                                             */
 
3
/*  NORWGIAN.H                                                 */
 
4
/*                                                             */
 
5
/*  Support for the Norwegian language.                        */
 
6
/*                                                             */
 
7
/*  This file is part of REMIND.                               */
 
8
/*  This file is Copyright (C) 1993 by Trygve Randen.          */
 
9
/*  Remind is Copyright (C) 1992-1998 by David F. Skoll        */
 
10
/*  Copyright 1999-2000 by Roaring Penguin Software Inc.       */
 
11
/*                                                             */
 
12
/***************************************************************/
 
13
 
 
14
/* $Id: norwgian.h,v 1.6 2000/02/18 03:46:24 dfs Exp $ */
 
15
 
 
16
/* The very first define in a language support file must be L_LANGNAME: */
 
17
#define L_LANGNAME "Norwegian"
 
18
 
 
19
/* Day names */
 
20
#if ISOLATIN1
 
21
#  define L_SUNDAY "S\370ndag"
 
22
#else
 
23
#  define L_SUNDAY "Soendag"
 
24
#endif
 
25
#define L_MONDAY "Mandag"
 
26
#define L_TUESDAY "Tirsdag"
 
27
#define L_WEDNESDAY "Onsdag"
 
28
#define L_THURSDAY "Torsdag"
 
29
#define L_FRIDAY "Fredag"
 
30
#if ISOLATIN1
 
31
#  define L_SATURDAY "L\370rdag"
 
32
#else
 
33
#  define L_SATURDAY "Loerdag"
 
34
#endif
 
35
 
 
36
/* Month names */
 
37
#define L_JAN "Januar"
 
38
#define L_FEB "Februar"
 
39
#define L_MAR "Mars"
 
40
#define L_APR "April"
 
41
#define L_MAY "Mai"
 
42
#define L_JUN "Juni"
 
43
#define L_JUL "Juli"
 
44
#define L_AUG "August"
 
45
#define L_SEP "September"
 
46
#define L_OCT "Oktober"
 
47
#define L_NOV "November"
 
48
#define L_DEC "Desember"
 
49
 
 
50
/* Today and tomorrow */
 
51
#define L_TODAY "i dag"
 
52
#define L_TOMORROW "i morgen"
 
53
 
 
54
/* The default banner */
 
55
#if ISOLATIN1
 
56
#  define L_BANNER "P\345minnelse for %w, %d. %m, %y%o:"
 
57
#else
 
58
#  define L_BANNER "Paaminnelse for %w, %d. %m, %y%o:"
 
59
#endif
 
60
 
 
61
/* "am" and "pm" */
 
62
#define L_AM "am"
 
63
#define L_PM "pm"
 
64
 
 
65
/*** The following are only used in dosubst.c ***/
 
66
#ifdef L_IN_DOSUBST
 
67
 
 
68
/* Ago and from now */
 
69
#define L_AGO "siden"
 
70
#if ISOLATIN1
 
71
#  define L_FROMNOW "fra n\345"
 
72
#else
 
73
#  define L_FROMNOW "fra naa"
 
74
#endif
 
75
 
 
76
/* "in %d days' time" */
 
77
#define L_INXDAYS "om %d dager"
 
78
 
 
79
/* "on" as in "on date..." */
 
80
#define L_ON "den"
 
81
 
 
82
/* Pluralizing - this is a problem for many languages and may require
 
83
   a more drastic fix */
 
84
#define L_PLURAL "er"
 
85
 
 
86
/* Minutes, hours, at, etc */
 
87
#if ISOLATIN1
 
88
#  define L_NOW "n\345"
 
89
#else
 
90
#  define L_NOW "naa"
 
91
#endif
 
92
#define L_AT "kl."
 
93
#define L_MINUTE "minutt"
 
94
#define L_HOUR "time"
 
95
#define L_IS "er"
 
96
#define L_WAS "var"
 
97
#define L_AND "og"
 
98
/* What to add to make "hour" plural */
 
99
#define L_HPLU "r"  
 
100
/* What to add to make "minute" plural */
 
101
#define L_MPLU "er"
 
102
 
 
103
/* Define any overrides here, such as L_ORDINAL_OVERRIDE, L_A_OVER, etc.
 
104
   See the file dosubst.c for more info. */
 
105
#define L_ORDINAL_OVERRIDE              plu = ".";
 
106
#define L_A_OVER                        sprintf(s, "%s %s, den %d. %s %d", L_ON, DayName[jul%7], d, MonthName[m], y);
 
107
#define L_G_OVER                        sprintf(s, "%s %s, den %d. %s", L_ON, DayName[jul%7], d, MonthName[m]);
 
108
#define L_U_OVER                        L_A_OVER
 
109
#define L_V_OVER                        L_G_OVER
 
110
 
 
111
 
 
112
#endif /* L_IN_DOSUBST */