diff --git a/plugins/latex/xp/ie_exp_LaTeX.cpp b/plugins/latex/xp/ie_exp_LaTeX.cpp index f3d56c6..d5a77ef 100644 --- a/plugins/latex/xp/ie_exp_LaTeX.cpp +++ b/plugins/latex/xp/ie_exp_LaTeX.cpp @@ -1046,7 +1046,7 @@ void s_LaTeX_Listener::_openSpan(PT_AttrPropIndex api) m_pie->write("\\texttt{"); m_NumCloseBrackets++; } - if (!strcmp("Arial", szValue) || + if (!strcmp("Liberation Sans", szValue) || !strcmp("Helvetic", szValue) || !strcmp("Luxi Sans",szValue)) { m_pie->write("\\textsf{"); diff --git a/plugins/opendocument/imp/xp/ODi_FontFaceDecls.cpp b/plugins/opendocument/imp/xp/ODi_FontFaceDecls.cpp index ed167dc..e0831c9 100644 --- a/plugins/opendocument/imp/xp/ODi_FontFaceDecls.cpp +++ b/plugins/opendocument/imp/xp/ODi_FontFaceDecls.cpp @@ -59,7 +59,7 @@ void ODi_FontFaceDecls::startElement (const gchar* pName, fontFamily = pFontFamily; if (pFontFamily && (pFontFamily[0] == '\'') && (pFontFamily[strlen(pFontFamily)-1] == '\'')) { - // e.g.: Turns a "'Times New Roman'" into a "Times New Roman". + // e.g.: Turns a "'Liberation Serif'" into a "Liberation Serif". // OpenOffice.org sometimes adds those extra "'" surrounding the // font family name if it's composed by more than one word. m_fontFamilies[pStyleName] = diff --git a/plugins/openwriter/xp/ie_exp_OpenWriter.cpp b/plugins/openwriter/xp/ie_exp_OpenWriter.cpp index 1fab89a..a399c59 100644 --- a/plugins/openwriter/xp/ie_exp_OpenWriter.cpp +++ b/plugins/openwriter/xp/ie_exp_OpenWriter.cpp @@ -900,12 +900,12 @@ bool OO_StylesWriter::writeStyles(PD_Document * pDoc, GsfOutfile * oo, OO_Styles { "\n", "\n", - "\n", + "\n", "\n", "\n", "\n", "\n", - "\n", + "\n", "\n" }; diff --git a/plugins/openxml/common/xp/OXML_FontManager.cpp b/plugins/openxml/common/xp/OXML_FontManager.cpp index 41b719d..2c53c1a 100644 --- a/plugins/openxml/common/xp/OXML_FontManager.cpp +++ b/plugins/openxml/common/xp/OXML_FontManager.cpp @@ -34,7 +34,7 @@ #include OXML_FontManager::OXML_FontManager() : - m_defaultFont("Times New Roman") + m_defaultFont("Liberation Serif") { m_major_rts.clear(); m_minor_rts.clear(); diff --git a/plugins/openxml/common/xp/OXML_List.cpp b/plugins/openxml/common/xp/OXML_List.cpp index 5bcb47a..88dba7e 100644 --- a/plugins/openxml/common/xp/OXML_List.cpp +++ b/plugins/openxml/common/xp/OXML_List.cpp @@ -258,7 +258,7 @@ UT_Error OXML_List::serialize(IE_Exp_OpenXML* exporter) txt = txt.replace(index+1, 1, 1, '1'+i); } - std::string fontFamily("Times New Roman"); + std::string fontFamily("Liberation Serif"); const gchar* listType = "bullet"; switch(type) { diff --git a/plugins/passepartout/xp/ie_exp_Passepartout.cpp b/plugins/passepartout/xp/ie_exp_Passepartout.cpp index e18e7f1..eec9367 100644 --- a/plugins/passepartout/xp/ie_exp_Passepartout.cpp +++ b/plugins/passepartout/xp/ie_exp_Passepartout.cpp @@ -318,7 +318,7 @@ void Passepartout_Listener::_openBlock(PT_AttrPropIndex api) } else { - TempStr = UT_UTF8String_sprintf(" font-family=\"%s\"", "Times New Roman" ); + TempStr = UT_UTF8String_sprintf(" font-family=\"%s\"", "Liberation Serif" ); m_pie->write(TempStr.utf8_str()); } @@ -426,7 +426,7 @@ void Passepartout_Listener::_openFont(PT_AttrPropIndex api) } else { - TempStr = UT_UTF8String_sprintf(" font-family=\"%s\"", "Times New Roman" ); + TempStr = UT_UTF8String_sprintf(" font-family=\"%s\"", "Liberation Serif" ); m_pie->write(TempStr.utf8_str()); } diff --git a/plugins/t602/xp/ie_imp_T602.cpp b/plugins/t602/xp/ie_imp_T602.cpp index a57a9e2..f7f2301 100644 --- a/plugins/t602/xp/ie_imp_T602.cpp +++ b/plugins/t602/xp/ie_imp_T602.cpp @@ -620,7 +620,7 @@ switch (c) case 0x01: m_sfont ^=1; if (m_sfont & 1) - { m_size=static_cast(0.8*m_basesize); m_family="Arial"; + { m_size=static_cast(0.8*m_basesize); m_family="Liberation Sans"; /* FIXME? -> .profile?*/ } else { m_size=m_basesize; m_family=m_basefamily; } diff --git a/src/af/gr/gtk/gr_UnixCairoGraphics.cpp b/src/af/gr/gtk/gr_UnixCairoGraphics.cpp index 4c8d23c..6bcfd6d 100644 --- a/src/af/gr/gtk/gr_UnixCairoGraphics.cpp +++ b/src/af/gr/gtk/gr_UnixCairoGraphics.cpp @@ -234,7 +234,7 @@ GR_Font * GR_UnixCairoGraphics::getGUIFont(void) const char *guiFontName = pango_font_description_get_family(tempStyle->font_desc); #endif if (!guiFontName) - guiFontName = "'Times New Roman'"; + guiFontName = "'Liberation Serif'"; UT_UTF8String s = XAP_EncodingManager::get_instance()->getLanguageISOName(); diff --git a/src/af/gr/xp/gr_CairoGraphics.cpp b/src/af/gr/xp/gr_CairoGraphics.cpp index 224b883..38ef911 100644 --- a/src/af/gr/xp/gr_CairoGraphics.cpp +++ b/src/af/gr/xp/gr_CairoGraphics.cpp @@ -776,8 +776,8 @@ bool GR_CairoGraphics::shape(GR_ShapingInfo & si, GR_RenderInfo *& ri) /* * Pango does a royally bad job of the font substitution in - * pango_itemize(): it will happily return 'Times New Roman' as - * font when we have requested 'Arial', even though the latter is + * pango_itemize(): it will happily return 'Liberation Serif' as + * font when we have requested 'Liberation Sans', even though the latter is * present and has the necessary coverage. Consequently we have to * do the font substitution manually even on the first shapping. * @@ -3054,7 +3054,7 @@ GR_Font * GR_CairoGraphics::getDefaultFont(GR_Font::FontFamilyEnum f, case GR_Font::FF_Technical: case GR_Font::FF_BiDi: - pszFontFamily = "Arial"; + pszFontFamily = "Liberation Sans"; break; default: diff --git a/src/af/util/xp/ut_misc.cpp b/src/af/util/xp/ut_misc.cpp index 52246c3..bcd5a6d 100644 --- a/src/af/util/xp/ut_misc.cpp +++ b/src/af/util/xp/ut_misc.cpp @@ -570,7 +570,7 @@ const gchar ** UT_setPropsToValue(const gchar ** props, const gchar * value) } /*! - splits the xml property string (font-size:24pt;font-face:Arial') into names and values + splits the xml property string (font-size:24pt;font-face:Liberation Sans') into names and values and stores them in an array the caller has to delete[] the array; the process is destructive to props diff --git a/src/af/xap/cocoa/xap_CocoaToolPalette.nib/keyedobjects.nib b/src/af/xap/cocoa/xap_CocoaToolPalette.nib/keyedobjects.nib index f21c815..e284cc9 100644 --- a/src/af/xap/cocoa/xap_CocoaToolPalette.nib/keyedobjects.nib +++ b/src/af/xap/cocoa/xap_CocoaToolPalette.nib/keyedobjects.nib @@ -10910,7 +10910,7 @@ 624 - Times New Roman + Liberation Serif _popUpItemAction: $class diff --git a/src/af/xap/gtk/xap_UnixDlg_FileOpenSaveAs.cpp b/src/af/xap/gtk/xap_UnixDlg_FileOpenSaveAs.cpp index bf94333..f77b40b 100644 --- a/src/af/xap/gtk/xap_UnixDlg_FileOpenSaveAs.cpp +++ b/src/af/xap/gtk/xap_UnixDlg_FileOpenSaveAs.cpp @@ -904,7 +904,7 @@ gint XAP_UnixDialog_FileOpenSaveAs::previewPicture (void) const gchar * file_name = gtk_file_chooser_get_uri (m_FC); - GR_Font * fnt = pGr->findFont("Times New Roman", + GR_Font * fnt = pGr->findFont("Liberation Serif", "normal", "", "normal", "", "12pt", pSS->getLanguageName()); diff --git a/src/af/xap/win/xap_Win32Dlg_About.cpp b/src/af/xap/win/xap_Win32Dlg_About.cpp index 2cc4aa6..3aec3f0 100644 --- a/src/af/xap/win/xap_Win32Dlg_About.cpp +++ b/src/af/xap/win/xap_Win32Dlg_About.cpp @@ -289,7 +289,7 @@ void XAP_Win32Dialog_About::runModal(XAP_Frame * pFrame) lf.lfWeight = 0; HFONT hfontSmall = CreateFontIndirectW(&lf); - wcscpy(lf.lfFaceName, L"Arial"); + wcscpy(lf.lfFaceName, L"Liberation Sans"); lf.lfHeight = 36; lf.lfWeight = FW_BOLD; HFONT hfontHeading = CreateFontIndirectW(&lf); diff --git a/src/af/xap/xp/xap_Dlg_FontChooser.cpp b/src/af/xap/xp/xap_Dlg_FontChooser.cpp index 56ad605..8a89eb5 100644 --- a/src/af/xap/xp/xap_Dlg_FontChooser.cpp +++ b/src/af/xap/xp/xap_Dlg_FontChooser.cpp @@ -570,7 +570,7 @@ void XAP_Preview_FontPreview::draw(const UT_Rect *clip) std::string sWeight = getVal("font-weight"); if(sFamily.empty()) - sFamily = "Times New Roman"; + sFamily = "Liberation Serif"; if(sStyle.empty()) sStyle = "normal"; diff --git a/src/af/xap/xp/xap_Dlg_Zoom.cpp b/src/af/xap/xp/xap_Dlg_Zoom.cpp index 25f1a38..c025206 100644 --- a/src/af/xap/xp/xap_Dlg_Zoom.cpp +++ b/src/af/xap/xp/xap_Dlg_Zoom.cpp @@ -124,7 +124,7 @@ void XAP_Dialog_Zoom::_createPreviewFromGC(GR_Graphics * gc, UT_ASSERT(m_zoomPreview); m_zoomPreview->setWindowSize(width, height); - m_zoomPreview->setString("10-pt Times New Roman"); + m_zoomPreview->setString("10-pt Liberation Serif"); m_zoomPreview->setFont(XAP_Preview_Zoom::font_NORMAL); m_zoomPreview->setZoomPercent(m_zoomPercent); diff --git a/src/af/xap/xp/xap_Preview_Zoom.cpp b/src/af/xap/xp/xap_Preview_Zoom.cpp index 3ac69e1..0fdae0e 100644 --- a/src/af/xap/xp/xap_Preview_Zoom.cpp +++ b/src/af/xap/xp/xap_Preview_Zoom.cpp @@ -63,7 +63,7 @@ void XAP_Preview_Zoom::setFont(XAP_Preview_Zoom::tFont f) { case XAP_Preview_Zoom::font_NORMAL: sprintf (fontString, "%dpt", (10 * m_zoomPercent / 100)); - found = m_gc->findFont("Times New Roman", + found = m_gc->findFont("Liberation Serif", "normal", "", "normal", "", fontString, NULL); diff --git a/src/text/fmt/xp/fl_BlockLayout.cpp b/src/text/fmt/xp/fl_BlockLayout.cpp index f56e1f5..f0d8dd5 100644 --- a/src/text/fmt/xp/fl_BlockLayout.cpp +++ b/src/text/fmt/xp/fl_BlockLayout.cpp @@ -10260,7 +10260,7 @@ void fl_BlockLayout::StartList( const gchar * style, pf_Frag_Strux* prevSDH) szDec="."; if(!szFont) { - szFont = "Times New Roman"; + szFont = "Liberation Serif"; UT_ASSERT(UT_SHOULD_NOT_HAPPEN); } } diff --git a/src/text/fmt/xp/fp_Line.cpp b/src/text/fmt/xp/fp_Line.cpp index 8be126c..ede4ddd 100644 --- a/src/text/fmt/xp/fp_Line.cpp +++ b/src/text/fmt/xp/fp_Line.cpp @@ -1856,7 +1856,7 @@ void fp_Line::_doClearScreenFromRunToEnd(UT_sint32 runIndex) pRun = m_vecRuns.getNthItem(_getRunLogIndx(runIndex)); // Handle case where character extends behind the left side - // like italic Times New Roman f. Clear a litle bit before if + // like italic Liberation Serif f. Clear a litle bit before if // there is clear screen there UT_sint32 j = runIndex - 1; diff --git a/src/text/fmt/xp/fp_TextRun.cpp b/src/text/fmt/xp/fp_TextRun.cpp index 0e93665..ddb46cb 100644 --- a/src/text/fmt/xp/fp_TextRun.cpp +++ b/src/text/fmt/xp/fp_TextRun.cpp @@ -1442,7 +1442,7 @@ void fp_TextRun::_clearScreen(bool /* bFullLineHeightRect */) // // Handle case where character extend behind the left side - // like italic Times New Roman f + // like italic Liberation Serif f // fp_Line * thisLine = getLine(); fp_Run * pPrev = getPrevRun(); diff --git a/src/text/fmt/xp/fv_View.cpp b/src/text/fmt/xp/fv_View.cpp index 38cf5cf..360f99d 100644 --- a/src/text/fmt/xp/fv_View.cpp +++ b/src/text/fmt/xp/fv_View.cpp @@ -586,9 +586,9 @@ FV_View::FV_View(XAP_App * pApp, void* pParentData, FL_DocLayout* pLayout) s += pCountry; } - // do a fuzzy match for Times New Roman + // do a fuzzy match for Liberation Serif const char * pszFamily = - GR_Graphics::findNearestFont ("Times New Roman", + GR_Graphics::findNearestFont ("Liberation Serif", "normal", "normal", "normal", "normal", "12pt", s.utf8_str()); diff --git a/src/text/ptbl/xp/pp_Property.cpp b/src/text/ptbl/xp/pp_Property.cpp index 2c9a27b..c191b38 100644 --- a/src/text/ptbl/xp/pp_Property.cpp +++ b/src/text/ptbl/xp/pp_Property.cpp @@ -104,7 +104,7 @@ static PP_Property _props[] = { "field-color", "dcdcdc", true, NULL, PP_LEVEL_FIELD}, { "field-font", "NULL", true, NULL, PP_LEVEL_FIELD}, - { "font-family", "Times New Roman", true, NULL, PP_LEVEL_CHAR}, + { "font-family", "Liberation Serif", true, NULL, PP_LEVEL_CHAR}, { "font-size", "12pt", true, NULL, PP_LEVEL_CHAR}, // MS word defaults to 10pt, but it just seems too small { "font-stretch", "normal", true, NULL, PP_LEVEL_CHAR}, { "font-style", "normal", true, NULL, PP_LEVEL_CHAR}, diff --git a/src/text/ptbl/xp/pp_Revision.cpp b/src/text/ptbl/xp/pp_Revision.cpp index 47a9976..ebfc7f5 100644 --- a/src/text/ptbl/xp/pp_Revision.cpp +++ b/src/text/ptbl/xp/pp_Revision.cpp @@ -436,7 +436,7 @@ void PP_RevisionAttr::_init(const gchar *r) return; // the string we are parsing looks like - // "+1,-2,!3{font-family: Times New Roman}" + // "+1,-2,!3{font-family: Liberation Serif}" // first duplicate the string so we can play with it ... char * s = (char*) g_strdup(r); diff --git a/src/text/ptbl/xp/pp_Revision.h b/src/text/ptbl/xp/pp_Revision.h index f093ef0..9f77e84 100644 --- a/src/text/ptbl/xp/pp_Revision.h +++ b/src/text/ptbl/xp/pp_Revision.h @@ -116,7 +116,7 @@ class ABI_EXPORT PP_Revision: public PP_AttrProp where n is a numerical id of the revision and props is regular property string, for instance - font-family:Times New Roman + font-family:Liberation Serif revoval of property/attribute is indicated by setting to -/-, e.g., diff --git a/src/text/ptbl/xp/pt_PT_Styles.cpp b/src/text/ptbl/xp/pt_PT_Styles.cpp index 3829f0d..c9f370c 100644 --- a/src/text/ptbl/xp/pt_PT_Styles.cpp +++ b/src/text/ptbl/xp/pt_PT_Styles.cpp @@ -176,7 +176,7 @@ bool pt_PieceTable::_loadBuiltinStyles(void) s += pCountry; } - const char* pszFamily = XAP_App::findNearestFont("Times New Roman", + const char* pszFamily = XAP_App::findNearestFont("Liberation Serif", "normal", "", "normal", "", "12pt", s.utf8_str()); @@ -188,7 +188,7 @@ bool pt_PieceTable::_loadBuiltinStyles(void) "text-indent:0in; text-position:normal; line-height:1.0; " "color:000000; bgcolor:transparent; widows:2", pszFamily); - pszFamily = XAP_App::findNearestFont("Arial", "normal", "", + pszFamily = XAP_App::findNearestFont("Liberation Sans", "normal", "", "normal", "", "12pt", s.utf8_str()); // used to set the dom-dir of the style here, but we do not want to do that. The @@ -263,7 +263,7 @@ bool pt_PieceTable::_loadBuiltinStyles(void) UT_String_sprintf(stTmp, list_fmt, "Arrowhead List","0", LIST_DEFAULT_INDENT, LIST_DEFAULT_INDENT_LABEL, "transparent", "%L", pszFamily, "NULL"); _s("Arrowhead List",false, "P", "", "Current Settings", stTmp.c_str()); - // pszFamily is the nearest font to Arial found in the system + // pszFamily is the nearest font to Liberation Sans found in the system UT_String_sprintf(stTmp, "tabstops:0.3in/L0; list-style:Numbered List; " "start-value:1; margin-left:0.0in; text-indent:0.0in; " "field-color:transparent; list-delim:%%L.; field-font:%s; " @@ -274,7 +274,7 @@ bool pt_PieceTable::_loadBuiltinStyles(void) _s("Numbered Heading 2",true,"P","Heading 2","Normal", stTmp.c_str()); _s("Numbered Heading 3",true,"P","Heading 3","Normal", stTmp.c_str()); - // pszFamily is the nearest font to Arial found in the system + // pszFamily is the nearest font to Liberation Sans found in the system UT_String_sprintf(stTmp, list_fmt, "Numbered List", "1",LIST_DEFAULT_INDENT, LIST_DEFAULT_INDENT_LABEL, "transparent", "%L.", "NULL", "."); diff --git a/src/wp/ap/xp/ap_Dialog_Lists.cpp b/src/wp/ap/xp/ap_Dialog_Lists.cpp index 5aa32cb..dfeb4c1 100644 --- a/src/wp/ap/xp/ap_Dialog_Lists.cpp +++ b/src/wp/ap/xp/ap_Dialog_Lists.cpp @@ -1109,7 +1109,7 @@ void AP_Lists_preview::setData(const gchar * pszFont,float fAlign,float fIndent) // if(!pszFont || strcmp(pszFont,"NULL")== 0) { - m_pFont = m_gc->findFont("Times New Roman", + m_pFont = m_gc->findFont("Liberation Serif", "normal", "", "normal", "", "16pt", NULL); } diff --git a/src/wp/ap/xp/ap_Dialog_PageNumbers.cpp b/src/wp/ap/xp/ap_Dialog_PageNumbers.cpp index ecfdfcb..db3a518 100644 --- a/src/wp/ap/xp/ap_Dialog_PageNumbers.cpp +++ b/src/wp/ap/xp/ap_Dialog_PageNumbers.cpp @@ -88,7 +88,7 @@ AP_Preview_PageNumbers::AP_Preview_PageNumbers (GR_Graphics * gc) char fontString [10]; sprintf(fontString, "%dpt", 8); - GR_Font * found = m_gc->findFont("Times New Roman", "normal", + GR_Font * found = m_gc->findFont("Liberation Serif", "normal", "", "normal", "", fontString, NULL); diff --git a/src/wp/ap/xp/ap_Preview_Annotation.cpp b/src/wp/ap/xp/ap_Preview_Annotation.cpp index 5068315..91571e3 100644 --- a/src/wp/ap/xp/ap_Preview_Annotation.cpp +++ b/src/wp/ap/xp/ap_Preview_Annotation.cpp @@ -95,7 +95,7 @@ void AP_Preview_Annotation::setSizeFromAnnotation(void) pG = pView->getGraphics(); UT_return_if_fail(pG); - GR_Font * pFont = pG->findFont("Times New Roman", "normal", + GR_Font * pFont = pG->findFont("Liberation Serif", "normal", "normal", "normal", "normal", "12pt", NULL); @@ -124,7 +124,7 @@ void AP_Preview_Annotation::draw(const UT_Rect *clip) UT_RGBColor FGcolor(0,0,0); UT_RGBColor BGcolor(m_clrBackground); - m_pFont = m_gc->findFont("Times New Roman", "normal", + m_pFont = m_gc->findFont("Liberation Serif", "normal", "normal", "normal", "normal", "12pt", NULL); diff --git a/src/wp/ap/xp/ap_Preview_Paragraph.cpp b/src/wp/ap/xp/ap_Preview_Paragraph.cpp index fc4dc38..fba04f1 100644 --- a/src/wp/ap/xp/ap_Preview_Paragraph.cpp +++ b/src/wp/ap/xp/ap_Preview_Paragraph.cpp @@ -540,7 +540,7 @@ void AP_Preview_Paragraph::draw(const UT_Rect *clip) bool AP_Preview_Paragraph::_loadDrawFont(const char *name) { // we draw at 7 points in this preview - GR_Font * font = m_gc->findFont(name ? name : "Times New Roman", + GR_Font * font = m_gc->findFont(name ? name : "Liberation Serif", "normal", "", "normal", "", "7pt", NULL); // might need to get the real lang diff --git a/src/wp/impexp/xp/ie_imp_MsWord_97.cpp b/src/wp/impexp/xp/ie_imp_MsWord_97.cpp index 4673f80..d194004 100644 --- a/src/wp/impexp/xp/ie_imp_MsWord_97.cpp +++ b/src/wp/impexp/xp/ie_imp_MsWord_97.cpp @@ -628,10 +628,10 @@ s_fieldFontForListStyle (MSWordListIdType id) return "NULL"; case WLNF_UPPER_LETTER: // upper letter - return "Times New Roman"; + return "Liberation Serif"; case WLNF_LOWER_LETTER: // lower letter - return "Times New Roman"; + return "Liberation Serif"; case WLNF_BULLETS: // bullet list UT_DEBUGMSG(("Fieldfont set to symbol \n")); @@ -639,11 +639,11 @@ s_fieldFontForListStyle (MSWordListIdType id) case WLNF_EUROPEAN_ARABIC: case WLNF_ORDINAL: // ordinal - return "Times New Roman"; + return "Liberation Serif"; default: - UT_DEBUGMSG(("unknown list type %d field-font set to Times New Roman \n",id)); - return "Times New Roman"; + UT_DEBUGMSG(("unknown list type %d field-font set to Liberation Serif \n",id)); + return "Liberation Serif"; } } @@ -5250,7 +5250,7 @@ void IE_Imp_MsWord_97::_generateCharProps(UT_String &s, const CHP * achp, wvPars if(fname) s += fname; else - s += "Times New Roman"; + s += "Liberation Serif"; FREEP(fname); } diff --git a/src/wp/impexp/xp/ie_imp_RTF.cpp b/src/wp/impexp/xp/ie_imp_RTF.cpp index 97a6f29..3177c9c 100644 --- a/src/wp/impexp/xp/ie_imp_RTF.cpp +++ b/src/wp/impexp/xp/ie_imp_RTF.cpp @@ -6313,11 +6313,11 @@ bool IE_Imp_RTF::buildCharacterProps(std::string & propBuffer) // {\f83\fnil\fcharset0\fprq0{\*\panose 00000000000000000000} ;} // note the empty slot after the panose entry // later it gets referenced: {\b\f83\fs24\cf1\cgrid0 Malte Cornils - // this turns those into "Times New Roman" for now, as a hack to keep from crashing + // this turns those into "Liberation Serif" for now, as a hack to keep from crashing if ( pFont->m_pFontName != NULL ) propBuffer += pFont->m_pFontName; else - propBuffer += "Times New Roman"; + propBuffer += "Liberation Serif"; } if (m_currentRTFState.m_charProps.m_hasColour) { @@ -9034,7 +9034,7 @@ bool IE_Imp_RTF::ReadFontTable() { // NB: Ignores whitespace until we've seen non-whitespace data. // This means we pick up the spaces in font names like - // "Times New Roman", but it also means that any font names + // "Liberation Serif", but it also means that any font names // that genuinely start with spaces will have them discarded. // This is hopefully not a problem. tokenType = NextToken(keyword, ¶meter,& paramUsed, @@ -9102,11 +9102,11 @@ bool IE_Imp_RTF::ReadFontTable() // It's possible that the font name will be empty. This might happend // because the font table didn't specify a name, or because the \ansicpgN // command was invalid, in which case the mbtowc convertion might fail. - // In these cases, substitute "Times New Roman". + // In these cases, substitute "Liberation Serif". if (!sFontNamesAndPanose[SFontTableState::MainFontName].length()) { - UT_DEBUGMSG(("RTF: Font Index %d: Substituting \"Times New Roman\" for missing font name.\n", fontIndex)); - sFontNamesAndPanose[SFontTableState::MainFontName] = "Times New Roman"; + UT_DEBUGMSG(("RTF: Font Index %d: Substituting \"Liberation Serif\" for missing font name.\n", fontIndex)); + sFontNamesAndPanose[SFontTableState::MainFontName] = "Liberation Serif"; } // Validate and post-process the Panose string. if (!PostProcessAndValidatePanose(sFontNamesAndPanose[SFontTableState::Panose])) diff --git a/user/wp/readme.abw b/user/wp/readme.abw index 7bf2cdc..48e3bb6 100644 --- a/user/wp/readme.abw +++ b/user/wp/readme.abw @@ -16,9 +16,9 @@ - - - + + +
diff --git a/user/wp/templates/Business-Letter.awt b/user/wp/templates/Business-Letter.awt index 524558a..9448277 100644 --- a/user/wp/templates/Business-Letter.awt +++ b/user/wp/templates/Business-Letter.awt @@ -19,14 +19,14 @@ - - - + + + - - - - + + + +
diff --git a/user/wp/templates/Business-Report.awt b/user/wp/templates/Business-Report.awt index c2e85c9..f2f5b16 100644 --- a/user/wp/templates/Business-Report.awt +++ b/user/wp/templates/Business-Report.awt @@ -21,7 +21,7 @@

Title

-

Subtitle

+

Subtitle

Release 1.0

@@ -99,11 +99,11 @@

-

Heading 1

+

Heading 1

text

-

Heading 2

+

Heading 2

text

-

Heading 3

+

Heading 3

diff --git a/user/wp/templates/Employee-Directory.awt b/user/wp/templates/Employee-Directory.awt index c4f7ebc..b0faa54 100644 --- a/user/wp/templates/Employee-Directory.awt +++ b/user/wp/templates/Employee-Directory.awt @@ -10,9 +10,9 @@
-

Company Name

-

Directory of Employees

-

+

Company Name

+

Directory of Employees

+

@@ -36,59 +36,59 @@

Normal Style (123) 555-1212

-

Department Name

-

The big boss upstairs (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

-

-

Department Name

-

The big boss upstairs (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

-

-

Department Name

-

The big boss upstairs (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

-

-

Department Name

-

The big boss upstairs (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

Last Name, First Name (123) 555-1212

-

-

-

General Numbers

-

Front Desk (123) 555-1212

-

Security (123) 555-1212

-

Building Management (123) 555-1212

-

Other General Numbers (123) 555-1212

+

Department Name

+

The big boss upstairs (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

+

+

Department Name

+

The big boss upstairs (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

+

+

Department Name

+

The big boss upstairs (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

+

+

Department Name

+

The big boss upstairs (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

Last Name, First Name (123) 555-1212

+

+

+

General Numbers

+

Front Desk (123) 555-1212

+

Security (123) 555-1212

+

Building Management (123) 555-1212

+

Other General Numbers (123) 555-1212

diff --git a/user/wp/templates/Fax-Coversheet.awt b/user/wp/templates/Fax-Coversheet.awt index acc7ba8..cc5779c 100644 --- a/user/wp/templates/Fax-Coversheet.awt +++ b/user/wp/templates/Fax-Coversheet.awt @@ -10,26 +10,26 @@
-

Company Name

-

Company Address Line 1

-

Company Address Line 2

-

Company Address Line 3

-

-

FAX

-

TO: From:

-

Fax: Pages:

-

Phone: Date:

+

Company Name

+

Company Address Line 1

+

Company Address Line 2

+

Company Address Line 3

+

+

FAX

+

TO: From:

+

Fax: Pages:

+

Phone: Date:

Re: CC:

-

 Urgent  For Review  Please Comment  Please Reply  Please Recycle

-

+

 Urgent  For Review  Please Comment  Please Reply  Please Recycle

+

-

Comments

+

Comments

-

This text should the replaced with your comments about the fax and any additional comment to the receiver.

+

This text should the replaced with your comments about the fax and any additional comment to the receiver.

diff --git a/user/wp/templates/Friendly-Letter.awt b/user/wp/templates/Friendly-Letter.awt index 5a25db1..2e687fc 100644 --- a/user/wp/templates/Friendly-Letter.awt +++ b/user/wp/templates/Friendly-Letter.awt @@ -16,12 +16,12 @@ - - - - - - + + + + + +
diff --git a/user/wp/templates/Memo.awt b/user/wp/templates/Memo.awt index 79b5538..560a4cd 100644 --- a/user/wp/templates/Memo.awt +++ b/user/wp/templates/Memo.awt @@ -14,10 +14,10 @@ Fri Mar 12 21:07:56 2004 - - - - + + + + @@ -59,10 +59,10 @@

The box that this text is in uses AbiWord's table support to draw the border. You can either allow the border to fit to the size of the text as it is now, or press <ENTER> repeatedly at the end of your memo to expand the border to fill the rest of the page.

Don't forget to change the header and footer before printing! If you wish to save this memo for later and ensure that the date above is saved as today's (not automatically updating), select it and type the desired date text over it.

The styles used in this document for correct conversion, import, export, and HTML are:

-

Heading 1 for Company Name

-

Heading 2 for Slogan

-

Heading 3 for "Date:", "To:", etc.

-

Normal for body text

+

Heading 1 for Company Name

+

Heading 2 for Slogan

+

Heading 3 for "Date:", "To:", etc.

+

Normal for body text

diff --git a/user/wp/templates/Press-Release.awt b/user/wp/templates/Press-Release.awt index 708bce7..4d8bac1 100644 --- a/user/wp/templates/Press-Release.awt +++ b/user/wp/templates/Press-Release.awt @@ -16,19 +16,19 @@ - - - - + + + + - + - + @@ -36,19 +36,19 @@ - - - + + + - - - + + + - + @@ -77,7 +77,7 @@

-

FOR IMMEDIATE RELEASE

+

FOR IMMEDIATE RELEASE

diff --git a/user/wp/templates/Resume.awt b/user/wp/templates/Resume.awt index 1e61cdd..8eda0b7 100644 --- a/user/wp/templates/Resume.awt +++ b/user/wp/templates/Resume.awt @@ -14,11 +14,11 @@ Fri Mar 12 22:08:25 2004 - - - - - + + + + +
diff --git a/user/wp/templates/normal.awt b/user/wp/templates/normal.awt index 4c83f82..e7fcb00 100644 --- a/user/wp/templates/normal.awt +++ b/user/wp/templates/normal.awt @@ -9,7 +9,7 @@ - + diff --git a/user/wp/templates/normal.awt-am_ET b/user/wp/templates/normal.awt-am_ET index cb1a8d4..c7b7707 100644 --- a/user/wp/templates/normal.awt-am_ET +++ b/user/wp/templates/normal.awt-am_ET @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-ar b/user/wp/templates/normal.awt-ar index 9aa7a5c..0cd8882 100644 --- a/user/wp/templates/normal.awt-ar +++ b/user/wp/templates/normal.awt-ar @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-ar_EG b/user/wp/templates/normal.awt-ar_EG index 5fcf2d1..b920dcc 100644 --- a/user/wp/templates/normal.awt-ar_EG +++ b/user/wp/templates/normal.awt-ar_EG @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-ar_SA b/user/wp/templates/normal.awt-ar_SA index 09c1bbb..12ad0d6 100644 --- a/user/wp/templates/normal.awt-ar_SA +++ b/user/wp/templates/normal.awt-ar_SA @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-bg_BG b/user/wp/templates/normal.awt-bg_BG index df6f2bf..d789046 100644 --- a/user/wp/templates/normal.awt-bg_BG +++ b/user/wp/templates/normal.awt-bg_BG @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-ca_ES b/user/wp/templates/normal.awt-ca_ES index 0a337a2..69fecfd 100644 --- a/user/wp/templates/normal.awt-ca_ES +++ b/user/wp/templates/normal.awt-ca_ES @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-cs_CZ b/user/wp/templates/normal.awt-cs_CZ index 3e5e87e..d2cb937 100644 --- a/user/wp/templates/normal.awt-cs_CZ +++ b/user/wp/templates/normal.awt-cs_CZ @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-da_DK b/user/wp/templates/normal.awt-da_DK index 6ce3d83..f8706cb 100644 --- a/user/wp/templates/normal.awt-da_DK +++ b/user/wp/templates/normal.awt-da_DK @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-de b/user/wp/templates/normal.awt-de index 8faa619..c0c18f7 100644 --- a/user/wp/templates/normal.awt-de +++ b/user/wp/templates/normal.awt-de @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-de_AT b/user/wp/templates/normal.awt-de_AT index 9abfde1..d0ec20e 100644 --- a/user/wp/templates/normal.awt-de_AT +++ b/user/wp/templates/normal.awt-de_AT @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-de_CH b/user/wp/templates/normal.awt-de_CH index 0aa531a..24b0f8d 100644 --- a/user/wp/templates/normal.awt-de_CH +++ b/user/wp/templates/normal.awt-de_CH @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-de_DE b/user/wp/templates/normal.awt-de_DE index 0190408..6372e78 100644 --- a/user/wp/templates/normal.awt-de_DE +++ b/user/wp/templates/normal.awt-de_DE @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-div_MV b/user/wp/templates/normal.awt-div_MV index 9a8c50e..88270ce 100644 --- a/user/wp/templates/normal.awt-div_MV +++ b/user/wp/templates/normal.awt-div_MV @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-el_GR b/user/wp/templates/normal.awt-el_GR index e1c8de5..1db03a4 100644 --- a/user/wp/templates/normal.awt-el_GR +++ b/user/wp/templates/normal.awt-el_GR @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-en_AU b/user/wp/templates/normal.awt-en_AU index c7fa4c9..0e29beb 100644 --- a/user/wp/templates/normal.awt-en_AU +++ b/user/wp/templates/normal.awt-en_AU @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-en_CA b/user/wp/templates/normal.awt-en_CA index 3729a04..cff6807 100644 --- a/user/wp/templates/normal.awt-en_CA +++ b/user/wp/templates/normal.awt-en_CA @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-en_GB b/user/wp/templates/normal.awt-en_GB index 14b8bcf..55364cd 100644 --- a/user/wp/templates/normal.awt-en_GB +++ b/user/wp/templates/normal.awt-en_GB @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-en_IE b/user/wp/templates/normal.awt-en_IE index 95e3fc7..7b0c3a5 100644 --- a/user/wp/templates/normal.awt-en_IE +++ b/user/wp/templates/normal.awt-en_IE @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-en_NZ b/user/wp/templates/normal.awt-en_NZ index 70016d2..0871e93 100644 --- a/user/wp/templates/normal.awt-en_NZ +++ b/user/wp/templates/normal.awt-en_NZ @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-en_ZA b/user/wp/templates/normal.awt-en_ZA index ebe7ee3..c4f7795 100644 --- a/user/wp/templates/normal.awt-en_ZA +++ b/user/wp/templates/normal.awt-en_ZA @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-es b/user/wp/templates/normal.awt-es index 12c611c..a2067e0 100644 --- a/user/wp/templates/normal.awt-es +++ b/user/wp/templates/normal.awt-es @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-es_AR b/user/wp/templates/normal.awt-es_AR index 87130b5..fc8ac38 100644 --- a/user/wp/templates/normal.awt-es_AR +++ b/user/wp/templates/normal.awt-es_AR @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-es_ES b/user/wp/templates/normal.awt-es_ES index 87130b5..fc8ac38 100644 --- a/user/wp/templates/normal.awt-es_ES +++ b/user/wp/templates/normal.awt-es_ES @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-es_IR b/user/wp/templates/normal.awt-es_IR index 4d3e321..33c7144 100644 --- a/user/wp/templates/normal.awt-es_IR +++ b/user/wp/templates/normal.awt-es_IR @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-es_MX b/user/wp/templates/normal.awt-es_MX index 52c3411..2522a82 100644 --- a/user/wp/templates/normal.awt-es_MX +++ b/user/wp/templates/normal.awt-es_MX @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-fa_IR b/user/wp/templates/normal.awt-fa_IR index db24783..a0f0bde 100644 --- a/user/wp/templates/normal.awt-fa_IR +++ b/user/wp/templates/normal.awt-fa_IR @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-fi_FI b/user/wp/templates/normal.awt-fi_FI index 1471a71..b65fa66 100644 --- a/user/wp/templates/normal.awt-fi_FI +++ b/user/wp/templates/normal.awt-fi_FI @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-fr b/user/wp/templates/normal.awt-fr index 4e94583..67ae7c2 100644 --- a/user/wp/templates/normal.awt-fr +++ b/user/wp/templates/normal.awt-fr @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-fr_BE b/user/wp/templates/normal.awt-fr_BE index 8b310c4..d4b7723 100644 --- a/user/wp/templates/normal.awt-fr_BE +++ b/user/wp/templates/normal.awt-fr_BE @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-fr_CA b/user/wp/templates/normal.awt-fr_CA index e673aac..c3bb3fd 100644 --- a/user/wp/templates/normal.awt-fr_CA +++ b/user/wp/templates/normal.awt-fr_CA @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-fr_CH b/user/wp/templates/normal.awt-fr_CH index 1888a71..eb4b5de 100644 --- a/user/wp/templates/normal.awt-fr_CH +++ b/user/wp/templates/normal.awt-fr_CH @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-fr_FR b/user/wp/templates/normal.awt-fr_FR index f877981..0f523f6 100644 --- a/user/wp/templates/normal.awt-fr_FR +++ b/user/wp/templates/normal.awt-fr_FR @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-gl_ES b/user/wp/templates/normal.awt-gl_ES index 7f4876b..006645e 100644 --- a/user/wp/templates/normal.awt-gl_ES +++ b/user/wp/templates/normal.awt-gl_ES @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-he b/user/wp/templates/normal.awt-he index a3da00f..f1a238f 100644 --- a/user/wp/templates/normal.awt-he +++ b/user/wp/templates/normal.awt-he @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-he_IL b/user/wp/templates/normal.awt-he_IL index 98d81eb..e78e16b 100644 --- a/user/wp/templates/normal.awt-he_IL +++ b/user/wp/templates/normal.awt-he_IL @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-hu_HU b/user/wp/templates/normal.awt-hu_HU index d79154f..0dd6026 100644 --- a/user/wp/templates/normal.awt-hu_HU +++ b/user/wp/templates/normal.awt-hu_HU @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-it_IT b/user/wp/templates/normal.awt-it_IT index a72f1d4..1121843 100644 --- a/user/wp/templates/normal.awt-it_IT +++ b/user/wp/templates/normal.awt-it_IT @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-ja_JP b/user/wp/templates/normal.awt-ja_JP index 4f379e1..351fdd6 100644 --- a/user/wp/templates/normal.awt-ja_JP +++ b/user/wp/templates/normal.awt-ja_JP @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-lt_LT b/user/wp/templates/normal.awt-lt_LT index e9d6ec1..b66be4a 100644 --- a/user/wp/templates/normal.awt-lt_LT +++ b/user/wp/templates/normal.awt-lt_LT @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-nb_NO b/user/wp/templates/normal.awt-nb_NO index 1b6398f..5cdf741 100644 --- a/user/wp/templates/normal.awt-nb_NO +++ b/user/wp/templates/normal.awt-nb_NO @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-nl_NL b/user/wp/templates/normal.awt-nl_NL index 0f8b299..4be5de2 100644 --- a/user/wp/templates/normal.awt-nl_NL +++ b/user/wp/templates/normal.awt-nl_NL @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-nn_NO b/user/wp/templates/normal.awt-nn_NO index 981d577..1a36ad3 100644 --- a/user/wp/templates/normal.awt-nn_NO +++ b/user/wp/templates/normal.awt-nn_NO @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-pl_PL b/user/wp/templates/normal.awt-pl_PL index 0405d45..7f32223 100644 --- a/user/wp/templates/normal.awt-pl_PL +++ b/user/wp/templates/normal.awt-pl_PL @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-ps b/user/wp/templates/normal.awt-ps index 971e62f..e5e674f 100644 --- a/user/wp/templates/normal.awt-ps +++ b/user/wp/templates/normal.awt-ps @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-pt_BR b/user/wp/templates/normal.awt-pt_BR index bdf4c09..4d85f5c 100644 --- a/user/wp/templates/normal.awt-pt_BR +++ b/user/wp/templates/normal.awt-pt_BR @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-pt_PT b/user/wp/templates/normal.awt-pt_PT index 7a44c3e..e1b766e 100644 --- a/user/wp/templates/normal.awt-pt_PT +++ b/user/wp/templates/normal.awt-pt_PT @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-ru b/user/wp/templates/normal.awt-ru index c34fd94..6e29dfd 100644 --- a/user/wp/templates/normal.awt-ru +++ b/user/wp/templates/normal.awt-ru @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-ru_RU b/user/wp/templates/normal.awt-ru_RU index b07198e..4f435ea 100644 --- a/user/wp/templates/normal.awt-ru_RU +++ b/user/wp/templates/normal.awt-ru_RU @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-sk_SK b/user/wp/templates/normal.awt-sk_SK index d03a1a5..bb04b0e 100644 --- a/user/wp/templates/normal.awt-sk_SK +++ b/user/wp/templates/normal.awt-sk_SK @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-sl b/user/wp/templates/normal.awt-sl index 2dfcf1a..e874715 100644 --- a/user/wp/templates/normal.awt-sl +++ b/user/wp/templates/normal.awt-sl @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-sv b/user/wp/templates/normal.awt-sv index d0f5163..82aa982 100644 --- a/user/wp/templates/normal.awt-sv +++ b/user/wp/templates/normal.awt-sv @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-sv_SE b/user/wp/templates/normal.awt-sv_SE index 932da12..55d9e8c 100644 --- a/user/wp/templates/normal.awt-sv_SE +++ b/user/wp/templates/normal.awt-sv_SE @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-syr b/user/wp/templates/normal.awt-syr index 72b77ad..3bd9503 100644 --- a/user/wp/templates/normal.awt-syr +++ b/user/wp/templates/normal.awt-syr @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-tr b/user/wp/templates/normal.awt-tr index 489bc0a..2497b35 100644 --- a/user/wp/templates/normal.awt-tr +++ b/user/wp/templates/normal.awt-tr @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-tr_TR b/user/wp/templates/normal.awt-tr_TR index bf775c8..bfd3982 100644 --- a/user/wp/templates/normal.awt-tr_TR +++ b/user/wp/templates/normal.awt-tr_TR @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-uk_UA b/user/wp/templates/normal.awt-uk_UA index 6c759ad..76cbd8c 100644 --- a/user/wp/templates/normal.awt-uk_UA +++ b/user/wp/templates/normal.awt-uk_UA @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-ur_PK b/user/wp/templates/normal.awt-ur_PK index 00cc1c7..8fcaf67 100644 --- a/user/wp/templates/normal.awt-ur_PK +++ b/user/wp/templates/normal.awt-ur_PK @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-yi b/user/wp/templates/normal.awt-yi index e25ac13..02ffba4 100644 --- a/user/wp/templates/normal.awt-yi +++ b/user/wp/templates/normal.awt-yi @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-zh_CN b/user/wp/templates/normal.awt-zh_CN index d103911..3a949bc 100644 --- a/user/wp/templates/normal.awt-zh_CN +++ b/user/wp/templates/normal.awt-zh_CN @@ -9,7 +9,7 @@ - +
diff --git a/user/wp/templates/normal.awt-zh_TW b/user/wp/templates/normal.awt-zh_TW index 3570d5e..8a2cdd7 100644 --- a/user/wp/templates/normal.awt-zh_TW +++ b/user/wp/templates/normal.awt-zh_TW @@ -9,7 +9,7 @@ - +