Changeset e66f5b4 in github


Ignore:
Timestamp:
Nov 6, 2005 5:43:39 PM (8 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
b4a9999
Parents:
10a69975
Message:

Added favicon and Polish, Czech, British localizations

Files:
8 added
18 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r10a69975 re66f5b4  
    63632005/11/06 
    6464---------- 
    65 - Added Finnish, Romanian and Chinese translation 
     65- Added Finnish, Romanian, Polish, Czech, British and Chinese translation 
    6666- Get IMAP server capabilities in array 
    6767- Check for NAMESPACE capability before sending command 
  • program/js/app.js

    r10a69975 re66f5b4  
    3333  this.dblclick_time = 600; 
    3434  this.message_time = 5000; 
    35   this.request_timeout = 120000; 
     35  this.request_timeout = 180000; 
    3636  this.mbox_expression = new RegExp('[^0-9a-z\-_]', 'gi'); 
    3737  this.env.blank_img = 'skins/default/images/blank.gif'; 
     
    529529 
    530530          // user prefs 
    531           if (input_pagesize && input_pagesize.value == '') 
     531          if (input_pagesize && isNaN(input_pagesize.value)) 
    532532            { 
    533533            alert(this.get_label('nopagesizewarning')); 
  • program/localization/index.inc

    r7cc38e0 re66f5b4  
    5858 
    5959$rcube_charsets = array( 
     60        'cz' => 'Windows-1250', 
    6061        'ru' => 'Windows-1251', 
    6162        'lv' => 'ISO-8859-2', 
     63        'pl' => 'ISO-8859-2', 
    6264        'tw' => 'BIG5' 
    6365); 
  • skins/default/templates/addcontact.html

    r4e17e6c re66f5b4  
    33<head> 
    44<title><roundcube:object name="pagetitle" /></title> 
    5 <link rel="stylesheet" type="text/css" href="/common.css" /> 
     5<roundcube:include file="/includes/links.html" /> 
    66<link rel="stylesheet" type="text/css" href="/addresses.css" /> 
    77</head> 
  • skins/default/templates/addidentity.html

    rb076a46 re66f5b4  
    33<head> 
    44<title><roundcube:object name="pagetitle" /></title> 
    5 <link rel="stylesheet" type="text/css" href="/common.css" /> 
     5<roundcube:include file="/includes/links.html" /> 
    66<link rel="stylesheet" type="text/css" href="/settings.css" /> 
    77</head> 
  • skins/default/templates/addressbook.html

    rb076a46 re66f5b4  
    33<head> 
    44<title><roundcube:object name="pagetitle" /></title> 
    5 <link rel="stylesheet" type="text/css" href="/common.css" /> 
     5<roundcube:include file="/includes/links.html" /> 
    66<link rel="stylesheet" type="text/css" href="/addresses.css" /> 
    77</head> 
  • skins/default/templates/compose.html

    r317219d re66f5b4  
    33<head> 
    44<title>RoundCube|Mail :: <roundcube:label name="compose" /></title> 
    5 <link rel="stylesheet" type="text/css" href="/common.css" /> 
     5<roundcube:include file="/includes/links.html" /> 
    66<link rel="stylesheet" type="text/css" href="/mail.css" /> 
    77<script type="text/javascript"> 
  • skins/default/templates/editcontact.html

    r4e17e6c re66f5b4  
    33<head> 
    44<title><roundcube:object name="pagetitle" /></title> 
    5 <link rel="stylesheet" type="text/css" href="/common.css" /> 
     5<roundcube:include file="/includes/links.html" /> 
    66<link rel="stylesheet" type="text/css" href="/addresses.css" /> 
    77</head> 
  • skins/default/templates/editidentity.html

    rb076a46 re66f5b4  
    33<head> 
    44<title><roundcube:object name="pagetitle" /></title> 
    5 <link rel="stylesheet" type="text/css" href="/common.css" /> 
     5<roundcube:include file="/includes/links.html" /> 
    66<link rel="stylesheet" type="text/css" href="/settings.css" /> 
    77</head> 
  • skins/default/templates/error.html

    r4e17e6c re66f5b4  
    33<head> 
    44<title>RoundCube|Mail :: ERROR</title> 
    5 <link rel="stylesheet" type="text/css" href="/common.css" /> 
     5<roundcube:include file="/includes/links.html" /> 
    66</head> 
    77<body> 
  • skins/default/templates/identities.html

    rb076a46 re66f5b4  
    33<head> 
    44<title><roundcube:object name="pagetitle" /></title> 
    5 <link rel="stylesheet" type="text/css" href="/common.css" /> 
     5<roundcube:include file="/includes/links.html" /> 
    66<link rel="stylesheet" type="text/css" href="/settings.css" /> 
    77</head> 
  • skins/default/templates/login.html

    rfad5c3e re66f5b4  
    33<head> 
    44<title>Welcome to RoundCube|Mail</title> 
    5 <link rel="stylesheet" type="text/css" href="/common.css" /> 
     5<roundcube:include file="/includes/links.html" /> 
    66<style type="text/css"> 
    77 
  • skins/default/templates/mail.html

    rb076a46 re66f5b4  
    33<head> 
    44<title><roundcube:object name="pagetitle" /></title> 
    5 <link rel="stylesheet" type="text/css" href="/common.css" /> 
     5<roundcube:include file="/includes/links.html" /> 
    66<link rel="stylesheet" type="text/css" href="/mail.css" /> 
    77</head> 
  • skins/default/templates/managefolders.html

    rb076a46 re66f5b4  
    33<head> 
    44<title><roundcube:object name="pagetitle" /></title> 
    5 <link rel="stylesheet" type="text/css" href="/common.css" /> 
     5<roundcube:include file="/includes/links.html" /> 
    66<link rel="stylesheet" type="text/css" href="/settings.css" /> 
    77</head> 
  • skins/default/templates/message.html

    r6a35c82 re66f5b4  
    33<head> 
    44<title><roundcube:object name="pagetitle" /></title> 
    5 <link rel="stylesheet" type="text/css" href="/common.css" /> 
     5<roundcube:include file="/includes/links.html" /> 
    66<link rel="stylesheet" type="text/css" href="/mail.css" /> 
    77</head> 
  • skins/default/templates/messagepart.html

    r4e17e6c re66f5b4  
    33<head> 
    44<title><roundcube:object name="pagetitle" /></title> 
    5 <link rel="stylesheet" type="text/css" href="/common.css" /> 
     5<roundcube:include file="/includes/links.html" /> 
    66<link rel="stylesheet" type="text/css" href="/mail.css" /> 
    77</head> 
  • skins/default/templates/settings.html

    rb076a46 re66f5b4  
    33<head> 
    44<title><roundcube:object name="pagetitle" /></title> 
    5 <link rel="stylesheet" type="text/css" href="/common.css" /> 
     5<roundcube:include file="/includes/links.html" /> 
    66<link rel="stylesheet" type="text/css" href="/settings.css" /> 
    77</head> 
  • skins/default/templates/showcontact.html

    r4e17e6c re66f5b4  
    33<head> 
    44<title><roundcube:object name="pagetitle" /></title> 
    5 <link rel="stylesheet" type="text/css" href="/common.css" /> 
     5<roundcube:include file="/includes/links.html" /> 
    66<link rel="stylesheet" type="text/css" href="/addresses.css" /> 
    77</head> 
Note: See TracChangeset for help on using the changeset viewer.