summaryrefslogtreecommitdiff
path: root/src/translator_bg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/translator_bg.h')
-rw-r--r--src/translator_bg.h24
1 files changed, 13 insertions, 11 deletions
diff --git a/src/translator_bg.h b/src/translator_bg.h
index b38bfca..cb12744 100644
--- a/src/translator_bg.h
+++ b/src/translator_bg.h
@@ -102,6 +102,10 @@ class TranslatorBulgarian : public TranslatorAdapter_1_9_4
virtual QCString trDetailedDescription()
{ return "Подробно описание"; }
+ /*! header that is used when the summary tag is missing inside the details tag */
+ virtual QCString trDetails()
+ { return "Подробности"; }
+
/*! header that is put before the list of typedefs. */
virtual QCString trMemberTypedefDocumentation()
{ return "Членове Дефинирани типове Документация"; }
@@ -424,12 +428,6 @@ class TranslatorBulgarian : public TranslatorAdapter_1_9_4
virtual QCString trFileDocumentation()
{ return "Файлове Документация"; }
- /*! This is used in LaTeX as the title of the chapter containing
- * the documentation of all examples.
- */
- virtual QCString trExampleDocumentation()
- { return "Примери Документация"; }
-
/*! This is used in LaTeX as the title of the document */
virtual QCString trReferenceManual()
{ return "Помощно ръководство"; }
@@ -1817,16 +1815,20 @@ class TranslatorBulgarian : public TranslatorAdapter_1_9_4
*/
virtual QCString trDateTime(int year,int month,int day,int dayOfWeek,
int hour,int minutes,int seconds,
- bool includeTime)
+ DateTimeType includeTime)
{
static const char *days[] = { "Пн","Вт","Ср","Чт","Пт","Сб","Нд" };
static const char *months[] = { "Яну","Фев","Мар","Апр","Май","Юни","Юли","Авг","Сеп","Окт","Ное","Дек" };
QCString sdate;
- sdate.sprintf("%s %s %d %d",days[dayOfWeek-1],months[month-1],day,year);
- if (includeTime)
+ if (includeTime == DateTimeType::DateTime || includeTime == DateTimeType::Date)
+ {
+ sdate.sprintf("%s %s %d %d",days[dayOfWeek-1],months[month-1],day,year);
+ }
+ if (includeTime == DateTimeType::DateTime) sdate += " ";
+ if (includeTime == DateTimeType::DateTime || includeTime == DateTimeType::Time)
{
QCString stime;
- stime.sprintf(" %.2d:%.2d:%.2d",hour,minutes,seconds);
+ stime.sprintf("%.2d:%.2d:%.2d",hour,minutes,seconds);
sdate+=stime;
}
return sdate;
@@ -2043,7 +2045,7 @@ class TranslatorBulgarian : public TranslatorAdapter_1_9_4
virtual QCString trFunctionAndProc()
{ return "Функции/Процедури/Процеси"; }
/** VHDL type */
- virtual QCString trVhdlType(uint64 type,bool single)
+ virtual QCString trVhdlType(uint64_t type,bool single)
{
switch(type)
{