示例#1
0
 public override string GetLocalizedString(DevExpress.XtraEditors.Controls.StringId id)
 {
     if (id == DevExpress.XtraEditors.Controls.StringId.DateEditToday)
     {
         return("Heute");
     }
     if (id == DevExpress.XtraEditors.Controls.StringId.DateEditClear)
     {
         return("Löschen");
     }
     return(base.GetLocalizedString(id));
 }
示例#2
0
 public override string GetLocalizedString(DevExpress.XtraEditors.Controls.StringId id)
 {
     if (id == DevExpress.XtraEditors.Controls.StringId.XtraMessageBoxYesButtonText)
     {
         return("Có");
     }
     if (id == DevExpress.XtraEditors.Controls.StringId.XtraMessageBoxNoButtonText)
     {
         return("Không");
     }
     return(base.GetLocalizedString(id));
 }
示例#3
0
        public override string GetLocalizedString(DevExpress.XtraEditors.Controls.StringId id)
        {
            string resStr = "StringId." + id.ToString();

            try {
                string ret = Manager.GetString(resStr);
                if (ret == null)
                {
                    MB.Util.TraceEx.Write(string.Format("在EditorsLocal 字符 {0} 语言本地化时没找到", resStr));
                    ret = "";
                }
                return(ret);
            }
            catch {
                //StringId.FilterOutlookDateText
                return(id.ToString());
            }
        }
示例#4
0
        public override string GetLocalizedString(DevExpress.XtraEditors.Controls.StringId id)
        {
            switch (id)
            {
            case DevExpress.XtraEditors.Controls.StringId.XtraMessageBoxYesButtonText:

                return("Bəli");

            case DevExpress.XtraEditors.Controls.StringId.XtraMessageBoxNoButtonText:

                return("Xeyr");

            case DevExpress.XtraEditors.Controls.StringId.XtraMessageBoxOkButtonText:

                return("Oldu");

            case DevExpress.XtraEditors.Controls.StringId.XtraMessageBoxCancelButtonText:

                return("Imtina et");

            case DevExpress.XtraEditors.Controls.StringId.TextEditMenuCopy:

                return("Kopyala");

            case DevExpress.XtraEditors.Controls.StringId.TextEditMenuCut:

                return("Kəs");

            case DevExpress.XtraEditors.Controls.StringId.TextEditMenuDelete:

                return("Sil");

            case DevExpress.XtraEditors.Controls.StringId.TextEditMenuPaste:

                return("Yapışdır");

            case DevExpress.XtraEditors.Controls.StringId.TextEditMenuSelectAll:

                return("Hamısını seç");

            case DevExpress.XtraEditors.Controls.StringId.TextEditMenuUndo:

                return("Qaytar");

            case DevExpress.XtraEditors.Controls.StringId.DateEditClear:

                return("Təmizlə");

            case DevExpress.XtraEditors.Controls.StringId.DateEditToday:

                return("Bu gün");

            case DevExpress.XtraEditors.Controls.StringId.Apply:

                return("Tətbiq et");

            case DevExpress.XtraEditors.Controls.StringId.Cancel:

                return("Imtina et");

            case DevExpress.XtraEditors.Controls.StringId.OK:

                return("Oldu");
            }
            return(base.GetLocalizedString(id));
        }
示例#5
0
 public override string GetLocalizedString(DevExpress.XtraEditors.Controls.StringId id)
 {
     return(id == DevExpress.XtraEditors.Controls.StringId.DataEmpty ? "" : base.GetLocalizedString(id));
 }