Changeset 2329 for FCKeditor/branches

Show
Ignore:
Timestamp:
2008-08-05 12:13:32 (4 months ago)
Author:
fredck
Message:

Merged trunk into branches/versions/2.6.x. Final commit for the release of version 2.6.3.

Location:
FCKeditor/branches/versions/2.6.x
Files:
26 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/branches/versions/2.6.x/_dev/build_release.bat

    r2288 r2329  
    1 @ECHO OFF 
     1@ECHO OFF 
    22 
    33:: 
     
    2626 
    2727:: Update this variable for each new release. 
    28 SET RELEASER_VERSION=2.6.3 Beta 
     28SET RELEASER_VERSION=2.6.3 
    2929 
    3030CLS 
  • FCKeditor/branches/versions/2.6.x/editor/dialog/fck_anchor.html

    r2288 r2329  
    120120 
    121121        if ( aNewAnchors.length == 0 ) 
    122         { 
    123                 // Nothing was selected, so now just create a normal A 
    124                 if ( FCKBrowserInfo.IsIE ) 
    125                         aNewAnchors.push( oEditor.FCK.InsertElement( '<a name="' + FCKTools.HTMLEncode( sNewName ).replace( '"', '&quot;' ) + '">' ) ) ; 
    126                 else 
    127                 { 
    128                         var n = oEditor.FCK.InsertElement( 'a' ) ; 
    129                         n.name = sNewName ; 
    130                         aNewAnchors.push( n ) ; 
    131                 } 
    132         } 
     122                        aNewAnchors.push( oEditor.FCK.InsertElement( 'a' ) ) ; 
    133123        else 
    134124        { 
     
    142132        { 
    143133                oAnchor = aNewAnchors[i] ; 
     134 
     135                // Set the name 
     136                if ( FCKBrowserInfo.IsIE ) 
     137                { 
     138                        // Setting anchor names directly in IE will trash the HTML code stored 
     139                        // in FCKTempBin after undos. See #2263. 
     140                        var replaceAnchor = oEditor.FCK.EditorDocument.createElement( '<a name="' + 
     141                                        FCKTools.HTMLEncode( sNewName ).replace( '"', '&quot;' ) + '">' ) ; 
     142                        oEditor.FCKDomTools.MoveChildren( oAnchor, replaceAnchor ) ; 
     143                        oAnchor.parentNode.replaceChild( replaceAnchor, oAnchor ) ; 
     144                        oAnchor = replaceAnchor ; 
     145                } 
     146                else 
     147                        oAnchor.name = sNewName ; 
    144148 
    145149                // IE does require special processing to show the Anchor's image 
  • FCKeditor/branches/versions/2.6.x/editor/dialog/fck_spellerpages.html

    r2288 r2329  
    5454        if ( numberOCorrections > 0 ) 
    5555        { 
     56                oEditor.FCKUndo.SaveUndoStep() ; 
    5657                oEditor.FCK.EditorDocument.body.innerHTML = document.getElementById('txtHtml').value ; 
    5758                if ( oEditor.FCKBrowserInfo.IsIE ) 
  • FCKeditor/branches/versions/2.6.x/editor/lang/ca.js

    r2288 r2329  
    4444InsertLinkLbl           : "Enllaç", 
    4545InsertLink                      : "Insereix/Edita enllaç", 
    46 RemoveLink                      : "Elimina enllaç", 
    47 VisitLink                       : "Open Link",  //MISSING 
     46RemoveLink                      : "Elimina l'enllaç", 
     47VisitLink                       : "Obre l'enllaç", 
    4848Anchor                          : "Insereix/Edita àncora", 
    4949AnchorDelete            : "Elimina àncora", 
     
    7474IncreaseIndent          : "Augmenta el sagnat", 
    7575Blockquote                      : "Bloc de cita", 
    76 CreateDiv                       : "Create Div Container",       //MISSING 
    77 EditDiv                         : "Edit Div Container", //MISSING 
    78 DeleteDiv                       : "Remove Div Container",       //MISSING 
     76CreateDiv                       : "Crea un contenidor Div", 
     77EditDiv                         : "Edita el contenidor Div", 
     78DeleteDiv                       : "Elimina el contenidor Div", 
    7979Undo                            : "Desfés", 
    8080Redo                            : "Refés", 
     
    161161NoActiveX                       : "Les preferències del navegador poden limitar algunes funcions d'aquest editor. Cal habilitar l'opció \"Executa controls ActiveX i plug-ins\". Poden sorgir errors i poden faltar algunes funcions.", 
    162162BrowseServerBlocked : "El visualitzador de recursos no s'ha pogut obrir. Assegura't de que els bloquejos de finestres emergents estan desactivats.", 
    163 DialogBlocked           : "No ha estat possible obrir una finestra de diàleg. Assegura't de que els bloquejos de finestres emergents estan desactivats.", 
    164 VisitLinkBlocked        : "It was not possible to open a new window. Make sure all popup blockers are disabled.",       //MISSING 
     163DialogBlocked           : "No ha estat possible obrir una finestra de diàleg. Assegureu-vos que els bloquejos de finestres emergents estan desactivats.", 
     164VisitLinkBlocked        : "No ha estat possible obrir una nova finestra. Assegureu-vos que els bloquejos de finestres emergents estan desactivats.", 
    165165 
    166166// Dialogs 
     
    520520 
    521521// Div Dialog 
    522 DlgDivGeneralTab        : "General",    //MISSING 
    523 DlgDivAdvancedTab       : "Advanced",   //MISSING 
    524 DlgDivStyle             : "Style",      //MISSING 
    525 DlgDivInlineStyle       : "Inline Style"        //MISSING 
     522DlgDivGeneralTab        : "General", 
     523DlgDivAdvancedTab       : "Avançat", 
     524DlgDivStyle             : "Estil", 
     525DlgDivInlineStyle       : "Estil en línia" 
    526526}; 
  • FCKeditor/branches/versions/2.6.x/editor/lang/cs.js

    r2288 r2329  
    4545InsertLink                      : "Vložit/změnit odkaz", 
    4646RemoveLink                      : "Odstranit odkaz", 
    47 VisitLink                       : "Open Link",  //MISSING 
     47VisitLink                       : "Otevřít odkaz", 
    4848Anchor                          : "Vložít/změnit záložku", 
    4949AnchorDelete            : "Odstranit kotvu", 
     
    7474IncreaseIndent          : "Zvětšit odsazení", 
    7575Blockquote                      : "Citace", 
    76 CreateDiv                       : "Create Div Container",       //MISSING 
    77 EditDiv                         : "Edit Div Container", //MISSING 
    78 DeleteDiv                       : "Remove Div Container",       //MISSING 
     76CreateDiv                       : "Vytvořit Div kontejner", 
     77EditDiv                         : "Upravit Div kontejner", 
     78DeleteDiv                       : "Odstranit Div kontejner", 
    7979Undo                            : "Zpět", 
    8080Redo                            : "Znovu", 
     
    162162BrowseServerBlocked : "Průzkumník zdrojů nelze otevřít. Prověřte, zda nemáte aktivováno blokování popup oken.", 
    163163DialogBlocked           : "Nelze otevřít dialogové okno. Prověřte, zda nemáte aktivováno blokování popup oken.", 
    164 VisitLinkBlocked        : "It was not possible to open a new window. Make sure all popup blockers are disabled.",       //MISSING 
     164VisitLinkBlocked        : "Není možné otevřít nové okno. Prověřte, zda všechny nástroje pro blokování vyskakovacích oken jsou vypnuty.", 
    165165 
    166166// Dialogs 
     
    520520 
    521521// Div Dialog 
    522 DlgDivGeneralTab        : "General",    //MISSING 
    523 DlgDivAdvancedTab       : "Advanced",   //MISSING 
    524 DlgDivStyle             : "Style",      //MISSING 
    525 DlgDivInlineStyle       : "Inline Style"        //MISSING 
     522DlgDivGeneralTab        : "Obecné", 
     523DlgDivAdvancedTab       : "Rozšířené", 
     524DlgDivStyle             : "Styl", 
     525DlgDivInlineStyle       : "Vložený styl" 
    526526}; 
  • FCKeditor/branches/versions/2.6.x/editor/lang/de.js

    r2288 r2329  
    4545InsertLink                      : "Link einfügen/editieren", 
    4646RemoveLink                      : "Link entfernen", 
    47 VisitLink                       : "Open Link",  //MISSING 
     47VisitLink                       : "Link aufrufen", 
    4848Anchor                          : "Anker einfügen/editieren", 
    4949AnchorDelete            : "Anker entfernen", 
     
    7474IncreaseIndent          : "Einzug erhöhen", 
    7575Blockquote                      : "Zitatblock", 
    76 CreateDiv                       : "Create Div Container",       //MISSING 
    77 EditDiv                         : "Edit Div Container", //MISSING 
    78 DeleteDiv                       : "Remove Div Container",       //MISSING 
     76CreateDiv                       : "Erzeuge Div Block", 
     77EditDiv                         : "Bearbeite Div Block", 
     78DeleteDiv                       : "Entferne Div Block", 
    7979Undo                            : "Rückgängig", 
    8080Redo                            : "Wiederherstellen", 
     
    520520 
    521521// Div Dialog 
    522 DlgDivGeneralTab        : "General",    //MISSING 
    523 DlgDivAdvancedTab       : "Advanced",   //MISSING 
    524 DlgDivStyle             : "Style",      //MISSING 
    525 DlgDivInlineStyle       : "Inline Style"        //MISSING 
     522DlgDivGeneralTab        : "Allgemein", 
     523DlgDivAdvancedTab       : "Erweitert", 
     524DlgDivStyle             : "Style", 
     525DlgDivInlineStyle       : "Inline Style" 
    526526}; 
  • FCKeditor/branches/versions/2.6.x/editor/lang/en-au.js

    r2288 r2329  
    361361PasteFromWord   : "Paste from Word", 
    362362 
    363 DlgPasteMsg2    : "Please paste inside the following box using the keyboard (<STRONG>Ctrl+V</STRONG>) and hit <STRONG>OK</STRONG>.", 
     363DlgPasteMsg2    : "Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.", 
    364364DlgPasteSec             : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", 
    365365DlgPasteIgnoreFont              : "Ignore Font Face definitions", 
     
    507507Templates                       : "Templates", 
    508508DlgTemplatesTitle       : "Content Templates", 
    509 DlgTemplatesSelMsg      : "Please select the template to open in the editor<br>(the actual contents will be lost):", 
     509DlgTemplatesSelMsg      : "Please select the template to open in the editor<br />(the actual contents will be lost):", 
    510510DlgTemplatesLoading     : "Loading templates list. Please wait...", 
    511511DlgTemplatesNoTpl       : "(No templates defined)", 
     
    520520 
    521521// Div Dialog 
    522 DlgDivGeneralTab        : "General",    //MISSING 
    523 DlgDivAdvancedTab       : "Advanced",   //MISSING 
    524 DlgDivStyle             : "Style",      //MISSING 
    525 DlgDivInlineStyle       : "Inline Style"        //MISSING 
     522DlgDivGeneralTab        : "General", 
     523DlgDivAdvancedTab       : "Advanced", 
     524DlgDivStyle             : "Style", 
     525DlgDivInlineStyle       : "Inline Style" 
    526526}; 
  • FCKeditor/branches/versions/2.6.x/editor/lang/en-ca.js

    r2288 r2329  
    361361PasteFromWord   : "Paste from Word", 
    362362 
    363 DlgPasteMsg2    : "Please paste inside the following box using the keyboard (<STRONG>Ctrl+V</STRONG>) and hit <STRONG>OK</STRONG>.", 
     363DlgPasteMsg2    : "Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.", 
    364364DlgPasteSec             : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", 
    365365DlgPasteIgnoreFont              : "Ignore Font Face definitions", 
     
    507507Templates                       : "Templates", 
    508508DlgTemplatesTitle       : "Content Templates", 
    509 DlgTemplatesSelMsg      : "Please select the template to open in the editor<br>(the actual contents will be lost):", 
     509DlgTemplatesSelMsg      : "Please select the template to open in the editor<br />(the actual contents will be lost):", 
    510510DlgTemplatesLoading     : "Loading templates list. Please wait...", 
    511511DlgTemplatesNoTpl       : "(No templates defined)", 
     
    520520 
    521521// Div Dialog 
    522 DlgDivGeneralTab        : "General",    //MISSING 
    523 DlgDivAdvancedTab       : "Advanced",   //MISSING 
    524 DlgDivStyle             : "Style",      //MISSING 
    525 DlgDivInlineStyle       : "Inline Style"        //MISSING 
     522DlgDivGeneralTab        : "General", 
     523DlgDivAdvancedTab       : "Advanced", 
     524DlgDivStyle             : "Style", 
     525DlgDivInlineStyle       : "Inline Style" 
    526526}; 
  • FCKeditor/branches/versions/2.6.x/editor/lang/en-uk.js

    r2288 r2329  
    361361PasteFromWord   : "Paste from Word", 
    362362 
    363 DlgPasteMsg2    : "Please paste inside the following box using the keyboard (<STRONG>Ctrl+V</STRONG>) and hit <STRONG>OK</STRONG>.", 
     363DlgPasteMsg2    : "Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.", 
    364364DlgPasteSec             : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", 
    365365DlgPasteIgnoreFont              : "Ignore Font Face definitions", 
     
    507507Templates                       : "Templates", 
    508508DlgTemplatesTitle       : "Content Templates", 
    509 DlgTemplatesSelMsg      : "Please select the template to open in the editor<br>(the actual contents will be lost):", 
     509DlgTemplatesSelMsg      : "Please select the template to open in the editor<br />(the actual contents will be lost):", 
    510510DlgTemplatesLoading     : "Loading templates list. Please wait...", 
    511511DlgTemplatesNoTpl       : "(No templates defined)", 
     
    520520 
    521521// Div Dialog 
    522 DlgDivGeneralTab        : "General",    //MISSING 
    523 DlgDivAdvancedTab       : "Advanced",   //MISSING 
    524 DlgDivStyle             : "Style",      //MISSING 
    525 DlgDivInlineStyle       : "Inline Style"        //MISSING 
     522DlgDivGeneralTab        : "General", 
     523DlgDivAdvancedTab       : "Advanced", 
     524DlgDivStyle             : "Style", 
     525DlgDivInlineStyle       : "Inline Style" 
    526526}; 
  • FCKeditor/branches/versions/2.6.x/editor/lang/es.js

    r2288 r2329  
    4545InsertLink                      : "Insertar/Editar Vínculo", 
    4646RemoveLink                      : "Eliminar Vínculo", 
    47 VisitLink                       : "Open Link",  //MISSING 
     47VisitLink                       : "Abrir enlace", 
    4848Anchor                          : "Referencia", 
    4949AnchorDelete            : "Eliminar Referencia", 
     
    7474IncreaseIndent          : "Aumentar Sangría", 
    7575Blockquote                      : "Cita", 
    76 CreateDiv                       : "Create Div Container",       //MISSING 
    77 EditDiv                         : "Edit Div Container", //MISSING 
    78 DeleteDiv                       : "Remove Div Container",       //MISSING 
     76CreateDiv                       : "Crear contenedor (div)", 
     77EditDiv                         : "Editar contenedor (div)", 
     78DeleteDiv                       : "Eliminar contenedor (div)", 
    7979Undo                            : "Deshacer", 
    8080Redo                            : "Rehacer", 
     
    162162BrowseServerBlocked : "La ventana de visualización del servidor no pudo ser abierta. Verifique que su navegador no esté bloqueando las ventanas emergentes (pop up).", 
    163163DialogBlocked           : "No se ha podido abrir la ventana de diálogo. Verifique que su navegador no esté bloqueando las ventanas emergentes (pop up).", 
    164 VisitLinkBlocked        : "It was not possible to open a new window. Make sure all popup blockers are disabled.",       //MISSING 
     164VisitLinkBlocked        : "Nose ha podido abrir la ventana. Asegurese de que todos los bloqueadores de popups están deshabilitados.", 
    165165 
    166166// Dialogs 
     
    520520 
    521521// Div Dialog 
    522 DlgDivGeneralTab        : "General",    //MISSING 
    523 DlgDivAdvancedTab       : "Advanced",   //MISSING 
    524 DlgDivStyle             : "Style",      //MISSING 
    525 DlgDivInlineStyle       : "Inline Style"        //MISSING 
     522DlgDivGeneralTab        : "General", 
     523DlgDivAdvancedTab       : "Avanzado", 
     524DlgDivStyle             : "Estilo", 
     525DlgDivInlineStyle       : "Estilos CSS" 
    526526}; 
  • FCKeditor/branches/versions/2.6.x/editor/lang/fr-ca.js

    r2288 r2329  
    4545InsertLink                      : "Insérer/modifier le lien", 
    4646RemoveLink                      : "Supprimer le lien", 
    47 VisitLink                       : "Open Link",  //MISSING 
     47VisitLink                       : "Suivre le lien", 
    4848Anchor                          : "Insérer/modifier l'ancre", 
    4949AnchorDelete            : "Supprimer l'ancre", 
     
    7474IncreaseIndent          : "Augmenter le retrait", 
    7575Blockquote                      : "Citation", 
    76 CreateDiv                       : "Create Div Container",       //MISSING 
    77 EditDiv                         : "Edit Div Container", //MISSING 
    78 DeleteDiv                       : "Remove Div Container",       //MISSING 
     76CreateDiv                       : "Créer Balise Div", 
     77EditDiv                         : "Modifier Balise Div", 
     78DeleteDiv                       : "Supprimer Balise Div", 
    7979Undo                            : "Annuler", 
    8080Redo                            : "Refaire", 
     
    520520 
    521521// Div Dialog 
    522 DlgDivGeneralTab        : "General",    //MISSING 
    523 DlgDivAdvancedTab       : "Advanced",   //MISSING 
    524 DlgDivStyle             : "Style",      //MISSING 
    525 DlgDivInlineStyle       : "Inline Style"        //MISSING 
     522DlgDivGeneralTab        : "Général", 
     523DlgDivAdvancedTab       : "Avancé", 
     524DlgDivStyle             : "Style", 
     525DlgDivInlineStyle       : "Attribut Style" 
    526526}; 
  • FCKeditor/branches/versions/2.6.x/editor/lang/fr.js

    r2288 r2329  
    4545InsertLink                      : "Insérer/modifier le lien", 
    4646RemoveLink                      : "Supprimer le lien", 
    47 VisitLink                       : "Open Link",  //MISSING 
     47VisitLink                       : "Suivre le lien", 
    4848Anchor                          : "Insérer/modifier l'ancre", 
    4949AnchorDelete            : "Supprimer l'ancre", 
     
    7474IncreaseIndent          : "Augmenter le retrait", 
    7575Blockquote                      : "Citation", 
    76 CreateDiv                       : "Create Div Container",       //MISSING 
    77 EditDiv                         : "Edit Div Container", //MISSING 
    78 DeleteDiv                       : "Remove Div Container",       //MISSING 
     76CreateDiv                       : "Créer Balise Div", 
     77EditDiv                         : "Modifier Balise Div", 
     78DeleteDiv                       : "Supprimer Balise Div", 
    7979Undo                            : "Annuler", 
    8080Redo                            : "Refaire", 
     
    162162BrowseServerBlocked : "Le navigateur n'a pas pu être ouvert. Assurez-vous que les bloqueurs de popups soient désactivés.", 
    163163DialogBlocked           : "La fenêtre de dialogue n'a pas pu s'ouvrir. Assurez-vous que les bloqueurs de popups soient désactivés.", 
    164 VisitLinkBlocked        : "It was not possible to open a new window. Make sure all popup blockers are disabled.",       //MISSING 
     164VisitLinkBlocked        : "Impossible d'ouvrir une nouvelle fenêtre. Assurez-vous que les bloqueurs de popups soient désactivés.", 
    165165 
    166166// Dialogs 
     
    520520 
    521521// Div Dialog 
    522 DlgDivGeneralTab        : "General",    //MISSING 
    523 DlgDivAdvancedTab       : "Advanced",   //MISSING 
    524 DlgDivStyle             : "Style",      //MISSING 
    525 DlgDivInlineStyle       : "Inline Style"        //MISSING 
     522DlgDivGeneralTab        : "Général", 
     523DlgDivAdvancedTab       : "Avancé", 
     524DlgDivStyle             : "Style", 
     525DlgDivInlineStyle       : "Attribut Style" 
    526526}; 
  • FCKeditor/branches/versions/2.6.x/editor/lang/he.js

    r2288 r2329  
    4545InsertLink                      : "הוספת/עריכת קישור", 
    4646RemoveLink                      : "הסרת הקישור", 
    47 VisitLink                       : "Open Link",  //MISSING 
     47VisitLink                       : "פתח קישור", 
    4848Anchor                          : "הוספת/עריכת נקודת עיגון", 
    4949AnchorDelete            : "הסר נקודת עיגון", 
     
    7474IncreaseIndent          : "הגדלת אינדנטציה", 
    7575Blockquote                      : "בלוק ציטוט", 
    76 CreateDiv                       : "Create Div Container",       //MISSING 
    77 EditDiv                         : "Edit Div Container", //MISSING 
    78 DeleteDiv                       : "Remove Div Container",       //MISSING 
     76CreateDiv                       : "צור מיכל(תג)DIV", 
     77EditDiv                         : "ערוך מיכל (תג)DIV", 
     78DeleteDiv                       : "הסר מיכל(תג) DIV", 
    7979Undo                            : "ביטול צעד אחרון", 
    8080Redo                            : "חזרה על צעד אחרון", 
     
    162162BrowseServerBlocked : "לא ניתן לגשת לדפדפן משאבים.אנא וודא שחוסם חלונות הקופצים לא פעיל.", 
    163163DialogBlocked           : "לא היה ניתן לפתוח חלון דיאלוג. אנא וודא שחוסם חלונות קופצים לא פעיל.", 
    164 VisitLinkBlocked        : "It was not possible to open a new window. Make sure all popup blockers are disabled.",       //MISSING 
     164VisitLinkBlocked        : "לא ניתן לפתוח חלון חדש.נא לוודא שחוסמי החלונות הקופצים לא פעילים.", 
    165165 
    166166// Dialogs 
     
    172172DlgOpOther                      : "<אחר>", 
    173173DlgInfoTab                      : "מידע", 
    174 DlgAlertUrl                     : "אנה הזן URL", 
     174DlgAlertUrl                     : "אנא הזן URL", 
    175175 
    176176// General Dialogs Labels 
     
    520520 
    521521// Div Dialog 
    522 DlgDivGeneralTab        : "General",    //MISSING 
    523 DlgDivAdvancedTab       : "Advanced",   //MISSING 
    524 DlgDivStyle             : "Style",      //MISSING 
    525 DlgDivInlineStyle       : "Inline Style"        //MISSING 
     522DlgDivGeneralTab        : "כללי", 
     523DlgDivAdvancedTab       : "מתקדם", 
     524DlgDivStyle             : "סגנון", 
     525DlgDivInlineStyle       : "סגנון בתוך השורה" 
    526526}; 
  • FCKeditor/branches/versions/2.6.x/editor/lang/hi.js

    r2288 r2329  
    4545InsertLink                      : "लिंक इन्सर्ट/संपादन", 
    4646RemoveLink                      : "लिंक हटायें", 
    47 VisitLink                       : "Open Link",  //MISSING 
     47VisitLink                       : "लिंक खोलें", 
    4848Anchor                          : "ऐंकर इन्सर्ट/संपादन", 
    4949AnchorDelete            : "ऐंकर हटायें", 
     
    7474IncreaseIndent          : "इन्डॅन्ट बढ़ायें", 
    7575Blockquote                      : "ब्लॉक-कोट", 
    76 CreateDiv                       : "Create Div Container",       //MISSING 
    77 EditDiv                         : "Edit Div Container", //MISSING 
    78 DeleteDiv                       : "Remove Div Container",       //MISSING 
     76CreateDiv                       : "डिव (Div) कन्टेनर बनायें", 
     77EditDiv                         : "डिव (Div) कन्टेनर बदलें", 
     78DeleteDiv                       : "डिव कन्टेनर हटायें", 
    7979Undo                            : "अन्डू", 
    8080Redo                            : "रीडू", 
     
    160160UnknownToolbarSet       : "टूलबार सॅट \"%1\" उपलब्ध नहीं है", 
    161161NoActiveX                       : "आपके ब्राउज़र् की सुरक्शा सेटिंग्स् एडिटर की कुछ् फ़ीचरों को सीमित कर्