Ignore:
Timestamp:
11/16/12 16:47:38 (11 years ago)
Author:
eduardow
Message:

Ticket #3191 - Novo dump para a instalação do Expresso.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/INSTALL/arquivos/expresso.dump

    r6173 r7527  
    1111 
    1212-- 
    13 -- Name: plpgsql; Type: PROCEDURAL LANGUAGE; Schema: -; Owner: postgres 
    14 -- 
    15  
    16 CREATE PROCEDURAL LANGUAGE plpgsql; 
    17  
    18  
    19 ALTER PROCEDURAL LANGUAGE plpgsql OWNER TO postgres; 
     13-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:  
     14-- 
     15 
     16CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; 
     17 
     18 
     19-- 
     20-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:  
     21-- 
     22 
     23COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; 
     24 
    2025 
    2126SET search_path = public, pg_catalog; 
     
    5055    START WITH 1 
    5156    INCREMENT BY 1 
     57    NO MINVALUE 
    5258    NO MAXVALUE 
    53     NO MINVALUE 
    5459    CACHE 1; 
    5560 
     
    9196    START WITH 1 
    9297    INCREMENT BY 1 
     98    NO MINVALUE 
    9399    NO MAXVALUE 
    94     NO MINVALUE 
    95100    CACHE 1; 
    96101 
     
    116121    duration bigint, 
    117122    tzid character varying(50), 
    118     dtstamp bigint DEFAULT (date_part('epoch'::text, ('now'::text)::timestamp(3) with time zone) * (1000)::double precision) 
     123    dtstamp bigint DEFAULT (date_part('epoch'::text, ('now'::text)::timestamp(3) with time zone) * (1000)::double precision), 
     124    type smallint DEFAULT 0 
    119125); 
    120126 
     
    129135    START WITH 1 
    130136    INCREMENT BY 1 
     137    NO MINVALUE 
    131138    NO MAXVALUE 
    132     NO MINVALUE 
    133139    CACHE 1; 
    134140 
     
    168174    START WITH 1 
    169175    INCREMENT BY 1 
     176    NO MINVALUE 
    170177    NO MAXVALUE 
    171     NO MINVALUE 
    172178    CACHE 1; 
    173179 
     
    202208    START WITH 1 
    203209    INCREMENT BY 1 
     210    NO MINVALUE 
    204211    NO MAXVALUE 
    205     NO MINVALUE 
    206212    CACHE 1; 
    207213 
     
    235241    START WITH 1 
    236242    INCREMENT BY 1 
     243    NO MINVALUE 
    237244    NO MAXVALUE 
    238     NO MINVALUE 
    239245    CACHE 1; 
    240246 
     
    264270 
    265271-- 
     272-- Name: seq_calendar_historic; Type: SEQUENCE; Schema: public; Owner: postgres 
     273-- 
     274 
     275CREATE SEQUENCE seq_calendar_historic 
     276    START WITH 1 
     277    INCREMENT BY 1 
     278    NO MINVALUE 
     279    NO MAXVALUE 
     280    CACHE 1; 
     281 
     282 
     283ALTER TABLE public.seq_calendar_historic OWNER TO postgres; 
     284 
     285-- 
     286-- Name: seq_calendar_historic; Type: SEQUENCE SET; Schema: public; Owner: postgres 
     287-- 
     288 
     289SELECT pg_catalog.setval('seq_calendar_historic', 1, false); 
     290 
     291 
     292SET default_with_oids = true; 
     293 
     294-- 
     295-- Name: calendar_historic; Type: TABLE; Schema: public; Owner: postgres; Tablespace:  
     296-- 
     297 
     298CREATE TABLE calendar_historic ( 
     299    id integer DEFAULT nextval('seq_calendar_historic'::regclass) NOT NULL, 
     300    object_id bigint, 
     301    user_uidnumber bigint NOT NULL, 
     302    dtstamp bigint NOT NULL, 
     303    attribute character varying(50), 
     304    before_value character varying(255), 
     305    after_value character varying(255) 
     306); 
     307 
     308 
     309ALTER TABLE public.calendar_historic OWNER TO postgres; 
     310 
     311-- 
    266312-- Name: seq_calendar_object; Type: SEQUENCE; Schema: public; Owner: postgres 
    267313-- 
     
    270316    START WITH 1 
    271317    INCREMENT BY 1 
     318    NO MINVALUE 
    272319    NO MAXVALUE 
    273     NO MINVALUE 
    274320    CACHE 1; 
    275321 
     
    283329SELECT pg_catalog.setval('seq_calendar_object', 1, false); 
    284330 
     331 
     332SET default_with_oids = false; 
    285333 
    286334-- 
     
    306354    tzid character varying(50), 
    307355    transp smallint DEFAULT 0 NOT NULL, 
    308     sequence bigint DEFAULT 0 NOT NULL 
     356    sequence bigint DEFAULT 0 NOT NULL, 
     357    priority smallint DEFAULT 0, 
     358    percentage smallint DEFAULT 0, 
     359    status smallint DEFAULT 0, 
     360    due bigint DEFAULT 0 
    309361); 
    310362 
     
    319371    START WITH 1 
    320372    INCREMENT BY 1 
     373    NO MINVALUE 
    321374    NO MAXVALUE 
    322     NO MINVALUE 
    323375    CACHE 1; 
    324376 
     
    352404    START WITH 1 
    353405    INCREMENT BY 1 
     406    NO MINVALUE 
    354407    NO MAXVALUE 
    355     NO MINVALUE 
    356408    CACHE 1; 
    357409 
     
    392444    START WITH 1 
    393445    INCREMENT BY 1 
     446    NO MINVALUE 
    394447    NO MAXVALUE 
    395     NO MINVALUE 
    396448    CACHE 1; 
    397449 
     
    425477    START WITH 1 
    426478    INCREMENT BY 1 
     479    NO MINVALUE 
    427480    NO MAXVALUE 
    428     NO MINVALUE 
    429481    CACHE 1; 
    430482 
     
    448500    object_id bigint NOT NULL, 
    449501    object_type bigint NOT NULL, 
    450     permission character varying(50) NOT NULL 
     502    permission character varying(50) NOT NULL, 
     503    owner bigint 
    451504); 
    452505 
     
    461514    START WITH 1 
    462515    INCREMENT BY 1 
     516    NO MINVALUE 
    463517    NO MAXVALUE 
    464     NO MINVALUE 
    465518    CACHE 1; 
    466519 
     
    510563    START WITH 1 
    511564    INCREMENT BY 1 
     565    NO MINVALUE 
    512566    NO MAXVALUE 
    513     NO MINVALUE 
    514567    CACHE 1; 
    515568 
     
    545598    START WITH 1 
    546599    INCREMENT BY 1 
     600    NO MINVALUE 
    547601    NO MAXVALUE 
    548     NO MINVALUE 
    549602    CACHE 1; 
    550603 
     
    580633    START WITH 1 
    581634    INCREMENT BY 1 
     635    NO MINVALUE 
    582636    NO MAXVALUE 
    583     NO MINVALUE 
    584637    CACHE 1; 
    585638 
     
    611664    font_color character varying(6), 
    612665    background_color character varying(6), 
    613     border_color character varying(6) 
     666    border_color character varying(6), 
     667    type smallint DEFAULT 0 
    614668); 
    615669 
     
    624678    START WITH 1 
    625679    INCREMENT BY 1 
     680    NO MINVALUE 
    626681    NO MAXVALUE 
    627     NO MINVALUE 
    628682    CACHE 1; 
    629683 
     
    653707ALTER TABLE public.calendar_signature_alarm OWNER TO postgres; 
    654708 
     709SET default_with_oids = true; 
     710 
     711-- 
     712-- Name: calendar_task_to_activity_object; Type: TABLE; Schema: public; Owner: postgres; Tablespace:  
     713-- 
     714 
     715CREATE TABLE calendar_task_to_activity_object ( 
     716    id integer NOT NULL, 
     717    calendar_object_activity_id integer NOT NULL, 
     718    calendar_object_task_id integer NOT NULL, 
     719    owner integer NOT NULL 
     720); 
     721 
     722 
     723ALTER TABLE public.calendar_task_to_activity_object OWNER TO postgres; 
     724 
     725-- 
     726-- Name: calendar_task_to_activity_object_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres 
     727-- 
     728 
     729CREATE SEQUENCE calendar_task_to_activity_object_id_seq 
     730    START WITH 1 
     731    INCREMENT BY 1 
     732    NO MINVALUE 
     733    NO MAXVALUE 
     734    CACHE 1; 
     735 
     736 
     737ALTER TABLE public.calendar_task_to_activity_object_id_seq OWNER TO postgres; 
     738 
     739-- 
     740-- Name: calendar_task_to_activity_object_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres 
     741-- 
     742 
     743ALTER SEQUENCE calendar_task_to_activity_object_id_seq OWNED BY calendar_task_to_activity_object.id; 
     744 
     745 
     746-- 
     747-- Name: calendar_task_to_activity_object_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres 
     748-- 
     749 
     750SELECT pg_catalog.setval('calendar_task_to_activity_object_id_seq', 1, false); 
     751 
     752 
    655753-- 
    656754-- Name: seq_calendar_to_calendar_object; Type: SEQUENCE; Schema: public; Owner: postgres 
     
    660758    START WITH 1 
    661759    INCREMENT BY 1 
     760    NO MINVALUE 
    662761    NO MAXVALUE 
    663     NO MINVALUE 
    664762    CACHE 1; 
    665763 
     
    673771SELECT pg_catalog.setval('seq_calendar_to_calendar_object', 1, false); 
    674772 
     773 
     774SET default_with_oids = false; 
    675775 
    676776-- 
     
    694794    START WITH 1 
    695795    INCREMENT BY 1 
     796    NO MINVALUE 
    696797    NO MAXVALUE 
    697     NO MINVALUE 
    698798    CACHE 1; 
    699799 
     
    779879    START WITH 1 
    780880    INCREMENT BY 1 
     881    NO MINVALUE 
    781882    NO MAXVALUE 
    782     NO MINVALUE 
    783883    CACHE 1; 
    784884 
     
    819919    START WITH 1 
    820920    INCREMENT BY 1 
     921    NO MINVALUE 
    821922    NO MAXVALUE 
    822     NO MINVALUE 
    823923    CACHE 1; 
    824924 
     
    874974    START WITH 1 
    875975    INCREMENT BY 1 
     976    NO MINVALUE 
    876977    NO MAXVALUE 
    877     NO MINVALUE 
    878978    CACHE 1; 
    879979 
     
    9441044    START WITH 1 
    9451045    INCREMENT BY 1 
     1046    NO MINVALUE 
    9461047    NO MAXVALUE 
    947     NO MINVALUE 
    9481048    CACHE 1; 
    9491049 
     
    10001100    START WITH 1 
    10011101    INCREMENT BY 1 
     1102    NO MINVALUE 
    10021103    NO MAXVALUE 
    1003     NO MINVALUE 
    10041104    CACHE 1; 
    10051105 
     
    10391139    START WITH 1 
    10401140    INCREMENT BY 1 
     1141    NO MINVALUE 
    10411142    NO MAXVALUE 
    1042     NO MINVALUE 
    10431143    CACHE 1; 
    10441144 
     
    11101210    START WITH 1 
    11111211    INCREMENT BY 1 
     1212    NO MINVALUE 
    11121213    NO MAXVALUE 
    1113     NO MINVALUE 
    11141214    CACHE 1; 
    11151215 
     
    11451245    START WITH 1 
    11461246    INCREMENT BY 1 
     1247    NO MINVALUE 
    11471248    NO MAXVALUE 
    1148     NO MINVALUE 
    11491249    CACHE 1; 
    11501250 
     
    11861286    START WITH 1 
    11871287    INCREMENT BY 1 
     1288    NO MINVALUE 
    11881289    NO MAXVALUE 
    1189     NO MINVALUE 
    11901290    CACHE 1; 
    11911291 
     
    12271327    START WITH 1 
    12281328    INCREMENT BY 1 
     1329    NO MINVALUE 
    12291330    NO MAXVALUE 
    1230     NO MINVALUE 
    12311331    CACHE 1; 
    12321332 
     
    12611361    START WITH 1 
    12621362    INCREMENT BY 1 
     1363    NO MINVALUE 
    12631364    NO MAXVALUE 
    1264     NO MINVALUE 
    12651365    CACHE 1; 
    12661366 
     
    12991399    START WITH 1 
    13001400    INCREMENT BY 1 
     1401    NO MINVALUE 
    13011402    NO MAXVALUE 
    1302     NO MINVALUE 
    13031403    CACHE 1; 
    13041404 
     
    13391439    START WITH 1 
    13401440    INCREMENT BY 1 
     1441    NO MINVALUE 
    13411442    NO MAXVALUE 
    1342     NO MINVALUE 
    13431443    CACHE 1; 
    13441444 
     
    22212321    START WITH 1 
    22222322    INCREMENT BY 1 
     2323    NO MINVALUE 
    22232324    NO MAXVALUE 
    2224     NO MINVALUE 
    22252325    CACHE 1; 
    22262326 
     
    24872587 
    24882588-- 
     2589-- Name: seq_calendar_task_to_activity_object; Type: SEQUENCE; Schema: public; Owner: postgres 
     2590-- 
     2591 
     2592CREATE SEQUENCE seq_calendar_task_to_activity_object 
     2593    START WITH 1 
     2594    INCREMENT BY 1 
     2595    NO MINVALUE 
     2596    NO MAXVALUE 
     2597    CACHE 1; 
     2598 
     2599 
     2600ALTER TABLE public.seq_calendar_task_to_activity_object OWNER TO postgres; 
     2601 
     2602-- 
     2603-- Name: seq_calendar_task_to_activity_object; Type: SEQUENCE SET; Schema: public; Owner: postgres 
     2604-- 
     2605 
     2606SELECT pg_catalog.setval('seq_calendar_task_to_activity_object', 1, false); 
     2607 
     2608 
     2609-- 
    24892610-- Name: seq_phpgw_accounts; Type: SEQUENCE; Schema: public; Owner: postgres 
    24902611-- 
     
    24932614    START WITH 1 
    24942615    INCREMENT BY 1 
     2616    NO MINVALUE 
    24952617    NO MAXVALUE 
    2496     NO MINVALUE 
    24972618    CACHE 1; 
    24982619 
     
    25142635    START WITH 1 
    25152636    INCREMENT BY 1 
     2637    NO MINVALUE 
    25162638    NO MAXVALUE 
    2517     NO MINVALUE 
    25182639    CACHE 1; 
    25192640 
     
    25352656    START WITH 1 
    25362657    INCREMENT BY 1 
     2658    NO MINVALUE 
    25372659    NO MAXVALUE 
    2538     NO MINVALUE 
    25392660    CACHE 1; 
    25402661 
     
    25562677    START WITH 1 
    25572678    INCREMENT BY 1 
     2679    NO MINVALUE 
    25582680    NO MAXVALUE 
    2559     NO MINVALUE 
    25602681    CACHE 1; 
    25612682 
     
    25772698    START WITH 1 
    25782699    INCREMENT BY 1 
     2700    NO MINVALUE 
    25792701    NO MAXVALUE 
    2580     NO MINVALUE 
    25812702    CACHE 1; 
    25822703 
     
    25982719    START WITH 1 
    25992720    INCREMENT BY 1 
     2721    NO MINVALUE 
    26002722    NO MAXVALUE 
    2601     NO MINVALUE 
    26022723    CACHE 1; 
    26032724 
     
    26192740    START WITH 1 
    26202741    INCREMENT BY 1 
     2742    NO MINVALUE 
    26212743    NO MAXVALUE 
    2622     NO MINVALUE 
    26232744    CACHE 1; 
    26242745 
     
    26402761    START WITH 1 
    26412762    INCREMENT BY 1 
     2763    NO MINVALUE 
    26422764    NO MAXVALUE 
    2643     NO MINVALUE 
    26442765    CACHE 1; 
    26452766 
     
    26612782    START WITH 93 
    26622783    INCREMENT BY 1 
     2784    NO MINVALUE 
    26632785    NO MAXVALUE 
    2664     NO MINVALUE 
    26652786    CACHE 1; 
    26662787 
     
    26822803    START WITH 1 
    26832804    INCREMENT BY 1 
     2805    NO MINVALUE 
    26842806    NO MAXVALUE 
    2685     NO MINVALUE 
    26862807    CACHE 1; 
    26872808 
     
    27032824    START WITH 1 
    27042825    INCREMENT BY 1 
     2826    NO MINVALUE 
    27052827    NO MAXVALUE 
    2706     NO MINVALUE 
    27072828    CACHE 1; 
    27082829 
     
    27142835-- 
    27152836 
    2716 SELECT pg_catalog.setval('seq_phpgw_hooks', 775, true); 
     2837SELECT pg_catalog.setval('seq_phpgw_hooks', 904, true); 
    27172838 
    27182839 
     
    27242845    START WITH 1 
    27252846    INCREMENT BY 1 
     2847    NO MINVALUE 
    27262848    NO MAXVALUE 
    2727     NO MINVALUE 
    27282849    CACHE 1; 
    27292850 
     
    27452866    START WITH 1 
    27462867    INCREMENT BY 1 
     2868    NO MINVALUE 
    27472869    NO MAXVALUE 
    2748     NO MINVALUE 
    27492870    CACHE 1; 
    27502871 
     
    27662887    START WITH 1 
    27672888    INCREMENT BY 1 
     2889    NO MINVALUE 
    27682890    NO MAXVALUE 
    2769     NO MINVALUE 
    27702891    CACHE 1; 
    27712892 
     
    27872908    START WITH 1 
    27882909    INCREMENT BY 1 
     2910    NO MINVALUE 
    27892911    NO MAXVALUE 
    2790     NO MINVALUE 
    27912912    CACHE 1; 
    27922913 
     
    27992920 
    28002921SELECT pg_catalog.setval('seq_phpgw_vfs', 4, true); 
     2922 
     2923 
     2924-- 
     2925-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres 
     2926-- 
     2927 
     2928ALTER TABLE ONLY calendar_task_to_activity_object ALTER COLUMN id SET DEFAULT nextval('calendar_task_to_activity_object_id_seq'::regclass); 
    28012929 
    28022930 
     
    28132941-- 
    28142942 
    2815 COPY calendar (id, name, location, description, duration, tzid, dtstamp) FROM stdin; 
    2816 1       Calendario      Calendario      Calendario Padrão       \N      America/Sao_Paulo       1332527174000 
    2817 2       Calendario      Calendario      Calendario Padrão       \N      America/Sao_Paulo       1332529079000 
     2943COPY calendar (id, name, location, description, duration, tzid, dtstamp, type) FROM stdin; 
     29441       Calendario      Calendario      Calendario Padrão       \N      America/Sao_Paulo       1332527174000   0 
     29452       Calendario      Calendario      Calendario Padrão       \N      America/Sao_Paulo       1332529079000   0 
    28182946\. 
    28192947 
     
    28552983 
    28562984-- 
     2985-- Data for Name: calendar_historic; Type: TABLE DATA; Schema: public; Owner: postgres 
     2986-- 
     2987 
     2988COPY calendar_historic (id, object_id, user_uidnumber, dtstamp, attribute, before_value, after_value) FROM stdin; 
     2989\. 
     2990 
     2991 
     2992-- 
    28572993-- Data for Name: calendar_object; Type: TABLE DATA; Schema: public; Owner: postgres 
    28582994-- 
    28592995 
    2860 COPY calendar_object (id, type_id, cal_uid, dtstamp, dtstart, description, dtend, location, class_id, last_update, range_end, summary, range_start, allday, repeat, tzid, transp, sequence) FROM stdin; 
     2996COPY calendar_object (id, type_id, cal_uid, dtstamp, dtstart, description, dtend, location, class_id, last_update, range_end, summary, range_start, allday, repeat, tzid, transp, sequence, priority, percentage, status, due) FROM stdin; 
    28612997\. 
    28622998 
     
    28683004COPY calendar_object_type (id, name) FROM stdin; 
    286930051       VEVENT 
     30062       TODO 
    28703007\. 
    28713008 
     
    28963033-- 
    28973034 
    2898 COPY calendar_permission (id, uidnumber, object_id, object_type, permission) FROM stdin; 
     3035COPY calendar_permission (id, uidnumber, object_id, object_type, permission, owner) FROM stdin; 
    28993036\. 
    29003037 
     
    29283065-- 
    29293066 
    2930 COPY calendar_signature (id, user_uidnumber, calendar_id, is_owner, dtstamp, msg_add, msg_cancel, msg_update, msg_reply, msg_alarms, font_color, background_color, border_color) FROM stdin; 
    2931 1       1003    1       1       1332527174000   \N      \N      \N      \N      \N      FFFFFF  3366CC  3366CC 
    2932 2       1009    2       1       1332529080000   \N      \N      \N      \N      \N      FFFFFF  3366CC  3366CC 
     3067COPY calendar_signature (id, user_uidnumber, calendar_id, is_owner, dtstamp, msg_add, msg_cancel, msg_update, msg_reply, msg_alarms, font_color, background_color, border_color, type) FROM stdin; 
     30681       1003    1       1       1332527174000   \N      \N      \N      \N      \N      FFFFFF  3366CC  3366CC  0 
     30692       1009    2       1       1332529080000   \N      \N      \N      \N      \N      FFFFFF  3366CC  3366CC  0 
    29333070\. 
    29343071 
     
    29393076 
    29403077COPY calendar_signature_alarm (id, action_id, unit, "time", calendar_signature_id) FROM stdin; 
     3078\. 
     3079 
     3080 
     3081-- 
     3082-- Data for Name: calendar_task_to_activity_object; Type: TABLE DATA; Schema: public; Owner: postgres 
     3083-- 
     3084 
     3085COPY calendar_task_to_activity_object (id, calendar_object_activity_id, calendar_object_task_id, owner) FROM stdin; 
    29413086\. 
    29423087 
     
    32423387 
    32433388COPY phpgw_applications (app_id, app_name, app_enabled, app_order, app_tables, app_version) FROM stdin; 
    3244 7       expressoAdmin1_2        1       1       phpgw_expressoadmin,phpgw_expressoadmin_apps,phpgw_expressoadmin_passwords,phpgw_expressoadmin_log,phpgw_expressoadmin_samba,phpgw_expressoadmin_configuration,phpgw_expressoadmin_acls 2.4.0 
    3245 4       calendar        1       3       phpgw_cal,phpgw_cal_holidays,phpgw_cal_repeats,phpgw_cal_user,phpgw_cal_extra   2.4.0 
    3246 1       phpgwapi        3       1       phpgw_config,phpgw_applications,phpgw_acl,phpgw_accounts,phpgw_preferences,phpgw_sessions,phpgw_app_sessions,phpgw_access_log,phpgw_hooks,phpgw_languages,phpgw_lang,phpgw_nextid,phpgw_categories,phpgw_addressbook,phpgw_addressbook_extra,phpgw_log,phpgw_log_msg,phpgw_interserv,phpgw_vfs,phpgw_history_log,phpgw_async    2.4.0 
    3247 2       admin   1       1               2.4.0 
    3248 3       preferences     2       1               2.4.0 
    3249 19      listAdmin       1       10              2.4.0 
    3250 5       contactcenter   1       4       phpgw_cc_status,phpgw_cc_prefixes,phpgw_cc_suffixes,phpgw_cc_typeof_ct_rels,phpgw_cc_typeof_ct_addrs,phpgw_cc_typeof_ct_conns,phpgw_cc_typeof_co_rels,phpgw_cc_typeof_co_addrs,phpgw_cc_typeof_co_conns,phpgw_cc_typeof_co_legals,phpgw_cc_state,phpgw_cc_city,phpgw_cc_addresses,phpgw_cc_connections,phpgw_cc_company,phpgw_cc_company_rels,phpgw_cc_company_addrs,phpgw_cc_company_conns,phpgw_cc_company_legals,phpgw_cc_contact,phpgw_cc_contact_rels,phpgw_cc_contact_addrs,phpgw_cc_contact_conns,phpgw_cc_contact_company,phpgw_cc_contact_grps,phpgw_cc_groups 2.4.0 
    3251 15      workflow        1       10      egw_wf_activities,egw_wf_activity_roles,egw_wf_instance_activities,egw_wf_instances,egw_wf_processes,egw_wf_roles,egw_wf_transitions,egw_wf_user_roles,egw_wf_workitems,egw_wf_process_config,egw_wf_activity_agents,egw_wf_agent_mail_smtp,egw_wf_interinstance_relations,egw_wf_external_application,egw_wf_admin_access,egw_wf_user_cache,egw_wf_jobs,egw_wf_job_logs        2.4.0 
    3252 10      emailadmin      2       10      phpgw_emailadmin        2.4.0 
    3253 11      help    2       5               2.4.0 
    3254 18      mobile  2       4               2.4.0 
    3255 9       news_admin      1       16      phpgw_news,phpgw_news_export    2.4.0 
    3256 17      jabberit_messenger      1       9               2.4.0 
    3257338921      filemanager     1       6       phpgw_vfs,phpgw_vfs_quota,phpgw_filemanager_notification        2.4.0 
    3258339013      expressoMail1_2 1       2       phpgw_expressomail_contacts,phpgw_certificados,expressomail_attachment,expressomail_label,expressomail_message_followupflag,expressomail_followupflag   2.4.6 
    3259 20      reports 1       17              2.4.0 
    3260 22      expressoCalendar        1       3       calendar_signature_alarm,calendar_signature,calendar_repeat_occurrence,calendar_repeat,calendar_alarm,calendar_participant,calendar_participant_status,calendar_attach,attachment,calendar_to_calendar_object,calendar,calendar_object,calendar_object_type,calendar_class,calendar_ex_participant,calendar_permission,module_preference,calendar_repeat_ranges 1.006 
     33915       contactcenter   1       4       phpgw_cc_status,phpgw_cc_prefixes,phpgw_cc_suffixes,phpgw_cc_typeof_ct_rels,phpgw_cc_typeof_ct_addrs,phpgw_cc_typeof_ct_conns,phpgw_cc_typeof_co_rels,phpgw_cc_typeof_co_addrs,phpgw_cc_typeof_co_conns,phpgw_cc_typeof_co_legals,phpgw_cc_state,phpgw_cc_city,phpgw_cc_addresses,phpgw_cc_connections,phpgw_cc_company,phpgw_cc_company_rels,phpgw_cc_company_addrs,phpgw_cc_company_conns,phpgw_cc_company_legals,phpgw_cc_contact,phpgw_cc_contact_rels,phpgw_cc_contact_addrs,phpgw_cc_contact_conns,phpgw_cc_contact_company,phpgw_cc_contact_grps,phpgw_cc_groups 2.5.0 
     33921       phpgwapi        3       1       phpgw_config,phpgw_applications,phpgw_acl,phpgw_accounts,phpgw_preferences,phpgw_sessions,phpgw_app_sessions,phpgw_access_log,phpgw_hooks,phpgw_languages,phpgw_lang,phpgw_nextid,phpgw_categories,phpgw_addressbook,phpgw_addressbook_extra,phpgw_log,phpgw_log_msg,phpgw_interserv,phpgw_vfs,phpgw_history_log,phpgw_async    2.5.0 
     33932       admin   1       1               2.5.0 
     33943       preferences     2       1               2.5.0 
     339522      expressoCalendar        1       10      calendar_signature_alarm,calendar_signature,calendar_repeat_occurrence,calendar_repeat,calendar_alarm,calendar_participant,calendar_participant_status,calendar_attach,attachment,calendar_to_calendar_object,calendar,calendar_object,calendar_object_type,calendar_class,calendar_ex_participant,calendar_permission,module_preference,calendar_repeat_ranges,calendar_task_to_activity_object,calendar_historic      1.009 
     339619      listAdmin       1       10              2.5.0 
     339710      emailadmin      2       10      phpgw_emailadmin        2.5.0 
     33984       calendar        1       3       phpgw_cal,phpgw_cal_holidays,phpgw_cal_repeats,phpgw_cal_user,phpgw_cal_extra   2.5.0 
     33997       expressoAdmin1_2        1       1       phpgw_expressoadmin,phpgw_expressoadmin_apps,phpgw_expressoadmin_passwords,phpgw_expressoadmin_log,phpgw_expressoadmin_samba,phpgw_expressoadmin_configuration,phpgw_expressoadmin_acls 2.5.0 
     340011      help    2       5               2.5.0 
     340117      jabberit_messenger      1       9               2.5.0 
     340218      mobile  2       4               2.5.0 
     34039       news_admin      1       16      phpgw_news,phpgw_news_export    2.5.0 
     340420      reports 1       17              2.5.0 
     340515      workflow        1       10      egw_wf_activities,egw_wf_activity_roles,egw_wf_instance_activities,egw_wf_instances,egw_wf_processes,egw_wf_roles,egw_wf_transitions,egw_wf_user_roles,egw_wf_workitems,egw_wf_process_config,egw_wf_activity_agents,egw_wf_agent_mail_smtp,egw_wf_interinstance_relations,egw_wf_external_application,egw_wf_admin_access,egw_wf_user_cache,egw_wf_jobs,egw_wf_job_logs        2.5.0 
    32613406\. 
    32623407 
     
    4457460211071   2       BR      \N      \N      Boa Nova 
    4458460311072   2       BR      \N      \N      Boa União 
     460411201   2       BR      \N      \N      Crussaí 
    4459460511073   2       BR      \N      \N      Boa Vista do Lagamar 
    4460460611074   2       BR      \N      \N      Boa Vista do Tupim 
     
    4585473111199   2       BR      \N      \N      Cristópolis 
    4586473211200   2       BR      \N      \N      Crisópolis 
    4587 11201   2       BR      \N      \N      Crussaí 
    4588473311202   2       BR      \N      \N      Cruz das Almas 
    4589473411203   2       BR      \N      \N      Cumuruxatiba 
     
    109781112317592   25      BR      \N      \N      São Sebastião do Sacramento 
    109791112417593   25      BR      \N      \N      São Sebastião do Soberbo 
     1112517719   26      BR      \N      \N      Alta Floresta 
    109801112617594   25      BR      \N      \N      São Sebastião do Óculo 
    109811112717595   25      BR      \N      \N      São Sebastião dos Poções 
     
    111031124917717   26      BR      \N      \N      Ainhumas 
    111041125017718   26      BR      \N      \N      Alcantilado 
    11105 17719   26      BR      \N      \N      Alta Floresta 
    111061125117720   26      BR      \N      \N      Alto Araguaia 
    111071125217721   26      BR      \N      \N      Alto Boa Vista 
     
    112301137517844   26      BR      \N      \N      Nortelândia 
    112311137617845   26      BR      \N      \N      Nossa Senhora da Guia 
     1137717967   26      BR      \N      \N      Vila Progresso 
    112321137817846   26      BR      \N      \N      Nossa Senhora do Livramento 
    112331137917847   26      BR      \N      \N      Nova Alvorada 
     
    113511149717965   26      BR      \N      \N      Vila Operária 
    113521149817966   26      BR      \N      \N      Vila Paulista 
    11353 17967   26      BR      \N      \N      Vila Progresso 
    113541149917968   26      BR      \N      \N      Vila Rica 
    113551150017969   26      BR      \N      \N      Várzea Grande 
     
    1335513500phpgwapi        sessions_timeout        14400 
    1335613501phpgwapi        sessions_app_timeout    86400 
    13357 phpgwapi        ldap_root_pw    LDAP_PWD 
     13502phpgwapi        ldap_root_pw    prognus 
    1335813503contactcenter   cc_global_source0       ldap 
    1335913504contactcenter   cc_catalog_name Catálogo Geral 
    1336013505contactcenter   cc_ldap_host0   127.0.0.1 
    13361 contactcenter   cc_ldap_context0        LDAP_DN 
     13506contactcenter   cc_ldap_context0        dc=prognus,dc=org 
    1336213507phpgwapi        asyncservice    off 
    1336313508phpgwapi        cal_expressoMail        1.2 
     
    1338013525phpgwapi        acl_default     deny 
    1338113526phpgwapi        ldap_host       127.0.0.1 
    13382 phpgwapi        ldap_context    LDAP_DN 
    13383 phpgwapi        ldap_group_context      LDAP_DN 
    13384 phpgwapi        ldap_root_dn    cn=admin,LDAP_DN 
     13527phpgwapi        ldap_context    dc=prognus,dc=org 
     13528phpgwapi        ldap_group_context      dc=prognus,dc=org 
     13529phpgwapi        ldap_root_dn    cn=admin,dc=prognus,dc=org 
    1338513530phpgwapi        ldap_encryption_type    md5 
    1338613531phpgwapi        ldap_version3   True 
     
    1339513540phpgwapi        server_webjabber        127.0.0.1 
    1339613541phpgwapi        server_ldap_jabber      127.0.0.1 
    13397 phpgwapi        context_ldap_jabber     LDAP_DN 
    13398 phpgwapi        user_ldap_jabber        cn=admin,LDAP_DN 
    13399 phpgwapi        password_ldap_jabber    LDAP_PWD 
     13542phpgwapi        context_ldap_jabber     dc=prognus,dc=org 
     13543phpgwapi        user_ldap_jabber        cn=admin,dc=prognus,dc=org 
     13544phpgwapi        password_ldap_jabber    prognus 
    1340013545workflow        workflow_database_type  pgsql 
    1340113546workflow        database_type   pgsql 
     
    1341013555jabberit_messenger      use_ssl_jabberit        false 
    1341113556jabberit_messenger      server_ldap_jabberit    localhost 
    13412 jabberit_messenger      context_ldap_jabberit   LDAP_DN 
    13413 jabberit_messenger      password_ldap_jabberit  LDAP_PWD 
    13414 jabberit_messenger      user_ldap_jabberit      uid=expresso-admin,ou=ORG,LDAP_DN 
     13557jabberit_messenger      context_ldap_jabberit   dc=prognus,dc=org 
     13558jabberit_messenger      password_ldap_jabberit  prognus 
     13559jabberit_messenger      user_ldap_jabberit      uid=expresso-admin,ou=ORG,dc=prognus,dc=org 
    1341513560phpgwapi        name_jabberit   localhost 
    1341613561phpgwapi        port_jabberit   5222 
     
    1341813563phpgwapi        use_ssl_jabberit        false 
    1341913564phpgwapi        server_ldap_jabberit    localhost 
    13420 phpgwapi        context_ldap_jabberit   LDAP_DN 
    13421 phpgwapi        user_ldap_jabberit      uid=expresso-admin,ou=ORG,LDAP_DN 
    13422 phpgwapi        password_ldap_jabberit  LDAP_PWD 
     13565phpgwapi        context_ldap_jabberit   dc=prognus,dc=org 
     13566phpgwapi        user_ldap_jabberit      uid=expresso-admin,ou=ORG,dc=prognus,dc=org 
     13567phpgwapi        password_ldap_jabberit  prognus 
    1342313568contactcenter   cc_ldap_query_automatic true 
    1342413569workflow        log_type_file   True 
     
    1344313588workflow        workflow_database_user  postgres 
    1344413589workflow        ldap_host       localhost 
    13445 workflow        ldap_user_context       LDAP_DN 
    13446 workflow        ldap_group_context      LDAP_DN 
     13590workflow        ldap_user_context       dc=prognus,dc=org 
     13591workflow        ldap_group_context      dc=prognus,dc=org 
    1344713592workflow        ldap_follow_referrals   False 
    1344813593workflow        mainframe_environment   D 
    1344913594workflow        cc_allow_details        false 
    1345013595expressoMail1_2 expressoMail_limit_labels       20 
    13451 phpgwapi        lang_ctimes     a:1:{s:5:"pt-br";a:16:{s:5:"admin";i:1337012420;s:8:"calendar";i:1337012420;s:13:"contactcenter";i:1337012420;s:10:"emailadmin";i:1337012420;s:16:"expressoAdmin1_2";i:1337012420;s:15:"expressoMail1_2";i:1337012420;s:11:"filemanager";i:1337012420;s:4:"help";i:1337012420;s:18:"jabberit_messenger";i:1337012420;s:9:"listAdmin";i:1337012420;s:6:"mobile";i:1337012420;s:10:"news_admin";i:1337012420;s:8:"phpgwapi";i:1337012420;s:11:"preferences";i:1337012420;s:7:"reports";i:1337012420;s:8:"workflow";i:1337012420;}} 
    1345213596phpgwapi        csspacker       False 
    13453 phpgwapi        admin_mails     expresso-admin@DOMAIN 
     13597phpgwapi        admin_mails     expresso-admin@prognus.org 
    1345413598phpgwapi        cc_allow_details        false 
    1345513599phpgwapi        defaultCalendar expressoCalendar 
     
    1347213616contactcenter   cc_allow_details        true 
    1347313617contactcenter   cc_ldap_max_results     100 
     13618phpgwapi        lang_ctimes     a:3:{s:5:"pt-br";a:16:{s:5:"admin";i:1353085831;s:8:"calendar";i:1353085831;s:13:"contactcenter";i:1353085831;s:10:"emailadmin";i:1353085831;s:16:"expressoAdmin1_2";i:1353085830;s:15:"expressoMail1_2";i:1353085831;s:11:"filemanager";i:1353085831;s:4:"help";i:1353085831;s:18:"jabberit_messenger";i:1353085831;s:9:"listAdmin";i:1353085831;s:6:"mobile";i:1353085831;s:10:"news_admin";i:1353085830;s:8:"phpgwapi";i:1353085831;s:11:"preferences";i:1353085831;s:7:"reports";i:1353085831;s:8:"workflow";i:1353085831;}s:2:"en";a:12:{s:5:"admin";i:1353085831;s:8:"calendar";i:1353085831;s:13:"contactcenter";i:1353085831;s:10:"emailadmin";i:1353085831;s:15:"expressoMail1_2";i:1353085831;s:11:"filemanager";i:1353085831;s:4:"help";i:1353085831;s:6:"mobile";i:1353085831;s:10:"news_admin";i:1353085830;s:8:"phpgwapi";i:1353085831;s:11:"preferences";i:1353085831;s:8:"workflow";i:1353085831;}s:5:"es-es";a:14:{s:5:"admin";i:1353085831;s:8:"calendar";i:1353085831;s:13:"contactcenter";i:1353085831;s:10:"emailadmin";i:1353085831;s:16:"expressoAdmin1_2";i:1353085830;s:15:"expressoMail1_2";i:1353085831;s:11:"filemanager";i:1353085831;s:4:"help";i:1353085831;s:9:"listAdmin";i:1353085831;s:6:"mobile";i:1353085831;s:10:"news_admin";i:1353085830;s:8:"phpgwapi";i:1353085831;s:11:"preferences";i:1353085831;s:8:"workflow";i:1353085831;}} 
    1347413619\. 
    1347513620 
     
    1348013625 
    1348113626COPY phpgw_emailadmin (profileid, smtpserver, smtptype, smtpport, smtpdelimiter, smtpauth, smtpldapserver, smtpldapbasedn, smtpldapadmindn, smtpldapadminpw, smtpldapusedefault, imapserver, imaptype, imapport, imapdelimiter, imaplogintype, imaptlsauthentication, imaptlsencryption, imapenablecyrusadmin, imapadminusername, imapadminpw, imapenablesieve, imapsieveserver, imapsieveport, description, defaultdomain, organisationname, userdefinedaccounts, imapoldcclient, imapdefaulttrashfolder, imapdefaultsentfolder, imapdefaultdraftsfolder, imapdefaultspamfolder, imapcreatespamfolder, imapcyrususerpostspam) FROM stdin; 
    13482 1       127.0.0.1       2       25      \N              127.0.0.1       LDAP_DN cn=admin,LDAP_DN        LDAP_PWD        yes     127.0.0.1       3       143     /       standard                        yes     expresso-admin  LDAP_PWD        yes     127.0.0.1       2000    Expresso        LDAP_PWD.DOMAIN LDAP_PWD                        Trash   Sent    Drafts  Spam    \N      \N 
     136271       127.0.0.1       2       25      \N              127.0.0.1       dc=prognus,dc=org       cn=admin,dc=prognus,dc=org      prognus yes     127.0.0.1       3       143     /       standard                        yes     expresso-admin  prognus yes     127.0.0.1       2000    Expresso        prognus.prognus.org     prognus                 Trash   Sent    Drafts  Spam    \N      \N 
    1348313628\. 
    1348413629 
     
    1348913634 
    1349013635COPY phpgw_expressoadmin (manager_lid, context, acl) FROM stdin; 
    13491 expresso-admin  LDAP_DN 34335619063 
     13636expresso-admin  dc=prognus,dc=org       34335619063 
    1349213637\. 
    1349313638 
     
    1349813643 
    1349913644COPY phpgw_expressoadmin_acls (manager_lid, context, acl_name) FROM stdin; 
    13500 expresso-admin  LDAP_DN acl_add_users 
    13501 expresso-admin  LDAP_DN acl_add_groups 
    13502 expresso-admin  LDAP_DN acl_add_maillists 
    13503 expresso-admin  LDAP_DN acl_create_sectors 
    13504 expresso-admin  LDAP_DN acl_edit_users 
    13505 expresso-admin  LDAP_DN acl_edit_groups 
    13506 expresso-admin  LDAP_DN acl_edit_maillists 
    13507 expresso-admin  LDAP_DN acl_edit_sectors 
    13508 expresso-admin  LDAP_DN acl_delete_users 
    13509 expresso-admin  LDAP_DN acl_delete_groups 
    13510 expresso-admin  LDAP_DN acl_delete_maillists 
    13511 expresso-admin  LDAP_DN acl_delete_sectors 
    13512 expresso-admin  LDAP_DN acl_rename_users 
    13513 expresso-admin  LDAP_DN acl_edit_email_groups 
    13514 expresso-admin  LDAP_DN acl_edit_scl_email_lists 
    13515 expresso-admin  LDAP_DN acl_manipulate_corporative_information 
    13516 expresso-admin  LDAP_DN acl_view_users 
    13517 expresso-admin  LDAP_DN acl_add_shared_accounts 
    13518 expresso-admin  LDAP_DN acl_add_institutional_accounts 
    13519 expresso-admin  LDAP_DN acl_edit_maximum_number_of_recipients_generally 
    13520 expresso-admin  LDAP_DN acl_edit_users_picture 
    13521 expresso-admin  LDAP_DN acl_edit_shared_accounts 
    13522 expresso-admin  LDAP_DN acl_edit_institutional_accounts 
    13523 expresso-admin  LDAP_DN acl_add_maximum_number_of_recipients_by_user 
    13524 expresso-admin  LDAP_DN acl_edit_users_phonenumber 
    13525 expresso-admin  LDAP_DN acl_delete_shared_accounts 
    13526 expresso-admin  LDAP_DN acl_remove_institutional_accounts 
    13527 expresso-admin  LDAP_DN acl_edit_and_remove_maximum_number_of_recipients_by_user 
    13528 expresso-admin  LDAP_DN acl_change_users_password 
    13529 expresso-admin  LDAP_DN acl_edit_shared_accounts_acl 
    13530 expresso-admin  LDAP_DN acl_add_maximum_number_of_recipients_by_group 
    13531 expresso-admin  LDAP_DN acl_change_users_quote 
    13532 expresso-admin  LDAP_DN acl_edit_shared_accounts_quote 
    13533 expresso-admin  LDAP_DN acl_active_blocking_sending_email_to_shared_accounts 
    13534 expresso-admin  LDAP_DN acl_edit_and_remove_maximum_number_of_recipients_by_group 
    13535 expresso-admin  LDAP_DN acl_set_user_default_password 
    13536 expresso-admin  LDAP_DN acl_empty_shared_accounts_inbox 
    13537 expresso-admin  LDAP_DN acl_add_blocking_sending_email_to_shared_accounts_exception 
    13538 expresso-admin  LDAP_DN acl_empty_user_inbox 
    13539 expresso-admin  LDAP_DN acl_edit_sambausers_attributes 
    13540 expresso-admin  LDAP_DN acl_edit_sambadomains 
    13541 expresso-admin  LDAP_DN acl_add_messages_size_rule 
    13542 expresso-admin  LDAP_DN acl_view_global_sessions 
    13543 expresso-admin  LDAP_DN acl_edit_messages_size_rule 
    13544 expresso-admin  LDAP_DN acl_create_computers 
    13545 expresso-admin  LDAP_DN acl_view_logs 
    13546 expresso-admin  LDAP_DN acl_remove_messages_size_rule 
    13547 expresso-admin  LDAP_DN acl_edit_computers 
    13548 expresso-admin  LDAP_DN acl_delete_computers 
     13645expresso-admin  dc=prognus,dc=org       acl_add_users 
     13646expresso-admin  dc=prognus,dc=org       acl_add_groups 
     13647expresso-admin  dc=prognus,dc=org       acl_add_maillists 
     13648expresso-admin  dc=prognus,dc=org       acl_create_sectors 
     13649expresso-admin  dc=prognus,dc=org       acl_edit_users 
     13650expresso-admin  dc=prognus,dc=org       acl_edit_groups 
     13651expresso-admin  dc=prognus,dc=org       acl_edit_maillists 
     13652expresso-admin  dc=prognus,dc=org       acl_edit_sectors 
     13653expresso-admin  dc=prognus,dc=org       acl_delete_users 
     13654expresso-admin  dc=prognus,dc=org       acl_delete_groups 
     13655expresso-admin  dc=prognus,dc=org       acl_delete_maillists 
     13656expresso-admin  dc=prognus,dc=org       acl_delete_sectors 
     13657expresso-admin  dc=prognus,dc=org       acl_rename_users 
     13658expresso-admin  dc=prognus,dc=org       acl_edit_email_groups 
     13659expresso-admin  dc=prognus,dc=org       acl_edit_scl_email_lists 
     13660expresso-admin  dc=prognus,dc=org       acl_manipulate_corporative_information 
     13661expresso-admin  dc=prognus,dc=org       acl_view_users 
     13662expresso-admin  dc=prognus,dc=org       acl_add_shared_accounts 
     13663expresso-admin  dc=prognus,dc=org       acl_add_institutional_accounts 
     13664expresso-admin  dc=prognus,dc=org       acl_edit_maximum_number_of_recipients_generally 
     13665expresso-admin  dc=prognus,dc=org       acl_edit_users_picture 
     13666expresso-admin  dc=prognus,dc=org       acl_edit_shared_accounts 
     13667expresso-admin  dc=prognus,dc=org       acl_edit_institutional_accounts 
     13668expresso-admin  dc=prognus,dc=org       acl_add_maximum_number_of_recipients_by_user 
     13669expresso-admin  dc=prognus,dc=org       acl_edit_users_phonenumber 
     13670expresso-admin  dc=prognus,dc=org       acl_delete_shared_accounts 
     13671expresso-admin  dc=prognus,dc=org       acl_remove_institutional_accounts 
     13672expresso-admin  dc=prognus,dc=org       acl_edit_and_remove_maximum_number_of_recipients_by_user 
     13673expresso-admin  dc=prognus,dc=org       acl_change_users_password 
     13674expresso-admin  dc=prognus,dc=org       acl_edit_shared_accounts_acl 
     13675expresso-admin  dc=prognus,dc=org       acl_add_maximum_number_of_recipients_by_group 
     13676expresso-admin  dc=prognus,dc=org       acl_change_users_quote 
     13677expresso-admin  dc=prognus,dc=org       acl_edit_shared_accounts_quote 
     13678expresso-admin  dc=prognus,dc=org       acl_active_blocking_sending_email_to_shared_accounts 
     13679expresso-admin  dc=prognus,dc=org       acl_edit_and_remove_maximum_number_of_recipients_by_group 
     13680expresso-admin  dc=prognus,dc=org       acl_set_user_default_password 
     13681expresso-admin  dc=prognus,dc=org       acl_empty_shared_accounts_inbox 
     13682expresso-admin  dc=prognus,dc=org       acl_add_blocking_sending_email_to_shared_accounts_exception 
     13683expresso-admin  dc=prognus,dc=org       acl_empty_user_inbox 
     13684expresso-admin  dc=prognus,dc=org       acl_edit_sambausers_attributes 
     13685expresso-admin  dc=prognus,dc=org       acl_edit_sambadomains 
     13686expresso-admin  dc=prognus,dc=org       acl_add_messages_size_rule 
     13687expresso-admin  dc=prognus,dc=org       acl_view_global_sessions 
     13688expresso-admin  dc=prognus,dc=org       acl_edit_messages_size_rule 
     13689expresso-admin  dc=prognus,dc=org       acl_create_computers 
     13690expresso-admin  dc=prognus,dc=org       acl_view_logs 
     13691expresso-admin  dc=prognus,dc=org       acl_remove_messages_size_rule 
     13692expresso-admin  dc=prognus,dc=org       acl_edit_computers 
     13693expresso-admin  dc=prognus,dc=org       acl_delete_computers 
    1354913694\. 
    1355013695 
     
    1355513700 
    1355613701COPY phpgw_expressoadmin_apps (manager_lid, context, app) FROM stdin; 
    13557 expresso-admin  LDAP_DN emailadmin 
    13558 expresso-admin  LDAP_DN admin 
    13559 expresso-admin  LDAP_DN calendar 
    13560 expresso-admin  LDAP_DN help 
    13561 expresso-admin  LDAP_DN news_admin 
    13562 expresso-admin  LDAP_DN contactcenter 
    13563 expresso-admin  LDAP_DN mobile 
    13564 expresso-admin  LDAP_DN expressoAdmin1_2 
    13565 expresso-admin  LDAP_DN expressoMail1_2 
    13566 expresso-admin  LDAP_DN jabberit_messenger 
    13567 expresso-admin  LDAP_DN reports 
    13568 expresso-admin  LDAP_DN expressoCalendar 
    13569 expresso-admin  LDAP_DN filemanager 
    13570 expresso-admin  LDAP_DN listAdmin 
    13571 expresso-admin  LDAP_DN phpgwapi 
    13572 expresso-admin  LDAP_DN preferences 
    13573 expresso-admin  LDAP_DN workflow 
     13702expresso-admin  dc=prognus,dc=org       emailadmin 
     13703expresso-admin  dc=prognus,dc=org       admin 
     13704expresso-admin  dc=prognus,dc=org       calendar 
     13705expresso-admin  dc=prognus,dc=org       help 
     13706expresso-admin  dc=prognus,dc=org       news_admin 
     13707expresso-admin  dc=prognus,dc=org       contactcenter 
     13708expresso-admin  dc=prognus,dc=org       mobile 
     13709expresso-admin  dc=prognus,dc=org       expressoAdmin1_2 
     13710expresso-admin  dc=prognus,dc=org       expressoMail1_2 
     13711expresso-admin  dc=prognus,dc=org       jabberit_messenger 
     13712expresso-admin  dc=prognus,dc=org       reports 
     13713expresso-admin  dc=prognus,dc=org       expressoCalendar 
     13714expresso-admin  dc=prognus,dc=org       filemanager 
     13715expresso-admin  dc=prognus,dc=org       listAdmin 
     13716expresso-admin  dc=prognus,dc=org       phpgwapi 
     13717expresso-admin  dc=prognus,dc=org       preferences 
     13718expresso-admin  dc=prognus,dc=org       workflow 
    1357413719\. 
    1357513720 
     
    1363713782COPY phpgw_hooks (hook_id, hook_appname, hook_location, hook_filename) FROM stdin; 
    1363813783112     instant_messenger       admin   hook_admin.inc.php 
    13639 567     admin   acl_manager     hook_acl_manager.inc.php 
    13640 568     admin   add_def_pref    hook_add_def_pref.inc.php 
    13641 569     admin   admin   hook_admin.inc.php 
    13642 570     admin   after_navbar    hook_after_navbar.inc.php 
    13643 571     admin   config  hook_config.inc.php 
    13644 572     admin   deleteaccount   hook_deleteaccount.inc.php 
    13645 573     admin   view_user       admin.uiaccounts.edit_view_user_hook 
    13646 574     admin   edit_user       admin.uiaccounts.edit_view_user_hook 
    13647 575     admin   sidebox_menu    hook_sidebox_menu.inc.php 
    13648 576     preferences     deleteaccount   hook_deleteaccount.inc.php 
    13649 577     preferences     config  hook_config.inc.php 
    13650 578     preferences     manual  hook_manual.inc.php 
    13651 579     preferences     preferences     hook_preferences.inc.php 
    13652 580     preferences     settings        hook_settings.inc.php 
    13653 581     listAdmin       admin   hook_admin.inc.php 
    13654 593     workflow        about   hook_about.inc.php 
    13655 594     workflow        admin   hook_admin.inc.php 
    13656 595     workflow        add_def_pref    hook_add_def_pref.inc.php 
    13657 596     workflow        config  hook_config.inc.php 
    13658 597     workflow        manual  hook_manual.inc.php 
    13659 598     workflow        preferences     hook_preferences.inc.php 
    13660 599     workflow        settings        hook_settings.inc.php 
    13661 600     workflow        sidebox_menu    hook_sidebox_menu.inc.php 
    13662 601     workflow        acl_manager     hook_acl_manager.inc.php 
    13663 602     workflow        deleteaccount   hook_deleteaccount.inc.php 
    13664 603     workflow        home    hook_home.inc.php 
    13665 656     calendar        add_def_prefs   hook_add_def_prefs.inc.php 
    13666 657     calendar        admin   hook_admin.inc.php 
    13667 658     calendar        deleteaccount   hook_deleteaccount.inc.php 
    13668 659     calendar        email   hook_email.inc.php 
    13669 660     calendar        home    hook_home.inc.php 
    13670 661     calendar        home_day        hook_home_day.inc.php 
    13671 662     calendar        home_month      hook_home_month.inc.php 
    13672 663     calendar        home_week       hook_home_week.inc.php 
    13673 664     calendar        home_year       hook_home_year.inc.php 
    13674 665     calendar        manual  hook_manual.inc.php 
    13675 666     calendar        preferences     hook_preferences.inc.php 
    13676 667     calendar        settings        hook_settings.inc.php 
    13677 668     calendar        sidebox_menu    hook_sidebox_menu.inc.php 
    13678 681     contactcenter   admin   hook_admin.inc.php 
    13679 682     contactcenter   preferences     hook_preferences.inc.php 
    13680 683     contactcenter   config_validate hook_config_validate.inc.php 
    13681 684     contactcenter   sidebox_menu    hook_sidebox_menu.inc.php 
    13682 686     emailadmin      admin   hook_admin.inc.php 
    13683 691     expressoAdmin1_2        admin   hook_admin.inc.php 
    13684 744     news_admin      admin   hook_admin.inc.php 
    13685 745     news_admin      home    hook_home.inc.php 
    13686 746     news_admin      sidebox_menu    hook_sidebox_menu.inc.php 
    13687 747     news_admin      settings        hook_settings.inc.php 
    13688 748     news_admin      preferences     hook_preferences.inc.php 
    13689 749     jabberit_messenger      admin   hook_admin.inc.php 
    1369013784750     filemanager     add_def_pref    hook_add_def_pref.inc.php 
    1369113785751     filemanager     admin   hook_admin.inc.php 
     
    1369913793772     expressoMail1_2 home    hook_home.inc.php 
    1370013794773     expressoMail1_2 settings        hook_settings.inc.php 
    13701 775     reports admin   hook_admin.inc.php 
     13795776     admin   acl_manager     hook_acl_manager.inc.php 
     13796777     admin   add_def_pref    hook_add_def_pref.inc.php 
     13797778     admin   admin   hook_admin.inc.php 
     13798779     admin   after_navbar    hook_after_navbar.inc.php 
     13799780     admin   config  hook_config.inc.php 
     13800781     admin   deleteaccount   hook_deleteaccount.inc.php 
     13801782     admin   view_user       admin.uiaccounts.edit_view_user_hook 
     13802783     admin   edit_user       admin.uiaccounts.edit_view_user_hook 
     13803784     admin   sidebox_menu    hook_sidebox_menu.inc.php 
     13804785     preferences     deleteaccount   hook_deleteaccount.inc.php 
     13805786     preferences     config  hook_config.inc.php 
     13806787     preferences     manual  hook_manual.inc.php 
     13807788     preferences     preferences     hook_preferences.inc.php 
     13808789     preferences     settings        hook_settings.inc.php 
     13809793     expressoCalendar        admin   hook_admin.inc.php 
     13810794     listAdmin       admin   hook_admin.inc.php 
     13811821     calendar        add_def_prefs   hook_add_def_prefs.inc.php 
     13812822     calendar        admin   hook_admin.inc.php 
     13813823     calendar        deleteaccount   hook_deleteaccount.inc.php 
     13814824     calendar        email   hook_email.inc.php 
     13815825     calendar        home    hook_home.inc.php 
     13816826     calendar        home_day        hook_home_day.inc.php 
     13817827     calendar        home_month      hook_home_month.inc.php 
     13818828     calendar        home_week       hook_home_week.inc.php 
     13819829     calendar        home_year       hook_home_year.inc.php 
     13820830     calendar        manual  hook_manual.inc.php 
     13821831     calendar        preferences     hook_preferences.inc.php 
     13822832     calendar        settings        hook_settings.inc.php 
     13823833     calendar        sidebox_menu    hook_sidebox_menu.inc.php 
     13824844     contactcenter   admin   hook_admin.inc.php 
     13825845     contactcenter   preferences     hook_preferences.inc.php 
     13826846     contactcenter   config_validate hook_config_validate.inc.php 
     13827847     contactcenter   sidebox_menu    hook_sidebox_menu.inc.php 
     13828848     contactcenter   settings        hook_settings.inc.php 
     13829851     emailadmin      admin   hook_admin.inc.php 
     13830854     expressoAdmin1_2        admin   hook_admin.inc.php 
     13831855     jabberit_messenger      admin   hook_admin.inc.php 
     13832866     news_admin      admin   hook_admin.inc.php 
     13833867     news_admin      home    hook_home.inc.php 
     13834868     news_admin      sidebox_menu    hook_sidebox_menu.inc.php 
     13835869     news_admin      settings        hook_settings.inc.php 
     13836870     news_admin      preferences     hook_preferences.inc.php 
     13837871     reports admin   hook_admin.inc.php 
     13838894     workflow        about   hook_about.inc.php 
     13839895     workflow        admin   hook_admin.inc.php 
     13840896     workflow        add_def_pref    hook_add_def_pref.inc.php 
     13841897     workflow        config  hook_config.inc.php 
     13842898     workflow        manual  hook_manual.inc.php 
     13843899     workflow        preferences     hook_preferences.inc.php 
     13844900     workflow        settings        hook_settings.inc.php 
     13845901     workflow        sidebox_menu    hook_sidebox_menu.inc.php 
     13846902     workflow        acl_manager     hook_acl_manager.inc.php 
     13847903     workflow        deleteaccount   hook_deleteaccount.inc.php 
     13848904     workflow        home    hook_home.inc.php 
    1370213849\. 
    1370313850 
     
    1371713864 
    1371813865COPY phpgw_lang (lang, app_name, message_id, content) FROM stdin; 
    13719 pt-br   common  nepal   NEPAL 
    13720 pt-br   common  netherlands antilles    ANTILHAS HOLANDESAS 
    13721 pt-br   common  netherlands     HOLANDA 
    13722 pt-br   common  never   Nunca 
    13723 pt-br   common  new caledonia   NOVA CALEDONIA 
    13724 pt-br   common  new entry added sucessfully     Entrada adicionada com sucesso 
    13725 pt-br   common  new main category       Nova categoria principal 
    13726 pt-br   common  new phrase has been added       se ha agregado la nueva frase 
    13727 pt-br   common  new value       Novo Valor 
    13728 pt-br   common  new zealand     NOVA ZELÂNDIA 
    13729 pt-br   common  next    Próximo 
    13730 pt-br   common  next page       Próxima página 
    13731 pt-br   common  nicaragua       NICARAGUA 
    13732 pt-br   common  niger   NIGER 
    13733 pt-br   common  nigeria NIGERIA 
    13734 pt-br   common  niue    NIUE 
    13735 pt-br   common  no      Não 
    13736 pt-br   common  no entries found, try again ... Nenhum registro encontrado, tente novamente... 
    13737 pt-br   common  no history for this record      Nenhum histórico para este registro 
    13738 pt-br   common  none    Nenhum 
    13739 pt-br   common  norfolk island  ILHAS NORFOLK 
    13740 pt-br   common  normal  Normal 
    13741 pt-br   common  northern mariana islands        NORTHERN MARIANA ISLANDS 
    13742 pt-br   common  norway  NORUEGA 
    13743 pt-br   common  no subject      Sem assunto 
    13744 pt-br   common  not assigned    Não atribuído 
    13745 pt-br   common  notices Avisos 
    13746 pt-br   common  note    Nota 
    13747 pt-br   common  notes   Notas 
    13748 pt-br   common  notify window   Janela de notificação 
    13749 pt-br   common  november        Novembro 
    13750 pt-br   common  october Outubro 
    13751 pt-br   common  ok      OK 
    13752 pt-br   common  old value       Valor antigo 
    13753 pt-br   common  oman    OMà
    13754 pt-br   common  only private    Apenas particular 
    13755 pt-br   common  only yours      somente as suas 
    13756 pt-br   common  on mouse over   Passar o mouse 
    13757 pt-br   common  on *nix systems please type: %1 Sobre sistemas *nix tipo: %1 
    13758 pt-br   common  open notify window      Abrir janela de notificação 
    13759 pt-br   common  open popup window       Abrir janela 
    13760 pt-br   common  organization    Organização 
    13761 pt-br   common  original        Original 
    13762 pt-br   common  other   Outro 
    13763 pt-br   common  overview        Visão geral 
    13764 pt-br   common  owner   Dono 
    13765 pt-br   common  page    Página 
    13766 pt-br   common  page was generated in %1 seconds        Página gerada em %1 segundos 
    13767 pt-br   common  pakistan        PAQUISTÃO 
    13768 pt-br   common  palau   PALAU 
    13769 pt-br   common  palestinian territory, occupied PALESTINA 
    13770 pt-br   common  panama  PANAMÁ 
    13771 pt-br   common  papua new guinea        PAPUA NOVA GUINÉ 
    13772 pt-br   common  paraguay        PARAGUAI 
    13773 pt-br   common  parcel  Parcela 
    13774 pt-br   common  parent category Categoria pai 
    13775 pt-br   common  password        Senha 
    13776 pt-br   common  password could not be changed   Senha não pode ser alterada 
    13777 pt-br   common  password has been updated       Senha foi alterada 
    13778 pt-br   common  path to user and group files has to be outside of the webservers document-root!!!       O caminho para usuários e grupos deve ser FORA do servidor da extranet.!!! 
    13779 pt-br   common  pattern for search in addressbook       Teste padrão para a Busca no Catálogo de Endereços 
    13780 pt-br   common  pattern for search in calendar  Teste padrão para a Busca no Calendário 
    13781 pt-br   common  pattern for search in projects  Teste padrão para a Busca nos Projetos 
    13782 pt-br   common  pause   Pausar 
    13783 pt-br   common  permissions to the files/users directory        Permissões do diretório para os arquivos/usuários 
    13784 pt-br   common  personal        Pessoal 
    13785 pt-br   common  peru    PERU 
    13786 pt-br   common  philippines     FILIPINAS 
    13787 pt-br   common  phone number    Número de Telefone 
    13788 pt-br   common  phpinfo PhpInfo 
    13789 pt-br   common  phpwebhostin    Gerenciamento avançado de arquivos 
    13790 pt-br   common  pitcairn        PITCAIRN 
    13791 pt-br   common  please %1 by hand       %1 pela mão 
    13792 pt-br   common  please enter a name     Por favor digite um nome ! 
    13793 pt-br   workflow        created Criado 
    13794 pt-br   common  year    Ano 
    13795 pt-br   common  yemen   YEMEN 
    13796 pt-br   common  yes     Sim 
    13797 pt-br   calendar        rule    Regra 
    13798 pt-br   calendar        sa      Sa 
    13799 pt-br   calendar        sat     Sab 
    13800 pt-br   workflow        date:   data: 
    13801 en      common  friday  Friday 
    13802 en      common  ftp     FTP 
    13803 en      common  fullname        Fullname 
    13804 en      common  gabon   GABON 
    13805 en      common  gambia  GAMBIA 
    13806 en      common  general menu    General Menu 
    13807 en      common  georgia GEORGIA 
    13808 en      common  germany GERMANY 
    13809 en      common  ghana   GHANA 
    13810 en      common  gibraltar       GIBRALTAR 
    13811 en      common  global  Global 
    13812 en      common  global public   Global Public 
    13813 en      common  grant access    Grant Access 
    13814 en      common  greece  GREECE 
    13815 en      common  greenland       GREENLAND 
    13816 en      common  grenada GRENADA 
    13817 en      common  group   Group 
    13818 en      common  group access    Group Access 
    13819 en      common  group name      group name 
    13820 en      common  group public    Group Public 
    13821 en      common  groups  Groups 
    13822 en      common  groups with permission for %1   Groups with permission for %1 
    13823 en      common  groups without permission for %1        Groups without permission for %1 
    13824 en      common  guadeloupe      GUADELOUPE 
    13825 en      common  guam    GUAM 
    13826 en      common  guatemala       GUATEMALA 
    13827 en      common  guinea  GUINEA 
    13828 en      common  guinea-bissau   GUINEA-BISSAU 
    13829 en      common  guyana  GUYANA 
    13830 en      common  haiti   HAITI 
    13831 en      common  heard island and mcdonald islands       HEARD ISLAND AND MCDONALD ISLANDS 
    13832 en      common  help    Help 
    13833 en      common  high    High 
    13834 en      common  highest Highest 
    13835 en      common  holy see (vatican city state)   HOLY SEE (VATICAN CITY STATE) 
    13836 en      common  home    Home 
    13837 en      common  home email      home email 
    13838 en      common  honduras        HONDURAS 
    13839 en      common  hong kong       HONG KONG 
    13840 en      common  how many icons should be shown in the navbar (top of the page). additional icons go into a kind of pulldown menu, callable by the icon on the far right side of the navbar.     How many icons should be shown in the navbar (top of the page). Additional icons go into a kind of pulldown menu, callable by the icon on the far right side of the navbar. 
    13841 en      common  hungary HUNGARY 
    13842 en      common  iceland ICELAND 
    13843 en      common  india   INDIA 
    13844 en      common  indonesia       INDONESIA 
    13845 en      common  insert all %1 addresses of the %2 contacts in %3        Insert all %1 addresses of the %2 contacts in %3 
    13846 en      common  international   International 
    13847 en      common  invalid code    Invalid code 
    13848 en      common  invalid ip address      Invalid IP address 
    13849 en      common  invalid password        Invalid password 
    13850 en      common  iran, islamic republic of       IRAN, ISLAMIC REPUBLIC OF 
    13851 en      common  iraq    IRAQ 
    13852 en      common  ireland IRELAND 
    13853 en      common  israel  ISRAEL 
    13854 en      common  it has been more then %1 days since you changed your password   It has been more then %1 days since you changed your password 
    13855 en      common  it is recommended that you run setup to upgrade your tables to the current version      It is recommended that you run setup to upgrade your tables to the current version. 
    13856 en      common  italic  Italic 
    13857 en      common  italy   ITALY 
    13858 en      common  jamaica JAMAICA 
    13859 en      common  january January 
    13860 en      common  japan   JAPAN 
    13861 en      common  jordan  JORDAN 
    13862 en      common  july    July 
    13863 en      common  jun     Jun 
    13864 en      common  june    June 
    13865 en      common  justify center  Justify Center 
    13866 en      common  justify full    Justify Full 
    13867 en      common  justify left    Justify Left 
    13868 en      common  justify right   Justify Right 
    13869 en      common  kazakstan       KAZAKSTAN 
    13870 en      common  kenya   KENYA 
    13871 en      common  keywords        Keywords 
    13872 en      common  kiribati        KIRIBATI 
    13873 en      common  korea, democratic peoples republic of   KOREA, DEMOCRATIC PEOPLES REPUBLIC OF 
    13874 en      common  korea, republic of      KOREA, REPUBLIC OF 
    13875 en      common  kuwait  KUWAIT 
    13876 en      common  kyrgyzstan      KYRGYZSTAN 
    13877 en      common  language        Language 
    13878 en      common  lao peoples democratic republic LAO PEOPLES DEMOCRATIC REPUBLIC 
    13879 en      common  last name       Last name 
    13880 en      common  last name of the user, eg. "%1" last name of the user, eg. "%1" 
    13881 en      common  last page       Last page 
    13882 en      common  lastname        Lastname 
    13883 en      common  latvia  LATVIA 
    13884 en      common  lebanon LEBANON 
    13885 en      common  lesotho LESOTHO 
    13886 en      common  liberia LIBERIA 
    13887 en      common  libyan arab jamahiriya  LIBYAN ARAB JAMAHIRIYA 
    13888 en      common  license License 
    13889 en      common  liechtenstein   LIECHTENSTEIN 
    13890 en      common  list    List 
    13891 en      common  list members    List members 
    13892 en      common  lithuania       LITHUANIA 
    13893 en      common  local   Local 
    13894 en      common  login   Login 
    13895 en      common  loginid LoginID 
    13896 en      common  logout  Logout 
    13897 en      common  low     Low 
    13898 en      common  lowest  Lowest 
    13899 en      common  luxembourg      LUXEMBOURG 
    13900 en      common  macau   MACAU 
    13901 en      common  macedonia, the former yugoslav republic of      MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF 
    13902 en      common  madagascar      MADAGASCAR 
    13903 en      common  mail domain, eg. "%1"   mail domain, eg. "%1" 
    13904 en      common  main category   Main category 
    13905 en      common  main screen     Main screen 
    13906 en      common  maintainer      Maintainer 
    13907 en      common  malawi  MALAWI 
    13908 en      common  malaysia        MALAYSIA 
    13909 en      common  maldives        MALDIVES 
    13910 en      common  mali    MALI 
    13911 en      common  malta   MALTA 
    13912 en      common  march   March 
    13913 en      common  marshall islands        MARSHALL ISLANDS 
    13914 en      common  martinique      MARTINIQUE 
    13915 en      common  mauritania      MAURITANIA 
    13916 en      common  mauritius       MAURITIUS 
    13917 en      common  max number of icons in navbar   Max number of icons in navbar 
    13918 en      common  may     May 
    13919 en      common  mayotte MAYOTTE 
    13920 en      common  medium  Medium 
    13921 en      common  menu    Menu 
    13922 en      common  message Message 
    13923 en      common  mexico  MEXICO 
    13924 en      common  micronesia, federated states of MICRONESIA, FEDERATED STATES OF 
    13925 en      common  moldova, republic of    MOLDOVA, REPUBLIC OF 
    13926 en      common  monaco  MONACO 
    13927 en      common  monday  Monday 
    13928 en      common  mongolia        MONGOLIA 
    13929 en      common  montserrat      MONTSERRAT 
    13930 en      common  morocco MOROCCO 
    13931 en      common  mozambique      MOZAMBIQUE 
    13932 en      common  myanmar MYANMAR 
    13933 en      common  my preferences  My Preferences 
    13934 en      common  name    Name 
    13935 en      common  name of the user, eg. "%1"      name of the user, eg. "%1" 
    13936 en      common  namibia NAMIBIA 
    13937 en      common  nauru   NAURU 
    13938 en      common  nepal   NEPAL 
    13939 en      common  netherlands     NETHERLANDS 
    13940 en      common  netherlands antilles    NETHERLANDS ANTILLES 
    13941 en      common  never   Never 
    13942 en      common  new caledonia   NEW CALEDONIA 
    13943 en      common  new entry added sucessfully     New entry added sucessfully 
    13944 en      common  new main category       New main category 
    13945 en      common  new value       New Value 
    13946 en      common  new zealand     NEW ZEALAND 
    13947 en      common  next    Next 
    13948 en      common  next page       Next page 
    13949 en      common  nicaragua       NICARAGUA 
    13950 en      common  niger   NIGER 
    13951 en      common  nigeria NIGERIA 
    13952 en      common  niue    NIUE 
    13953 en      common  no      No 
    13954 en      common  no entries found, try again ... no entries found, try again ... 
    13955 en      common  no history for this record      No history for this record 
    13956 en      common  no subject      No Subject 
    13957 en      common  none    None 
    13958 en      common  norfolk island  NORFOLK ISLAND 
    13959 en      common  normal  Normal 
    13960 en      common  northern mariana islands        NORTHERN MARIANA ISLANDS 
    13961 en      common  norway  NORWAY 
    13962 en      common  not assigned    not assigned 
    13963 en      common  note    Note 
    13964 en      common  notes   Notes 
    13965 en      common  notify window   Notify Window 
    13966 en      common  november        November 
    13967 en      common  october October 
    13968 en      common  ok      OK 
    13969 en      common  old value       Old Value 
    13970 en      common  oman    OMAN 
    13971 en      common  on *nix systems please type: %1 On *nix systems please type: %1 
    13972 en      common  on mouse over   On Mouse Over 
    13973 en      common  only private    only private 
    13974 en      common  only yours      only yours 
    13975 en      common  open notify window      Open notify window 
    13976 en      common  open popup window       Open popup window 
    13977 en      common  original        Original 
    13978 en      common  other   Other 
    13979 en      common  overview        Overview 
    13980 en      common  owner   Owner 
    13981 en      common  page    Page 
    13982 en      common  page was generated in %1 seconds        Page was generated in %1 seconds 
    13983 en      common  pakistan        PAKISTAN 
    13984 en      common  palau   PALAU 
    13985 en      common  showing %1 - %2 of %3   showing %1 - %2 of %3 
    13986 en      calendar        inform  Inform 
    13987 en      calendar        interval        Interval 
    13988 en      calendar        intervals in day view   Intervals in day view 
    13989 en      calendar        intervals per day in planner view       Intervals per day in planner view 
    13990 en      calendar        invalid entry id.       Invalid entry id. 
    13991 en      calendar        last    last 
    13992 en      calendar        lastname of person to notify    Lastname of person to notify 
    13993 en      calendar        length shown<br>(emtpy for full length) Length shown<br>(emtpy for full length) 
    13994 en      calendar        length<br>(<= 255)      Length<br>(<= 255) 
    13995 en      calendar        link    Link 
    13996 en      calendar        link to view the event  Link to view the event 
    13997 en      calendar        list all categories.    List all categories. 
    13998 en      calendar        load [iv]cal    Load [iv]Cal 
    13999 en      calendar        location        Location 
    14000 en      calendar        make freebusy information availible to not loged in persons?    Make freebusy information availible to not loged in persons? 
    14001 en      calendar        matrixview      Matrix View 
    14002 en      calendar        minutes minutes 
    14003 en      calendar        mo      M 
    14004 en      calendar        modified        Modified 
    14005 en      calendar        modify list of external participants    Modify List of External Participants 
    14006 en      calendar        mon     Mon 
    14007 en      calendar        month   Month 
    14008 en      calendar        monthly Monthly 
    14009 en      calendar        monthly (by date)       Monthly (by date) 
    14010 en      calendar        monthly (by day)        Monthly (by day) 
    14011 en      calendar        monthview       Month View 
    14012 en      calendar        new entry       New Entry 
    14013 en      calendar        new name must not exist and not be empty!!!     New name must not exist and not be empty!!! 
    14014 en      calendar        no matches found        No matches found 
    14015 en      calendar        no response     No Response 
    14016 en      calendar        notification messages for added events  Notification messages for added events 
    14017 en      calendar        notification messages for canceled events       Notification messages for canceled events 
    14018 en      calendar        notification messages for modified events       Notification messages for modified events 
    14019 en      calendar        notification messages for your alarms   Notification messages for your alarms 
    14020 en      calendar        notification messages for your responses        Notification messages for your responses 
    14021 en      calendar        number of intervals per day in planner view     Number of Intervals per Day in Planner View 
    14022 en      calendar        number of months        Number of months 
    14023 en      calendar        number of records to read (%1)  Number of records to read (%1) 
    14024 en      calendar        observance rule Observance Rule 
    14025 en      calendar        occurence       Occurence 
    14026 en      calendar        old startdate   Old Startdate 
    14027 en      calendar        olddate OldDate 
    14028 en      calendar        on %1 %2 %3 your meeting request for %4 On %1 %2 %3 your meeting request for %4 
    14029 en      calendar        on all changes  on all changes 
    14030 en      calendar        on all modification, but responses      on all modification, but responses 
    14031 en      calendar        on any time change too  on any time change too 
    14032 en      calendar        on invitation / cancelation only        on invitation / cancelation only 
    14033 en      calendar        on participant responses too    on participant responses too 
    14034 en      calendar        on time change of more than 4 hours too on time change of more than 4 hours too 
    14035 en      calendar        open todo's:    Open To Do Items: 
    14036 en      calendar        order   Order 
    14037 en      calendar        overlap holiday overlap holiday 
    14038 en      calendar        participant     Participant 
    14039 en      calendar        participants    Participants 
    14040 en      calendar        participates    Participates 
    14041 en      calendar        password for not loged in users to your freebusy information?   Password for not loged in users to your freebusy information? 
    14042 en      calendar        people holiday  people holiday 
    14043 en      calendar        permission denied       Permission denied 
    14044 en      calendar        planner Planner 
    14045 en      calendar        planner by category     Planner by category 
    14046 en      calendar        planner by user Planner by user 
    14047 en      calendar        please confirm,accept,reject or examine changes in the corresponding entry in your calendar     Please confirm, accept, reject or examine changes in the corresponding entry in your calendar 
    14048 en      calendar        preselected group for entering the planner      Preselected group for entering the planner 
    14049 en      calendar        print calendars in black & white        Print calendars in black & white 
    14050 en      calendar        print the mini calendars        Print the mini calendars 
    14051 en      calendar        printer friendly        Printer Friendly 
    14052 en      calendar        privat  Privat 
    14053 en      calendar        private and global public       Private and Global Public 
    14054 en      calendar        private and group public        Private and Group Public 
    14055 en      calendar        private only    Private Only 
    14056 en      calendar        re-edit event   Re-Edit Event 
    14057 en      calendar        read a list of entries. Read a list of entries. 
    14058 en      calendar        read a single entry by passing the id and fieldlist.    Read a single entry by passing the id and fieldlist. 
    14059 en      calendar        read this list of methods.      Read this list of methods. 
    14060 en      calendar        receive email updates   Receive email updates 
    14061 en      calendar        receive extra information in event mails        Receive extra information in event mails 
    14062 en      calendar        receive summary of appointments Receive summary of appointments 
    14063 en      calendar        recurring event recurring event 
    14064 en      calendar        refresh Refresh 
    14065 en      calendar        reinstate       Reinstate 
    14066 en      calendar        rejected        Rejected 
    14067 en      expressoMail1_2 big     Big 
    14068 en      expressoMail1_2 bold    Bold 
    14069 en      expressoMail1_2 to:     To:  
    14070 en      expressoMail1_2 to      TO 
    14071 en      expressoMail1_2 tools   Tools 
    14072 en      expressoMail1_2 trash   Trash 
    14073 pt-br   admin   add a new account.      Adicionar uma conta. nova 
    1407413866pt-br   admin   %1 - %2 of %3 user accounts     %1 - %2 de %3 contas de usuários 
    1407513867pt-br   admin   %1 - %2 of %3 user groups       %1 - %2 de %3 grupos de usuários 
     
    1408913881pt-br   admin   add a group     adicionar um grupo 
    1409013882pt-br   admin   add multiple categories?        Tem certeza que deseja adicionar múltiplas categorias? 
    14091 pt-br   admin   80 (http)       80 (http) 
     13883pt-br   admin   add a new account.      Adicionar uma conta. nova 
    1409213884pt-br   admin   add application Adicionar um aplicativo 
    1409313885pt-br   admin   add a subcategory       adicionar uma subcategoria 
     
    1419113983pt-br   admin   default user password   Senha padrão do usuário 
    1419213984pt-br   admin   default user quota      Cota padrão do usuário 
     13985pt-br   admin   default shared account quota    Cota padrão para contas compartilhadas 
    1419313986pt-br   admin   deinstall crontab       Desinstalar crontab 
    1419413987pt-br   admin   delete account  Apagar conta 
     
    1423914032pt-br   admin   edit main screen message        Editar mensagem da tela inicial 
    1424014033pt-br   admin   edit login help message Editar Ajuda do Login 
    14241 en      htmlarea        path    Path 
    1424214034pt-br   admin   edit peer server        Editar servidor Parceiro 
    1424314035pt-br   admin   edit table format       Editar formato de tabela 
     
    1430414096pt-br   admin   hide php information    Esconder informações de PHP 
    1430514097pt-br   admin   home directory  Diretório de instalação 
    14306 en      workflow        monitors        Monitors 
    1430714098pt-br   admin   host information        Informações do servidor 
    1430814099pt-br   admin   hour<br>(0-23)  Hora<br>(0-23) 
     
    1451014301pt-br   admin   use organization prefix on account creation     Usar prefixo de organização nas criações de contas 
    1451114302pt-br   admin   let it blank to generate the logon script with user login       Deixe em branco para gerar o script de logon com o login do usuário 
    14512 pt-br   admin   this server uses sending control list by ppolicy        Este servidor utiliza "Sending Control List by Ppolicy" 
     14303pt-br   admin   this server uses sending control list by policy Este servidor utiliza Sending Control List by Policy 
    1451314304pt-br   admin   use pure html compliant code (not fully working yet)    Usar código HTML puro (não funciona totalmente ainda) 
    1451414305pt-br   admin   user accounts   Contas de usuários 
     
    1459014381pt-br   admin   certificate added to    Adicionado certificado para 
    1459114382pt-br   admin   file updated and save   Arquivo atualizado e salvo 
    14592 pt-br   common  account has been created        A conta foi criada 
    1459314383pt-br   admin   failure on save file (cd04). the requested operation is not concluded   Falhou ao salvar arquivo (CD04). Nao foi concluida a operacao solicitada' 
    1459414384pt-br   admin   failure on save file (cd03). the requested operation is not concluded   Falhou ao salvar arquivo (CD03). Nao foi concluida a operacao solicitada 
     
    1462214412pt-br   admin   there are users with an quantity greater than of markers. respect the minimum number indicated. Existem usuários com uma quantidade superior de marcadores. Respeito o número mínimo indicado. 
    1462314413pt-br   admin   minimum number of labels allowed        Número mínimo de marcadores permitido 
     14414pt-br   admin   identifier of the recipient of a message        Identificador do destinatário de uma mensagem 
     14415pt-br   admin   ldap attribute used to replacement      Atributo LDAP utilizado para substituição 
     14416pt-br   admin   none    Nenhum 
    1462414417pt-br   admin   all levels      Todos os níveis 
    1462514418pt-br   admin   all levels with not recursive search    Todos os níveis, busca no mesmo nível 
     
    1466014453pt-br   admin   00 (disable)    00 (desabilitado) 
    1466114454pt-br   admin   13 (ntp)        13 (ntp) 
     14455pt-br   admin   80 (http)       80 (http) 
    1466214456pt-br   admin   datetime port.<br>if using port 13, please set firewall rules appropriately before submitting this page.<br>(port: 13 / host: 129.6.15.28)      Porta da Data e hora.<br>Quando usar a porta 13, por favor configure os filtros do firewall antes de submeter as alterações.<br>(Porta: 13 / Host: 129.6.15.28) 
    1466314457pt-br   admin   a please wait message is shown when loading the activity form usefull for long tasks    uma mensagem por favor aguarde será mostrada quando o formulário da atividade for carregado. Útil para tarefas de londa duração 
     
    1470914503pt-br   admin   follow referrals        Seguir as referências 
    1471014504pt-br   admin   the activities will be executed using secure connection As atividades serão executadas utilizando conexão segura 
     14505en      common  loginid LoginID 
     14506en      common  logout  Logout 
     14507en      common  low     Low 
    1471114508pt-br   admin   use secure connection   utilizar conexão segura 
    14712 pt-br   common  done    Pronto 
     14509pt-br   common  account has been created        A conta foi criada 
    1471314510pt-br   common  account has been deleted        A conta foi removida 
    1471414511pt-br   common  account has been updated        A conta foi atualizada 
    1471514512pt-br   common  acl rights      Permissões de Acesso 
     14513pt-br   expressoMail1_2 serial number   Numero de serie 
    1471614514pt-br   common  are you sure you want to delete this category ? Você tem certeza que deseja apagar esta categoria? 
    1471714515pt-br   common  block/unblock hosts     Bloq/Desbloquear hosts 
     
    1480214600pt-br   common  auditing        Auditoria 
    1480314601pt-br   common  choice attribute        Escolha o Atributo 
     14602pt-br   expressoMail1_2 the folder was not deleted!     A pasta não foi removida! 
    1480414603pt-br   common  configuration of authentication attribute by organization (ou)  Configurar o atributo de autenticação por Organização (OU) 
    1480514604pt-br   common  content Conteúdo 
     
    1490014699pt-br   common  bouvet island   ILHA BOUVET 
    1490114700pt-br   common  brazil  BRASIL 
     14701en      common  lowest  Lowest 
    1490214702pt-br   common  british indian ocean territory  TERRITÓRIO INGLÊS INDIANO 
    1490314703pt-br   common  brunei darussalam       BRUNEI DARUSSALAM 
     
    1497714777pt-br   common  dominica        DOMINICA 
    1497814778pt-br   common  dominican republic      REPÚBLICA DOMINICANA 
     14779pt-br   common  done    Pronto 
    1497914780pt-br   common  do you also want to delete all subcategories ?  Deseja remover também todas subcategorias ? 
    1498014781pt-br   common  east timor      TIMOR LESTE 
     
    1499614797pt-br   common  end date        Data do término 
    1499714798pt-br   common  end time        Hora do término 
     14799en      common  luxembourg      LUXEMBOURG 
    1499814800pt-br   common  entry has been deleted sucessfully      Entrada removida com sucesso 
    1499914801pt-br   common  entry updated sucessfully       Entrada atualizada com sucesso 
     
    1507214874pt-br   common  high    Alto 
    1507314875pt-br   common  highest Mais alto 
    15074 pt-br   common  nauru   NAURU 
    1507514876pt-br   common  holy see (vatican city state)   VATICANO 
    1507614877pt-br   common  home    Página Inicial 
     
    1509614897pt-br   common  italy   ITÁLIA 
    1509714898pt-br   common  it has been more then %1 days since you changed your password   Já passaram mais de %1 dias desde que você mudou sua senha 
     14899en      common  macau   MACAU 
    1509814900pt-br   common  it is recommended that you run setup to upgrade your tables to the current version      É recomendado que seja executada a Configuração para atualizar as tabelas para a versão atual. 
    1509914901pt-br   common  jamaica JAMAICA 
     
    1517314975pt-br   common  name of the user, eg. "%1"      Nome do usuário, ex. "%1" 
    1517414976pt-br   common  namibia NAMIBIA 
     14977pt-br   common  nauru   NAURU 
     14978pt-br   common  nepal   NEPAL 
     14979pt-br   common  netherlands antilles    ANTILHAS HOLANDESAS 
     14980pt-br   common  netherlands     HOLANDA 
     14981pt-br   common  never   Nunca 
     14982pt-br   common  new caledonia   NOVA CALEDONIA 
     14983pt-br   common  new entry added sucessfully     Entrada adicionada com sucesso 
     14984pt-br   common  new main category       Nova categoria principal 
     14985pt-br   common  new phrase has been added       se ha agregado la nueva frase 
     14986pt-br   common  new value       Novo Valor 
     14987pt-br   common  new zealand     NOVA ZELÂNDIA 
     14988pt-br   common  next    Próximo 
     14989pt-br   common  next page       Próxima página 
     14990pt-br   common  nicaragua       NICARAGUA 
     14991pt-br   common  niger   NIGER 
     14992pt-br   common  nigeria NIGERIA 
     14993pt-br   common  niue    NIUE 
     14994pt-br   common  no      Não 
     14995pt-br   common  no entries found, try again ... Nenhum registro encontrado, tente novamente... 
     14996pt-br   common  no history for this record      Nenhum histórico para este registro 
     14997pt-br   common  none    Nenhum 
     14998pt-br   common  norfolk island  ILHAS NORFOLK 
     14999pt-br   common  normal  Normal 
     15000pt-br   common  northern mariana islands        NORTHERN MARIANA ISLANDS 
     15001pt-br   common  norway  NORUEGA 
     15002pt-br   common  no subject      Sem assunto 
     15003pt-br   common  not assigned    Não atribuído 
     15004pt-br   common  notices Avisos 
     15005pt-br   common  note    Nota 
     15006pt-br   common  notes   Notas 
     15007pt-br   common  notify window   Janela de notificação 
     15008pt-br   common  november        Novembro 
     15009pt-br   common  october Outubro 
     15010pt-br   common  ok      OK 
     15011pt-br   common  old value       Valor antigo 
     15012pt-br   common  oman    OMà
     15013pt-br   common  only private    Apenas particular 
     15014pt-br   common  only yours      somente as suas 
     15015pt-br   common  on mouse over   Passar o mouse 
     15016pt-br   common  on *nix systems please type: %1 Sobre sistemas *nix tipo: %1 
     15017pt-br   common  open notify window      Abrir janela de notificação 
     15018pt-br   common  open popup window       Abrir janela 
     15019pt-br   common  organization    Organização 
     15020pt-br   common  original        Original 
     15021pt-br   common  other   Outro 
     15022pt-br   common  overview        Visão geral 
     15023pt-br   common  owner   Dono 
     15024pt-br   common  page    Página 
     15025pt-br   common  page was generated in %1 seconds        Página gerada em %1 segundos 
     15026pt-br   common  pakistan        PAQUISTÃO 
     15027pt-br   common  palau   PALAU 
     15028pt-br   common  palestinian territory, occupied PALESTINA 
     15029pt-br   common  panama  PANAMÁ 
     15030pt-br   common  papua new guinea        PAPUA NOVA GUINÉ 
     15031pt-br   common  paraguay        PARAGUAI 
     15032pt-br   common  parcel  Parcela 
     15033pt-br   common  parent category Categoria pai 
     15034pt-br   common  password        Senha 
     15035pt-br   common  password could not be changed   Senha não pode ser alterada 
     15036pt-br   common  password has been updated       Senha foi alterada 
     15037pt-br   common  path to user and group files has to be outside of the webservers document-root!!!       O caminho para usuários e grupos deve ser FORA do servidor da extranet.!!! 
     15038pt-br   common  pattern for search in addressbook       Teste padrão para a Busca no Catálogo de Endereços 
     15039pt-br   common  pattern for search in calendar  Teste padrão para a Busca no Calendário 
     15040pt-br   common  pattern for search in projects  Teste padrão para a Busca nos Projetos 
     15041pt-br   common  pause   Pausar 
     15042pt-br   common  permissions to the files/users directory        Permissões do diretório para os arquivos/usuários 
     15043pt-br   common  personal        Pessoal 
     15044pt-br   common  peru    PERU 
     15045pt-br   common  philippines     FILIPINAS 
     15046pt-br   common  phone number    Número de Telefone 
     15047pt-br   common  phpinfo PhpInfo 
     15048pt-br   common  phpwebhostin    Gerenciamento avançado de arquivos 
     15049pt-br   common  pitcairn        PITCAIRN 
     15050pt-br   common  please %1 by hand       %1 pela mão 
     15051pt-br   common  please enter a name     Por favor digite um nome ! 
    1517515052pt-br   common  please run setup to become current      Por favor execute a configuração para atualizar o sistema 
    1517615053pt-br   common  please select   Por favor selecione 
     
    1526115138pt-br   common  somalia SOMALIA 
    1526215139pt-br   common  sorry, there was a problem proccesing your request.     Desculpe, Houve um problema ao processar seu pedido. 
    15263 es-es   common  charset iso-8859-1 
    1526415140pt-br   common  south africa    ÁFRICA DO SUL 
    1526515141pt-br   common  south georgia and the south sandwich islands    SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS 
     
    1535515231pt-br   common  work email      Endereço de e-mail comercial 
    1535615232pt-br   common  written by:     Escrito por: 
     15233pt-br   common  year    Ano 
     15234pt-br   common  yemen   YEMEN 
     15235pt-br   common  yes     Sim 
    1535715236pt-br   common  you are required to change your password during your first login        Você foi solicitado a alterar a sua senha na primeira sessão. 
    1535815237pt-br   common  you are running a newer version of phpgroupware than your database is setup for A sua base de dados está configurada para uma versão mais antiga do aplicativo. 
     
    1540115280pt-br   common  /workflow directory does not exist and could not be created, please ask adminstrator to check the global configuration  O diretório /workflow não existe e não pode ser criado, por favor solicite ao administrador para verificar a configuração global 
    1540215281pt-br   common  actions right options   Opções de Direitos para Ações 
     15282en      common  time zone       Timezone 
    1540315283pt-br   common  auto-release on leaving activity        Liberação automática ao sair da atividade 
    1540415284pt-br   common  base directory does not exist, please ask adminstrator to check the global configuration        Diretório base não existe, por favor solicite ao administrador para verificar a configuração global 
     
    1542115301pt-br   common  running activities options      Opções para atividades em execução 
    1542215302pt-br   common  show activity info zone mostrar zona de informações das atividades 
    15423 es-es   common  june    Junio 
    1542415303pt-br   common  show activity title     mostrar título das atividades 
    1542515304pt-br   common  show instance name      Mostrar nome da instância 
     
    1548615365pt-br   calendar        add or update a single entry by passing the fields.     Adicione ou atualize um evento único preenchendo os campos. 
    1548715366pt-br   calendar        add participants        Adicionar Participantes 
     15367en      calendar        planner Planner 
    1548815368pt-br   calendar        address book    Catálogo de endereços 
    1548915369pt-br   calendar        add to my expresso      Adicionar ao meu Expresso 
     
    1555315433pt-br   calendar        displays your default calendar view on the startpage (page you get when you enter egroupware or click on the homepage icon)?    Indica a visão do calendário na sua página inicial. (será exibida quando você clicar sobre o ícone de Página Inicial) 
    1555415434pt-br   calendar        download        Baixar 
     15435pt-br   expressoMail1_2 the import was executed successfully.   A importação foi executada com sucesso. 
     15436pt-br   expressoMail1_2 contains the phrase     contém a frase 
     15437pt-br   expressoMail1_2 the list has no participant.    Essa lista não possui nenhum participante. 
     15438en      expressoMail1_2 message message 
     15439pt-br   expressoMail1_2 the message has attachment      A mensagem contém anexos 
     15440pt-br   expressoMail1_2 the messages were deleted.      Mensagens removidas. 
     15441pt-br   expressoMail1_2 the messages were moved to folder       Mensagens movidas para pasta  
    1555515442pt-br   calendar        do you want to be notified about new or changed appointments? you be notified about changes you make yourself.<br>you can limit the notifications to certain changes only. each item includes all the notification listed above it. al  Deseja ser notificado sobre compromissos novos ou modificados? Você será notificado sobre as mudanças efetuadas por você mesmo.<br> Você pode limitar essa notificções a certas mudanças apenas. Cada item inclui as notificações listadas sobre o mesmo. Todas as modificções incluem mudança de título, descrição, participantes (menos suas respostas). Se o dono de um evento requisitar qualquer notificação, sempre receberá as respostas dos participantes como aceite ou cancelamentos. 
     15443pt-br   expressoMail1_2 the message was deleted.        Mensagem removida. 
     15444pt-br   expressoMail1_2 the message was moved to %1 folder.     Mensagem movida para pasta %1. 
     15445pt-br   expressoMail1_2 the message was moved to folder Mensagem movida para a pasta  
     15446pt-br   expressoMail1_2 the origin folder and the destination folder are the same.      A pasta de origem e de destino são as mesmas. 
    1555615447pt-br   calendar        do you want to receive a regulary summary of your appointsments via email?<br>the summary is sent to your standard email-address on the morning of that day or on monday for weekly summarys.<br>it is only sent when you have any app  Deseja receber regularmente um resumo de seus compromissos via correio eletrônico?<br>O sumário será enviado para seu endereço eletrônico padrão na manhã de cada dia ou na Segunda-feira para resumos semanais (somente se houverem eventos na semana).<br> 
    1555715448pt-br   calendar        duration        Duração 
     
    1570715598pt-br   calendar        recurring event evento recorrente 
    1570815599pt-br   calendar        recurrent appointments must have a final date   Agendamentos recorrentes precisam de data final da repeticao 
     15600pt-br   expressoMail1_2 the preference "%1" isn't enabled.      A preferência "%1" não foi habilitada. 
    1570915601pt-br   calendar        recurrent appointments with alarms must have a final date       Agendamentos recorrentes com alarme definido precisam de data final da repeticao 
    1571015602pt-br   calendar        re-edit event   Re-Editar evento 
     
    1572215614pt-br   calendar        reset   Limpar 
    1572315615pt-br   calendar        restrict        Restrito 
     15616pt-br   calendar        rule    Regra 
     15617pt-br   calendar        sa      Sa 
     15618pt-br   calendar        sat     Sab 
    1572415619pt-br   calendar        scheduling conflict     Conflito de agendamento 
    1572515620pt-br   calendar        search for      Buscar por 
     
    1577515670pt-br   calendar        this defines the start of your dayview. events before this time, are shown above the dayview.<br>this time is also used as a default starttime for new events.  Isso define o primeiro horário da visão diária. Eventos antes desse horário são mostrados acima do dia.<br>Esse horário também será o horário inicial para novos eventos. 
    1577615671pt-br   calendar        this group that is preselected when you enter the planner. you can change it in the planner anytime you want.   Esse grupo é pré-selecionado ao entrar no organizador. Você poderá modificá-lo a qualquer tempo. 
    15777 pt-br   calendar        you have not entered a title    Você não colocou o título 
    1577815672pt-br   calendar        this is an external event. even if it added to your expresso its can be changed any time at all Este é um evento externo. Mesmo que adicionado ao seu Expresso corre o risco de mudança a qualquer momento. 
    1577915673pt-br   calendar        this is mostly caused by a not or wrongly configured smtp server. notify your administrator.    Esse erro é comumente causado por um servidor SMTP mal configurado. Notifique seu administrador. 
     
    1583115725pt-br   calendar        you can either set a year or a occurence, not both !!!  Você pode especificar uma ocorrência única no ano ou recorrente, não ambos !!! 
    1583215726pt-br   calendar        you can only set a year or a occurence !!!      Você pode selecionar ocorrência única ou recorrente !!! 
     15727en      expressoMail1_2 seen    Seen 
    1583315728pt-br   calendar        you do not have permission to add alarms to this event !!!      Você não possue permissão para adicionar alarmes a esse evento !!! 
    1583415729pt-br   calendar        you do not have permission to delete this alarm !!!     Você não tem permissão para apagar esse alarme !!! 
     
    1583815733pt-br   calendar        you have not entered a\\nbrief description      você não colocou uma descrição 
    1583915734pt-br   calendar        you have not entered a\\nvalid time of day.     você não colocou um horário válido do dia 
     15735pt-br   calendar        you have not entered a title    Você não colocou o título 
    1584015736pt-br   calendar        you have not entered a valid date       Você informou  uma data inválida 
    1584115737pt-br   calendar        you have not entered a valid time of day        você informou uma hora do dia inválida 
     
    1591315809pt-br   contactcenter   contact [full]  Contato [Completo] 
    1591415810pt-br   contactcenter   contact [shared]        Contato [Compartilhado] 
    15915 pt-br   contactcenter   call extension  Efetuar chamada 
    1591615811pt-br   contactcenter   contacting server...    Contactando Servidor... 
    1591715812pt-br   contactcenter   contact [quick add]     Contato [Adição Rápida] 
     
    1599415889pt-br   contactcenter   personal data   Dados Pessoais 
    1599515890pt-br   contactcenter   phone   Telefone 
     15891pt-br   contactcenter   call extension  Efetuar chamada 
    1599615892pt-br   contactcenter   po box  Caixa Postal 
    1599715893pt-br   contactcenter   postal code     CEP 
     
    1601115907pt-br   contactcenter   select the file that contains the contacts to be imported:      Selecione o arquivo que contém os contatos para serem importados 
    1601215908pt-br   contactcenter   select the file type    Selecione o tipo de arquivo 
     15909pt-br   expressoMail1_2 doesn't contain the phrase      não contém a frase 
     15910en      expressoMail1_2 l_seen  Seen 
     15911es-es   common  rename  Renombrar 
     15912pt-br   expressoMail1_2 starting with   começa com 
    1601315913pt-br   contactcenter   select the format type that you want to export your contacts    Selecione o tipo de formatação que você gostaria de usar para exportar os seus contatos 
    1601415914pt-br   contactcenter   select the telephone    Selecione o Telefone 
     
    1604815948pt-br   contactcenter   no      Não 
    1604915949pt-br   contactcenter   multivalued     Multivalorado 
     15950pt-br   expressoMail1_2 ends with       termina com 
    1605015951pt-br   contactcenter   lang_ldap_max_results   Configurar a quantidade máxima de resultados em uma pesquisa no Catálogo Global 
    1605115952pt-br   contactcenter   work_main       Principal trabalho 
     
    1611316014pt-br   emailadmin      select type of smtp server      Selecione o tipo de servidor SMTP 
    1611416015pt-br   emailadmin      sent folder     Pasta das enviadas 
     16016pt-br   expressoMail1_2 receiver        Destinatário 
    1611516017pt-br   emailadmin      sieve server hostname or ip address     Nome ou endereço IP do servidor Sieve 
    1611616018pt-br   emailadmin      sieve server port       Porta do Servidor Sieve 
     
    1614816050pt-br   expressoAdmin1_2        add institutional accounts      Criar contas institucionais 
    1614916051pt-br   expressoAdmin1_2        add manager     Adicionar Gerente 
    16150 es-es   common  tuvalu  TUVALU 
    1615116052pt-br   expressoAdmin1_2        add managers    Adicionar Gerentes 
    1615216053pt-br   expressoAdmin1_2        add owner       Adicionar dono 
     
    1615616057pt-br   expressoAdmin1_2        add sectors     Criar Setor 
    1615716058pt-br   expressoAdmin1_2        add shared accounts     Adicionar contas compartilhadas 
    16158 pt-br   expressoAdmin1_2        add sub sectors Criar Sub-Setore 
     16059pt-br   expressoAdmin1_2        add sub sectors Criar Sub-Setores 
    1615916060pt-br   expressoAdmin1_2        add user        Adicionar Usuário 
    1616016061pt-br   expressoAdmin1_2        add users       Adicionar usuários 
     
    1620116102pt-br   expressoAdmin1_2        context field is empty  Campo contexto está vazio 
    1620216103pt-br   expressoAdmin1_2        contexts        Contextos 
     16104pt-br   expressoAdmin1_2        cotas control disabled  Controle de cotas desabilitado 
    1620316105pt-br   expressoAdmin1_2        corporative information Informações Corporativas 
    1620416106pt-br   expressoAdmin1_2        cpf     CPF 
     
    1621216114pt-br   expressoAdmin1_2        create institutional account    Criar conta institucional 
    1621316115pt-br   expressoAdmin1_2        create organizations    Criar organizações 
     16116es-es   calendar        link    Enlace 
    1621416117pt-br   expressoAdmin1_2        create sector   Criar Setor 
    1621516118pt-br   expressoAdmin1_2        create sectors  Criar setores 
     
    1621716120pt-br   expressoAdmin1_2        creation of shared accounts     Criação de contas compartilhadas 
    1621816121pt-br   expressoAdmin1_2        create user     Criar Usuário 
     16122pt-br   expressoMail1_2 is over than    é maior que 
    1621916123pt-br   expressoAdmin1_2        criation of institutional accounts      Criação de contas institucionais 
    1622016124pt-br   expressoAdmin1_2        default password already registered     Senha padrão já registrada 
     
    1629816202pt-br   expressoAdmin1_2        enable blocking sending email to shared accounts (departments)  Ativar bloqueio de envio de e-mails para Contas Compartilhadas (departamentos) 
    1629916203pt-br   expressoAdmin1_2        error adding application to new manager Erro adicionando aplicação ao novo gerente 
     16204pt-br   expressoAdmin1_2        email address is not valid      Endereço de e-mail não válido 
    1630016205pt-br   expressoAdmin1_2        error on function       Erro na função 
    1630116206pt-br   expressoAdmin1_2        error on insert Erro na inserção 
     
    1630316208pt-br   expressoAdmin1_2        error on updating       Erro na atualização 
    1630416209pt-br   expressoAdmin1_2        error in openldap.      Erro no OpenLDAP. 
     16210pt-br   expressoAdmin1_2        user already belongs to the list        Usuário já pertence a lista  
     16211pt-br   expressoAdmin1_2        external user   Usuário externo  
     16212pt-br   expressoAdmin1_2        external users  Usuários externos  
    1630516213pt-br   expressoAdmin1_2        expire  Expira 
    1630616214pt-br   expressoAdmin1_2        field cpf is invalid    Campo CPF é inválido 
     
    1657116479pt-br   expressoAdmin1_2        you do not have right to list institutional accounts    Você não tem acesso para listar contas institucionais 
    1657216480pt-br   expressoAdmin1_2        you do not have right to list shared accounts   Você não tem acesso para listar contas compartilhadas 
    16573 pt-br   expressoMail1_2 list catalog    Listar Catálogo 
    1657416481pt-br   expressoAdmin1_2        you must type the first and the second name before generate the login   Você deve preencher corretamente o primeiro e o ultimo nome antes de gerar o login 
    1657516482pt-br   expressoAdmin1_2        your user was add/updated in the shared account O seu usuário foi adicionado/alterado na Conta Compartilhada 
    1657616483pt-br   expressoAdmin1_2        your user has the following acl Seu usuario atualmente tem as seguintes permissoes de acesso 
     16484es-es   calendar        modified        Modificado 
    1657716485pt-br   expressoAdmin1_2        use login generator     Usar gerador de login 
    1657816486pt-br   expressoAdmin1_2        login generator disabled        Gerador de logins desabilitado 
     
    1658416492pt-br   expressoAdmin1_2        user login      Login do usuário 
    1658516493pt-br   expressoAdmin1_2        last login      Último acesso 
     16494pt-br   expressoAdmin1_2        user number cota        Cota de usuários 
     16495pt-br   expressoAdmin1_2        disk usage cota Cota de disco 
     16496pt-br   expressoAdmin1_2        user number     Nº de usuários 
     16497pt-br   expressoAdmin1_2        disk usage      Espaço utilizado 
     16498pt-br   expressoAdmin1_2        view cota       Cotas 
     16499pt-br   expressoAdmin1_2        users quota     Cota de Usuários 
     16500pt-br   expressoAdmin1_2        disk quota      Cota em Disco 
    1658616501pt-br   expressoAdmin1_2        exclusion       Exclusão 
    1658716502pt-br   expressoAdmin1_2        creation        Criação 
     
    1664116556pt-br   expressoMail1_2 add user into my im     Adicionar no meu IM 
    1664216557pt-br   expressoMail1_2 after store email in your local computer delete it from server  Depois de guardar e-mail no seu computador local, excluí-lo do servidor 
     16558pt-br   expressoMail1_2 alert message filter by sender  Alertar ao receber mensagens filtradas por remetente 
    1664316559pt-br   expressoMail1_2 all     Todas 
    1664416560pt-br   expressoMail1_2 all messages are successfully unarchived        Mensagens desarquivadas com sucesso 
    1664516561pt-br   expressoMail1_2 also check message against next rule    Checar mensagem contra próxima regra também 
    1664616562pt-br   expressoMail1_2 always cipher message digitally?        Sempre cifrar digitalmente a mensagem? 
    16647 es-es   common  uganda  UGANDA 
    1664816563pt-br   expressoMail1_2 always sign message digitally?  Sempre assinar digitalmente a mensagem? 
     16564pt-br   expressoMail1_2 when user send an email with image in body message, it changes the size Quando o usuário envia um e-mail com a imagem no corpo da mensagem ela muda o tamanho 
    1664916565pt-br   expressoMail1_2 an archiving is in process, but dont worry, expresso will process this messages after the actual archiving      Uma rotina de arquivamento já está sendo executada. Porém, não se preocupe. O expresso tentará arquivar essas mensagens logo em seguida. 
    1665016566pt-br   expressoMail1_2 and     e 
     
    1665716573pt-br   expressoMail1_2 are you sure to delete the filters?     Tem certeza que deseja deletar os filtros? 
    1665816574pt-br   expressoMail1_2 a read confirmation was sent.   Uma confirmação de leitura foi enviada. 
     16575pt-br   expressoMail1_2 read receipt    Confirmação de leitura 
    1665916576pt-br   expressoMail1_2 read receipt: %1        Confirmação de leitura: %1 
    1666016577pt-br   expressoMail1_2 your message: %1        Sua mensagem: %1 
     
    1671216629pt-br   expressoMail1_2 coincident      Coincidente 
    1671316630pt-br   expressoMail1_2 cols    Colunas 
     16631pt-br   expressoMail1_2 confirmation message is not sent        Confirmação de mensagem não enviada 
    1671416632pt-br   expressoMail1_2 config for expressomail1_2      Configurações do expressoMail1_2 
    1671516633pt-br   expressoMail1_2 config for expressomail Configurações para o ExpressoMail 
    16716 pt-br   expressoMail1_2 list    Listagem 
    1671716634pt-br   expressoMail1_2 contact added successfully.     Contato adicionado com sucesso. 
     16635pt-br   expressoMail1_2 continue checking other rules if the criteria is met.   Continuar verificando outras regras caso o critério seja encontrado. 
     16636pt-br   expressoMail1_2 validity        Validade 
     16637pt-br   expressoMail1_2 valid from      Expedido em 
    1671816638pt-br   expressoMail1_2 connection failed with %1 server. try later.    Ocorreu uma falha de comunicação com o servidor de %1. Tente mais tarde. 
     16639pt-br   expressoMail1_2 convert this message into plain text can make parts of it are removed. continue?        Converter esta mensagem para texto sem formatação pode fazer com que partes dela sejam removidas. Deseja continuar? 
    1671916640pt-br   expressoMail1_2 couldn't verify if certificate was revoked.(cd-01)      A lista de certificados revogados não foi encontrada.(CD-01) 
    1672016641pt-br   expressoMail1_2 couldn't verify if certificate was revoked.(cd-02)      Não foi possível verificar se o certificado está revogado.(CD-02) 
     
    1675316674pt-br   expressoMail1_2 do you really want to empty your trash folder?  Você tem certeza que deseja limpar sua lixeira? 
    1675416675pt-br   expressoMail1_2 do you wanna receive an alert for new messages? Você quer receber um alerta para mensagens novas? 
     16676pt-br   expressoMail1_2 wish you receive notifications for: "new messages", "filter criteria", "event alerts"?  Exibir notificações de: "Nova mensagem", "Criterio atendido", "Alerta de evento"? 
    1675516677pt-br   expressoMail1_2 do you want to automatically display the message header?        Você deseja exibir automaticamente o cabecalho da mensagem? 
     16678es-es   workflow        update  actualizar 
    1675616679pt-br   expressoMail1_2 do you want to block this e-mail?       Você gostaria de bloquear este e-mail? 
    1675716680pt-br   expressoMail1_2 do you want to show common name instead of uid? Utilizar nome (CN) ao invés de login (uid) em pastas compartilhadas? 
     
    1676516688pt-br   expressoMail1_2 edit filters    Editar Filtros 
    1676616689pt-br   expressoMail1_2 edit folders    Editar Pastas 
     16690pt-br   expressoMail1_2 edit folder     Editar Pasta 
    1676716691pt-br   expressoMail1_2 labels  Marcadores 
    1676816692pt-br   expressoMail1_2 follow up       Acompanhar 
     
    1677016694pt-br   expressoMail1_2 emails of the account   Emails da conta 
    1677116695pt-br   expressoMail1_2 empty spam folder       Limpar pasta spam 
     16696pt-br   expressoMail1_2 empty spam      Limpar Spam 
    1677216697pt-br   expressoMail1_2 empty trash     Limpar Lixeira 
    1677316698pt-br   expressoMail1_2 enabled Habilitada 
     
    1677616701pt-br   expressoMail1_2 enable quick reply      Responder rápido (com histórico e ao remetente) 
    1677716702pt-br   expressoMail1_2 enable this option if you want to read the next message everytime you delete a message  Habilite esta opção se você quiser ler a mensagem seguinte sempre que você apagar uma mensagem 
    16778 pt-br   expressoMail1_2 hlp_msg_sendlike_acl    Outros usuários poderão ENVIAR mensagens como sendo você 
    1677916703pt-br   expressoMail1_2 enabling this options you will be able to store messages in your local computer Ao ativar esta opção você será capaz de armazenar mensagens no seu computador local 
    1678016704pt-br   expressoMail1_2 end of archive messages Fim do arquivamento de mensagens 
     
    1680116725pt-br   expressoMail1_2 export  Exportar 
    1680216726pt-br   expressoMail1_2 export messages Exportar mensagens 
     16727pt-br   expressoMail1_2 export folder messages  Exportar mensagens da pasta 
    1680316728pt-br   expressoMail1_2 expressomail configuration      Configurações do expressoMail 
    1680416729pt-br   expressoMail1_2 expresso offline        ExpressoMail Offline 
     
    1681216737pt-br   expressoMail1_2 first   Primeira 
    1681316738pt-br   expressoMail1_2 first name      Primeiro Nome 
     16739pt-br   expressoMail1_2 first page      Primeira página 
    1681416740pt-br   expressoMail1_2 flag as important       Marcar como Importante 
    1681516741pt-br   expressoMail1_2 flagged Importante 
     
    1685316779pt-br   expressoMail1_2 hlp_msg_delmov_acl      Outros usuários poderão APAGAR/MOVER suas mensagens 
    1685416780pt-br   expressoMail1_2 hlp_msg_read_acl        Outros usuários poderão LER suas mensagens 
     16781pt-br   expressoMail1_2 hlp_msg_sendlike_acl    Outros usuários poderão ENVIAR mensagens como sendo você 
    1685516782pt-br   expressoMail1_2 hlp_msg_savelike_acl    Outros usuários irão SALVAR as mensagens enviadas como sendo você nesta caixa  
    1685616783pt-br   expressoMail1_2 hours ago       horas atrás 
     
    1686316790pt-br   expressoMail1_2 in all the folders      Em todas as pastas 
    1686416791pt-br   expressoMail1_2 inbox   Caixa de Entrada 
     16792pt-br   expressoMail1_2 outbox  Caixa de Saída 
    1686516793pt-br   expressoMail1_2 include Incluir 
    1686616794pt-br   expressoMail1_2 indent  Tabulação a esquerda 
     
    1691116839pt-br   expressoMail1_2 last    Última 
    1691216840pt-br   expressoMail1_2 last name       Último Nome 
     16841pt-br   expressoMail1_2 last page       Última página 
    1691316842pt-br   expressoMail1_2 less    Menos 
    1691416843pt-br   expressoMail1_2 less than       Menor que 
     
    1691716846pt-br   expressoMail1_2 link    Link 
    1691816847pt-br   expressoMail1_2 list all        Listar Tudo 
    16919 es-es   common  ukraine UKRAINE 
     16848pt-br   expressoMail1_2 list catalog    Listar Catálogo 
     16849pt-br   expressoMail1_2 list    Listagem 
    1692016850pt-br   expressoMail1_2 list of the filters     Lista de filtros 
    1692116851pt-br   expressoMail1_2 loading Carregando 
     
    1694716877pt-br   expressoMail1_2 messages        mensagens 
    1694816878pt-br   expressoMail1_2 messages found in folder:       mensagens encontradas na pasta: 
     16879pt-br   expressoMail1_2 message has attachment  Mensagem tem anexo 
    1694916880pt-br   expressoMail1_2 message signed by:      Mensagem assinada por: 
    1695016881pt-br   expressoMail1_2 messages saved in %1 folder.    Mensagens salvas na pasta %1. 
     
    1697516906pt-br   expressoMail1_2 new rule        Nova Regra 
    1697616907pt-br   expressoMail1_2 next    Próximo 
     16908pt-br   expressoMail1_2 next page       Próxima página 
    1697716909pt-br   expressoMail1_2 next shortcut:control + down    Próximo (Atalho: Ctrl + Para baixo) 
    1697816910pt-br   expressoMail1_2 snickname       Apelido 
    1697916911pt-br   expressoMail1_2 nickname        Apelido 
     16912pt-br   expressoMail1_2 valid until     Valido ate 
    1698016913pt-br   expressoMail1_2 n key (open new message)<br>esc key (close tab)<br>i key (print)<br>e key (forward)<br>r key (reply)<br>delete key (delete the current message)<br>ctrl + up (go to previous message)<br>ctrl + down (go to next message)<br>shift + u  tecla n (Abre nova mensagem)<br>tecla ESC (Fecha aba)<br>tecla i (imprime)<br>tecla e (encaminha)<br>tecla r (responde)<br>tecla DELETE (apaga mensagem atual)<br>Ctrl + pra cima (vai pra mensagem anterior)<br>Ctrl + pra baixo (vai para próxima mensagem)<br>Shift + pra cima ou pra baixo (seleciona várias mensagens)<br>Tecla F9 (procura no catálogo)<br> 
    1698116914pt-br   expressoMail1_2 no data to search       Nenhum dado digitado para pesquisar. 
     
    1699316926pt-br   expressoMail1_2 now     agora 
    1699416927pt-br   expressoMail1_2 number of messages to send:     Número de mensagens à enviar: 
     16928pt-br   expressoMail1_2 notification    Notificação 
     16929pt-br   expressoMail1_2 filter criteria Critério de filtro 
    1699516930pt-br   expressoMail1_2 offline pass    Senha do Offline 
    1699616931pt-br   expressoMail1_2 offline success installed       Offline instalado com sucesso 
     
    1701716952pt-br   expressoMail1_2 portuguese      Português 
    1701816953pt-br   expressoMail1_2 preferences     Preferências 
     16954pt-br   expressoMail1_2 prev page       Página anterior 
    1701916955pt-br   expressoMail1_2 preview message text within a tool-tip box      Pré-visualizar a mensagem em uma caixa tool-tip? 
    1702016956pt-br   expressoMail1_2 preview message text within subject column?     Pré-visualizar a mensagem na coluna Assunto? 
     
    1714817084pt-br   expressoMail1_2 the field \\"%1\\" of the message it contains   O campo \\"%1\\" da mensagem contém 
    1714917085pt-br   expressoMail1_2 the folder %1 was successfully removed  A pasta %1 foi removida com sucesso! 
    17150 pt-br   expressoMail1_2 the folder was not deleted!     A pasta não foi removida! 
    17151 pt-br   expressoMail1_2 the import was executed successfully.   A importação foi executada com sucesso. 
    17152 pt-br   expressoMail1_2 the list has no participant.    Essa lista não possui nenhum participante. 
    17153 pt-br   expressoMail1_2 the message has attachment      A mensagem contém anexos 
    17154 pt-br   expressoMail1_2 the messages were deleted.      Mensagens removidas. 
    17155 pt-br   expressoMail1_2 the messages were moved to folder       Mensagens movidas para pasta  
    17156 pt-br   expressoMail1_2 the message was deleted.        Mensagem removida. 
    17157 pt-br   expressoMail1_2 the message was moved to %1 folder.     Mensagem movida para pasta %1. 
    17158 pt-br   expressoMail1_2 the message was moved to folder Mensagem movida para a pasta  
    17159 pt-br   expressoMail1_2 the origin folder and the destination folder are the same.      A pasta de origem e de destino são as mesmas. 
    17160 pt-br   expressoMail1_2 the preference "%1" isn't enabled.      A preferência "%1" não foi habilitada. 
     17086pt-br   expressoMail1_2 the local folder %1 was successfully removed    A pasta local %1 foi removida com sucesso! 
    1716117087pt-br   expressoMail1_2 there is not %1 folder, expresso is creating it for you... please, repeat your request later.   Pasta %1 inexistente, Expresso criará para você. Contudo por favor repita a operação em seguida. 
    1716217088pt-br   expressoMail1_2 there's an action processing. do you want abort it?     Existe uma ação que ainda está sendo processada. Suspender ação? 
     17089pt-br   expressoMail1_2 the filter is active for alerts O filtro está ativo para alertas 
    1716317090pt-br   expressoMail1_2 the results were found in the global catalog    Ocorrências encontradas no Catálogo Geral 
    1716417091pt-br   expressoMail1_2 the selected folder is empty.   A pasta selecionada está vazia. 
     
    1720917136pt-br   expressoMail1_2 view tips       Ver dicas 
    1721017137pt-br   expressoMail1_2 voided message  Mensagem violada 
     17138pt-br   expressoMail1_2 would you like to send the read receipt?        Deseja enviar a mensagem de confirmação de leitura? 
     17139pt-br   expressoMail1_2 would you like to activate the alert for message attachment?    Exibir confirmação de envio de mensagem quando houver a palavra 'anexo' no corpo do email e não houver anexos? 
    1721117140pt-br   expressoMail1_2 warning: your mailbox is almost full!   Aviso: Sua caixa postal está quase cheia! 
    1721217141pt-br   expressoMail1_2 was succefully removed   foi removida com sucesso 
     
    1721917148pt-br   expressoMail1_2 what is your timezone?  Qual o seu fuso-horário? 
    1722017149pt-br   expressoMail1_2 when delete message, send it automatically to trash folder      Ao excluir um mensagem, mover automaticamente esta mensagem para a pasta lixeira 
    17221 pt-br   expressoMail1_2 when user send an email with image in body message, it changes the size Quando o usuário envia um e-mail com a imagem no corpo da mensagem ela muda o tamanho 
    1722217150pt-br   expressoMail1_2 when you are away from computer it saves automatically the message you are writing      Quando você estiver longe do computador. Isto salva automaticamente a mensagem que está a escrever 
    1722317151pt-br   expressoMail1_2 where should the quick search be performed by default?  Onde a pesquisa rápida deve atuar por padrão? 
     
    1723117159pt-br   expressoMail1_2 with some       com algumas 
    1723217160pt-br   expressoMail1_2 with the following message      Com a seguinte mensagem 
     17161pt-br   expressoMail1_2 would you like to have a read receipt option to read messages?  Deseja apresentar opção de confirmação de leitura ao ler mensagem? 
    1723317162pt-br   expressoMail1_2 would you like to keep archived messages?       Você gostaria de manter as mensagens arquivadas? 
    1723417163pt-br   expressoMail1_2 would you like to use local messages?   Você gostaria de usar mensagens locais? 
     
    1723617165pt-br   expressoMail1_2 write message   Compôr uma mensagem 
    1723717166pt-br   expressoMail1_2 wrote   escreveu 
     17167pt-br   expressoMail1_2 write a message Digite alguma mensagem. 
    1723817168pt-br   expressoMail1_2 yes     Sim 
    1723917169pt-br   expressoMail1_2 yesterday       Ontem 
     
    1725317183pt-br   expressoMail1_2 you must wait while the messages will be exported...    Aguarde enquanto as mensagens serão exportadas... 
    1725417184pt-br   expressoMail1_2 you must wait while the messages will be imported...    Aguarde enquanto as mensagens serão importadas... 
     17185pt-br   expressoMail1_2 you wrote "%1" in your message, but there are no files attached. send it anyway?        Você escreveu "%1" na sua mensagem, mas não há arquivos anexados. Enviar assim mesmo? 
    1725517186pt-br   expressoMail1_2 your mailbox is 100% full! you must free more space or will not receive messages.       Sua caixa postal está 100% cheia! Libere espaço ou não irá receber mensagens. 
    1725617187pt-br   expressoMail1_2 your mailbox is shared with     Sua caixa postal está compartilhada com 
     
    1727917210pt-br   expressoMail1_2 identification  Documento identidade 
    1728017211pt-br   expressoMail1_2 certificate issuer      Expedido por 
    17281 pt-br   expressoMail1_2 validity        Validade 
    17282 pt-br   expressoMail1_2 valid from      Expedido em 
    17283 pt-br   expressoMail1_2 valid until     Valido ate 
    17284 pt-br   expressoMail1_2 serial number   Numero de serie 
    1728517212pt-br   expressoMail1_2 automaticaly create default local folders?      Criar automáticamente pastas locais padrão? 
    1728617213pt-br   expressoMail1_2 enable this option if you want to automaticaly create the inbox, draft, trash and sent folders  Ative essa opção para que as pastas Caixa de entrada, Lixeira, Enviada e Rascunhos sejam criadas automáticamente no arquivamento local. 
     
    1729417221pt-br   expressoMail1_2 send this mail as text plain    Enviar este e-mail como texto simples 
    1729517222pt-br   expressoMail1_2 the text format will be lost    A formatação do texto será perdida 
     17223pt-br   expressoMail1_2 the format of telephone number is invalid       O formato do número de telefone é inválido 
     17224pt-br   expressoMail1_2 telephone number updated with success.  Telefone atualizado com sucesso. 
     17225pt-br   expressoMail1_2 click here to update your telephone     Clique aqui para atualizar seu telefone 
     17226pt-br   expressoMail1_2 update my telephone     Atualizar meu telefone 
     17227pt-br   expressoMail1_2 you can't modify your commercial telephone.     Você não tem permissão para modificar seu Telefone Comercial. 
     17228pt-br   expressoMail1_2 warning for users       Aviso importante aos usuários 
     17229pt-br   expressoMail1_2 text_warning    Caro usuário, <br>Mantenha seu Telefone Comercial sempre atualizado no Expresso. Muitas pessoas consultam o Catálogo do Expresso como se fosse uma lista telefônica. 
     17230pt-br   expressoMail1_2 close this warning      Fechar este aviso 
    1729617231pt-br   expressoMail1_2 warning Atenção 
    1729717232pt-br   expressoMail1_2 send messages with return recipient option by default   Sempre enviar mensagens com solicitação de confirmação de leitura? 
     
    1733017265pt-br   expressoMail1_2 wait a moment, your image is uploading ...      Espere um momento, sua imagem está sendo carregada ...  
    1733117266pt-br   expressoMail1_2 reached maximum tab limit. want to close this tab       Limite máximo de abas foi atingido. Deseja fechar esta aba? 
     17267pt-br   expressoMail1_2 is under than   é menor que 
    1733217268pt-br   expressoMail1_2 it's not possible rename this folder. try other folder name     Erro ao renomear a pasta. Certifique-se de que não tentou renomea-la com um nome que contém a palavra \\"local_\\" ou que possui algum caractere especial. 
    1733317269pt-br   expressoMail1_2 smtp error: the following recipient addresses failed: %1        Erro de SMTP: Os endereços de destinatário a seguir falharam: %1 
     
    1734017276pt-br   expressoMail1_2 simple text mode        Modo texto simples 
    1734117277pt-br   expressoMail1_2 please enter a parameter to search      Por favor, insira um parâmetro para a busca 
     17278pt-br   expressoMail1_2 parameter must be at least      O parâmetro de busca deve ter ao menos 
    1734217279pt-br   expressoMail1_2 error saving your message over quota.   Mensagem não salva pois excede a quota. 
    1734317280pt-br   expressoMail1_2 no mail Sem e-mail 
     
    1738717324pt-br   expressoMail1_2 color   Cor 
    1738817325pt-br   expressoMail1_2 apply   Aplicar 
    17389 pt-br   expressoMail1_2 done    Concluído 
     17326pt-br   expressoMail1_2 done    Concluídas  
    1739017327pt-br   expressoMail1_2 this event does not exist on its agenda Este evento não existe em sua agenda. 
    1739117328pt-br   expressoMail1_2 answer  Responder 
     
    1740717344pt-br   expressoMail1_2 sender  Remetente 
    1740817345pt-br   expressoMail1_2 is equal to     é igual à 
    17409 pt-br   expressoMail1_2 contains the phrase     contém a frase 
    17410 pt-br   expressoMail1_2 doesn't contain the phrase      não contém a frase 
    17411 pt-br   expressoMail1_2 starting with   começa com 
    17412 pt-br   expressoMail1_2 ends with       termina com 
    17413 pt-br   expressoMail1_2 receiver        Destinatário 
    17414 pt-br   expressoMail1_2 is over than    é maior que 
    17415 pt-br   expressoMail1_2 is under than   é menor que 
    1741617346pt-br   expressoMail1_2 attend all the criteria Atender a todos os critérios 
    1741717347pt-br   expressoMail1_2 attend any of the criteria      Atender a qualquer um dos critérios 
     
    1745117381pt-br   expressoMail1_2  will be removed. this action cannot be undone. want to continue?        serão removidas. Essa ação não poderá ser desfeita. Deseja continuar? 
    1745217382pt-br   expressoMail1_2 message size greateruler than allowed (default rule)     Tamanho da mensagem excede o limite de tamanho configurado pelo administrador 
     17383pt-br   expressoMail1_2 you have an archived message:   Você tem uma mensagem arquivada: 
     17384pt-br   expressoMail1_2 you have %1 messages archived:  Você tem %1 mensagens arquivadas: 
     17385pt-br   expressoMail1_2 filter by sender        Filtro por Remetente 
     17386pt-br   expressoMail1_2 follow ups      Sinalizadas 
     17387pt-br   expressoMail1_2 if more than one criterion for the filter, the "meeting all the criteria" must be selected      Se houver mais que um critério para o filtro, a opção "Atender a todos os critérios" deve estar selecionada 
     17388pt-br   expressoMail1_2 the filter should be set as a criteria "sender" and action "archive folder"     O filtro deve ter como critério definido "Remetente" e ação "Arquivar na pasta" 
     17389pt-br   expressoMail1_2 filter with alert       Filtro com alerta 
     17390pt-br   expressoMail1_2 group contacts  Contatos do grupo 
     17391pt-br   expressoMail1_2 remove recipient        Remover destinatário 
     17392pt-br   expressoMail1_2 quick search of messages        Busca rápida de mensagens 
     17393pt-br   expressoMail1_2 search messages of ...  Busca mensagens de ... 
     17394pt-br   expressoMail1_2 telephone       Telefone 
     17395pt-br   expressoMail1_2 and more %1 contact     E mais %1 contato 
     17396pt-br   expressoMail1_2 impossible editing this contact, but it's possible to remove it Impossível editar este contato, mas é possível removê-lo 
     17397pt-br   expressoMail1_2 the contact was moved from recent contacts to personal contacts successful.     O Contato foi movido dos contatos recentes para os contatos pessoais com sucesso. 
     17398pt-br   expressoMail1_2 permission denied       Permissão negada 
     17399pt-br   expressoMail1_2 permission denied to folder "%1".       Permissão negada para pasta "%1". 
     17400pt-br   expressoMail1_2 success Concluído 
     17401pt-br   expressoMail1_2 you can not remove the message with the preference 'send to trash' enabled. there is no permission to move messages to the trash folder.        Não é possível remover a mensagem com a preferencia 'Enviar para lixeira' ativada. Não existe permissão para mover mensagens para a pasta lixeira. 
     17402pt-br   expressoMail1_2 one of his messages can not be marked as read, because it contains a read confirmation. Uma de suas mensagens não pode ser marcada como lida, pois contém uma confirmação de leitura. 
     17403pt-br   expressoMail1_2  of its messages could not be marked as read, because it contains a read confirmation.   de suas mensagens não puderam ser marcadas como lida, pois contém uma confirmação de leitura. 
     17404pt-br   expressoMail1_2 cant share with yourself.       Não é possível compartilhar com você mesmo. 
     17405pt-br   expressoMail1_2 moving message %1 of %2 Movendo mensagem %1 de %2 
     17406pt-br   expressoMail1_2 all done. message(s) moved successfully Concluído. Mensagem(ns) movida(s) com sucesso. 
     17407pt-br   expressoMail1_2 starting to move messages       Iniciando a movimentação de mensagens 
     17408pt-br   expressoMail1_2 mailarchiver does not seems to be running or installed at this workstation, local messages are disabled. check it out!  O MailArchiver não parece estar rodando ou instalado nesta estação de trabalho, as mensagens locais estão desativadas. Verifique! 
     17409pt-br   expressoMail1_2 starting to unarchive messages  Iniciando o desarquivamento de mensagens 
     17410pt-br   expressoMail1_2 messages successfully unarchived        Mensagens desarquivadas com sucesso 
     17411pt-br   expressoMail1_2 all done. end of archive messages operation     Concluído. Operação de arquivamento encerrada 
     17412pt-br   expressoMail1_2 no messages were unarchived     Nenhuma mensagem foi desarquivada 
     17413pt-br   expressoMail1_2 some messages weren't successfully unarchived   Algumas mensagens não puderam ser desarquivadas 
     17414pt-br   expressoMail1_2 coudn't unarchive message       Não foi possível desarquivar mensagem 
     17415pt-br   expressoMail1_2 message successfully unarchived Mensagem desarquivada com sucesso 
     17416pt-br   expressoMail1_2 unarchiving message %1 of %2    Desarquivando mensagem %1 de %2 
     17417pt-br   expressoMail1_2 message %1 of %2 successfully archived  Mensagem %1 de %2 arquivada com sucesso 
     17418pt-br   expressoMail1_2 sorry, but mail archiver does not seems to be running or installed at this workstation. by now, we are turning off local messages!      Desculpe, mas o Mail Archiver não parece estar rodando ou instalado nesta estação de trabalho. De momento, estamos desativando as mensagens locais! 
     17419pt-br   expressoMail1_2 sorry, but mail archiver still seems to be sleeping. check out your system services!    Desculpe, mas o Mail Archiver parece continuar offline. Verifique os serviços do seu sistema! 
     17420pt-br   expressoMail1_2 trying to communicate with mail archiver...     Tentando comunicação com o Mail Archiver... 
     17421pt-br   expressoMail1_2 wait: attempt %1 from %2...     Aguarde: tentativa %1 de %2... 
     17422pt-br   expressoMail1_2 sorry, but you need to reload this web page. click at reload page at web browsing top navigation        Desculpe, mas você precisa recarregar esta página. Clique em recarregar na janela do seu navegador. 
     17423pt-br   expressoMail1_2 there is something wrong with mailarchiver environment. contact you support     Há algum problema com o ambiente do MailArchiver. Contate seu suporte 
     17424pt-br   expressoMail1_2 mail archiver is not responding. there is some communicating issue hang it up. some services may not work properly. check it out!       O Mail Archiver não está respondendo. Há algum problema de comunicação. Alguns serviços podem não funcionar corretamente. Verifique! 
     17425pt-br   expressoMail1_2 archive operation error: getting online message flags fails. achievement will not be done       O arquivamento falhou: não foi possível obter os marcadores da mensagem. O arquivamento não será realizado 
     17426pt-br   expressoMail1_2 unarchive error Erro ao desarquivar 
     17427pt-br   expressoMail1_2 messages marked as \\"%1\\"     Mensagens marcadas como \\"%1\\" 
     17428pt-br   expressoMail1_2 mailarchiver search operation fails     A operação de pesquisa do MailArchiver falhou 
     17429pt-br   expressoMail1_2 mailarchiver user login fail    Login do MailArchiver falhou 
     17430pt-br   expressoMail1_2 mailarchiver user logged out    Usuário desconectado do MailArchiver 
    1745317431pt-br   expressoMail1_1 it's not possible remove this folder, because it is being used in the moment!   Não é possível remover esta pasta, pois estão em uso no momento! 
    1745417432pt-br   instant_messenger       user connected  Está on-line 
     
    1753717515pt-br   preferences     the default application will be started when you enter phpgroupware or click on the homepage icon.<br>you can also have more than one application showing up on the homepage, if you don't choose a specific application here (has to   A aplicação predeterminada se mostrará ao iniciar a sesão no eGroupWare ou clicar no icone da página de inicio.<br> Também pode ter mais de uma aplicação na página inicial, se não escolher uma aplicação específica aquí, configurándo-a nas suas preferencias de cada aplicação.  
    1753817516pt-br   preferences     theme (colors/fonts) selection  Seleção de tema (cores/fontes) 
     17517pt-br   filemanager     select a folder Selecione uma pasta 
     17518pt-br   filemanager     no file(s) to send      Sem arquivo(s) para enviar 
    1753917519pt-br   preferences     the selectbox shows all available users (can be very slow on big installs with many users). the popup can search users by name or group.        A caixa de seleção mostra todos os usuários disponíveis (poderá causar lentidão em instalações com muitos usuários). Pela janela instantânea, é possível pesquisar usuários por nome ou grupo. 
    1754017520pt-br   preferences     the two passwords are not the same      As duas senhas não são iguais 
     
    1760017580pt-br   filemanager     could not delete %1     Não foi possível remover %1 
    1760117581pt-br   filemanager     could not move %1 file(s)       Não foi possível mover %1 arquivo(s) 
    17602 pt-br   filemanager     select a folder Selecione uma pasta 
    1760317582pt-br   filemanager     could not move file because no destination directory is given   Não foi possível mover o arquivo porque não se definiu um diretório de destino 
    1760417583pt-br   filemanager     could not rename %1 to %2       Não foi possível renomear %1 para %2 
     
    1764217621pt-br   filemanager     disposition of pdf output       Disposição do texto no pdf 
    1764317622pt-br   filemanager     type of pdf paper       Tipo de papel ao exportar 
    17644 pt-br   filemanager     search users    Pesquisar Usuários 
    1764517623pt-br   filemanager     default number of upload fields to show Padrão para o número de campos de envio de arquivos a exibir 
    1764617624pt-br   filemanager     deleted %1      Removido %1 
     
    1768817666pt-br   filemanager     move to:        Mover para: 
    1768917667pt-br   filemanager     more files      Mais arquivos 
    17690 pt-br   filemanager     no file(s) to send      Sem arquivo(s) para enviar 
    1769117668pt-br   filemanager     no permission to delete the folder %1   Sem permissão para excluir a pasta %1 
    1769217669pt-br   filemanager     notify email    Notificar os e-mails 
     
    1772717704pt-br   filemanager     send email      Enviar email 
    1772817705pt-br   filemanager     search folders  Pesquisar Pastas 
     17706pt-br   filemanager     search users    Pesquisar Usuários 
    1772917707pt-br   filemanager     show    Exibir 
    1773017708pt-br   filemanager     show .. Exibir .. 
     
    1777417752pt-br   filemanager     it is necessary to inform the user that will receive email notification É necessário informar o email do usuário que receberá a notificação 
    1777517753pt-br   filemanager     it is necessary to inform the user that sends mail file É necessário informar o email do usuário que envia o arquivo 
     17754pt-br   jabberit_messenger      normal  Normal 
     17755pt-br   jabberit_messenger      none result was found.  Nenhum resultado foi encontrado. 
     17756pt-br   jabberit_messenger      others expressos        Outros Expressos 
    1777617757pt-br   filemanager     please, type a strong password (suggestion: at least 8 characters, letters and numbers) or leave it empty to archive only       Por favor, digite uma senha segura (sugestão: pelo menos 8 caracteres com letras e números) ou deixe o campo vazio para somente arquivar 
    1777717758pt-br   filemanager     please, retype your password    Por favor, redigite sua senha 
     
    1784717828pt-br   jabberit_messenger      no      Não 
    1784817829pt-br   jabberit_messenger      not auth        Não Autorizado 
    17849 pt-br   jabberit_messenger      normal  Normal 
    17850 pt-br   jabberit_messenger      none result was found.  Nenhum resultado foi encontrado. 
    17851 pt-br   jabberit_messenger      others expressos        Outros Expressos 
     17830pt-br   mobile  schedule        Agendar 
    1785217831pt-br   jabberit_messenger      organization unit       Selecione uma Organização 
    1785317832pt-br   jabberit_messenger      organization    Organização 
     
    1787717856pt-br   jabberit_messenger      status  Status 
    1787817857pt-br   jabberit_messenger      status of the transference      Status da Transferência 
    17879 pt-br   listAdmin       hour    Hora 
    1788017858pt-br   jabberit_messenger      the module is not loaded        O módulo não está carregado 
    1788117859pt-br   jabberit_messenger      this user is part of a small group!     Este usuário faz parte de um grupo restrito! 
     
    1796517943pt-br   listAdmin       do you realy want delete this email list?       Você realmente quer DELETAR esta Lista de E-mail? 
    1796617944pt-br   listAdmin       manager login   Login do Gerente 
     17945pt-br   listAdmin       hour    Hora 
    1796717946pt-br   listAdmin       contexto        Contexto 
    1796817947pt-br   listAdmin       manager lid     Login do Gerente 
     
    1813418113pt-br   mobile  start date/time Data/Hora Início 
    1813518114pt-br   mobile  end date/time   Data/Hora Término 
    18136 pt-br   mobile  schedule        Agendar 
    1813718115pt-br   mobile  continue scheduling     Continuar o agendamento 
    1813818116pt-br   mobile  already_addeds: Já adicionados: 
     
    1833418312pt-br   login   you have been successfully logged out   Você foi desconectado com sucesso 
    1833518313pt-br   login   your session could not be verified.     Sua sessão expirou 
     18314pt-br   reports activated       Ativado 
     18315pt-br   reports date    Data 
     18316pt-br   reports without e-mail  Sem E-mail 
     18317pt-br   reports report of shared accounts of the organization   Relatório das contas compartilhadas da Organização 
     18318pt-br   reports report shared accounts by organization  Relatório de contas compartilhadas por Organização 
     18319pt-br   reports report generated by expresso reports    Relatório gerado pelo Expresso Reports 
     18320pt-br   reports report institutional account organization       Relatório de contas institucionais por Organização 
     18321pt-br   reports report of institutional accounts of the organization    Relatório de contas institucionais da Organização 
     18322pt-br   reports report institutional accounts by organization   Relatório de contas institucionais por Organização 
    1833618323pt-br   reports uidnumber       UID 
    1833718324pt-br   reports user login      Login do usuário 
     
    1836118348pt-br   reports reports Relatórios 
    1836218349pt-br   reports report organization     Relatório de usuários por Organização 
     18350pt-br   reports report share account organization       Relatório de contas compartilhadas por Organização 
    1836318351pt-br   reports report cota organization        Relatório de cotas por Organização 
    1836418352pt-br   reports report maillists organization   Relatório de lista de emails por Organização 
     
    1853118519pt-br   workflow        couldn't add transition Impossível adicionar transição 
    1853218520pt-br   workflow        create  criar 
     18521pt-br   workflow        created Criado 
     18522pt-br   workflow        date:   data: 
    1853318523pt-br   workflow        default next user       Próximo usuário padrão 
    1853418524pt-br   workflow        default owner   Proprietário padrão 
     
    1858018570pt-br   workflow        failure falha 
    1858118571pt-br   workflow        fatal error: nextactivity does not match any candidate in autorouting switch activity   Erro fatal: nextActivity não confere com qualquer candidato na atividade switch de autoroteamento 
    18582 pt-br   workflow        pre-agent %1 code is not avaible        código do pré-agente %1 não está disponível 
     18572pt-br   workflow        list of processes       Lista de processos 
    1858318573pt-br   workflow        fatal error: non-deterministic decision for autorouting activity        Erro fatal: decisão indeterminada para atividade de autoroteamento 
    1858418574pt-br   workflow        fatal error: setting next activity to an unexisting activity    Erro fatal: próxima atividade definida para uma atividade que não existe 
     
    1864418634pt-br   workflow        list of all activities with, for each,  counters of instances by status lista de todas as atividade, com contadores de instâncias, por estado, para cada uma 
    1864518635pt-br   workflow        list of all history items made by instances while they travel in the workflow with information about duration and date  lista de todos os ítens históricos gerados pelas instâncias, com informação sobre duração e data, enquanto trafegaram pelo workflow 
    18646 pt-br   workflow        pre-shared code is not avaible  código pré-compartilhado não está disponível 
    1864718636pt-br   workflow        list of all instances with info about current status and activities and link to administration of theses instances      lista de todas as instâncias, com informação sobre o estado corrente e atividades, e um link para administrar estas instâncias 
    1864818637pt-br   workflow        list of instances       Lista de instâncias 
    1864918638pt-br   workflow        list of mappings        Lista de mapeamentos 
    1865018639pt-br   workflow        list of monitors        Lista de monitores 
    18651 pt-br   workflow        list of processes       Lista de processos 
    1865218640pt-br   workflow        list of processes (%1)  Lista de processos (%1) 
    1865318641pt-br   workflow        list of processes with status and validity and, for each, counters of instances by status       lista de processos com estado e validade e, para cada um deles, contadores de instâncias por estado 
     
    1871718705pt-br   workflow        pr.     Pr. 
    1871818706pt-br   workflow        pre-activity %1 code is not avaible     código da pré-atividade %1 não está disponível 
     18707pt-br   workflow        pre-agent %1 code is not avaible        código do pré-agente %1 não está disponível 
     18708pt-br   workflow        pre-shared code is not avaible  código pré-compartilhado não está disponível 
    1871918709pt-br   workflow        printer friendly        Versão para impressão 
    1872018710pt-br   workflow        priority level: Nível de prioridade: 
     
    1872518715pt-br   workflow        process %d has been activated   Processo %d foi ativado 
    1872618716pt-br   workflow        process %d has been deactivated Processo %d foi desativado 
     18717pt-br   workflow        send an email   Enviar um email 
    1872718718pt-br   workflow        process %s %s already exists, the import process was aborted    Processo %s %s já existe, o processo de importação foi abortado 
    1872818719pt-br   workflow        process %s %s imported  Processo %s %s importado 
     
    1880018791pt-br   workflow        send after interactive activity is completed    envio ao final da atividade interativa foi completado 
    1880118792pt-br   workflow        send all to     Enviar tudo para 
    18802 pt-br   workflow        send an email   Enviar um email 
    1880318793pt-br   workflow        send instance   enviar instância 
    1880418794pt-br   workflow        send this instance to the next activity Enviar esta instância para a próxima atividade 
     
    1885418844pt-br   workflow        there are no config value defined       Não existe valor de configuração definido 
    1885518845pt-br   workflow        there are no instances available        Não existem instâncias disponíveis 
    18856 en      admin   crontab only (recomended)       crontab only (recomended) 
    1885718846pt-br   workflow        there are no mappings defined for this process  Não existem mapeamentos definidos para este processo 
    1885818847pt-br   workflow        there are no process available  Não existe processo disponível 
     
    1892018909pt-br   workflow        view workitem   Visualizar Workitem 
    1892118910pt-br   workflow        view options    Opções de Visualização 
    18922 en      admin   data    Data 
    1892318911pt-br   workflow        warning this filter override all others filters aviso: este filtro sobrescreve todos os outros filtros 
    1892418912pt-br   workflow        warning: by using this button you will definitively remove all aborted instances and their history (workitems) for the selected process.        aviso: usando este botão, você irá remover definitivamente todas as instâncias abortadas E seus históricos (workitems), para os processos selecionados. 
     
    1898018968en      admin   (default no, leave it off if you dont use it)   (default No, leave it off if you dont use it) 
    1898118969en      admin   (stored password will not be shown here)        (Stored password will not be shown here) 
    18982 en      admin   day     Day 
    18983 en      admin   day of week<br>(0-6, 0=sun)     Day of week<br>(0-6, 0=Sun) 
    18984 en      admin   default Default 
    1898518970en      admin   (to install new applications use<br><a href="setup/" target="setup">setup</a> [manage applications] !!!)        (To install new applications use<br><a href="setup/" target="setup">Setup</a> [Manage Applications] !!!) 
    1898618971en      admin   accesslog and bruteforce defense        AccessLog and BruteForce defense 
     
    1901218997en      admin   administration  Administration 
    1901318998en      admin   admins  Admins 
     18999en      admin   select group managers   Select Group Managers 
    1901419000en      admin   how many days the password should be kept(empty to disable this) ?      How many days the password should be kept(empty to disable this) ? 
    1901519001en      admin   after how many unsuccessful attempts to login, an account should be blocked (default 3) ?       After how many unsuccessful attempts to login, an account should be blocked (default 3) ? 
     
    1905919045en      admin   country selection       Country Selection 
    1906019046en      admin   create group    Create Group 
    19061 en      common  contacts        Contacts 
     19047en      admin   crontab only (recomended)       crontab only (recomended) 
     19048en      admin   data    Data 
     19049en      admin   day     Day 
     19050en      admin   day of week<br>(0-6, 0=sun)     Day of week<br>(0-6, 0=Sun) 
     19051en      admin   default Default 
    1906219052en      admin   default file system space per user      Default file system space per user 
    1906319053en      admin   default file system space per user/group ?      Default file system space per user/group ? 
     
    1908819078en      admin   deny access to user accounts    Deny access to user accounts 
    1908919079en      admin   deny all users access to grant other users access to their entries ?    Deny all users access to grant other users access to their entries ? 
     19080en      admin   command for unmark spam Command for unmark spam 
    1909019081en      admin   description can not exceed 255 characters in length !   Description can not exceed 255 characters in length ! 
    1909119082en      admin   disable "auto completion" of the login form     Disable "auto completion" of the login form 
     
    1913019121en      admin   enter the title for your site   Enter the title for your site 
    1913119122en      admin   enter the title of your logo    Enter the title of your logo 
    19132 es-es   contactcenter   empty   Vacío 
    1913319123en      admin   enter the url or filename (in phpgwapi/templates/default/images) of your logo   Enter the URL or filename (in phpgwapi/templates/default/images) of your logo 
    1913419124en      admin   enter the url where your logo should link to    Enter the url where your logo should link to 
     
    1915919149en      admin   hour<br>(0-23)  Hour<br>(0-23) 
    1916019150en      admin   how many days should entries stay in the access log, before they get deleted (default 90) ?     How many days should entries stay in the access log, before they get deleted (default 90) ? 
     19151en      admin   select permissions this group will have Select permissions this group will have 
    1916119152en      admin   how many minutes should an account or ip be blocked (default 30) ?      How many minutes should an account or IP be blocked (default 30) ? 
    1916219153en      admin   icon    Icon 
     
    1921119202en      admin   next run        Next run 
    1921219203en      admin   no algorithms available no algorithms available 
    19213 es-es   contactcenter   sex     Sexo 
    1921419204en      admin   no jobs in the database !!!     No jobs in the database !!! 
    1921519205en      admin   no login history exists for this user   No login history exists for this user 
     
    1925219242en      admin   search peer servers     Search peer servers 
    1925319243en      admin   security        Security 
    19254 en      admin   select group managers   Select Group Managers 
    19255 en      admin   select permissions this group will have Select permissions this group will have 
    1925619244en      admin   select the parent category. if this is a main category select no category       Select the parent category. If this is a main category select NO CATEGORY 
    1925719245en      admin   select users for inclusion      Select users for inclusion 
     
    1929119279en      admin   that loginid has already been taken     That loginid has already been taken 
    1929219280en      admin   that name has been used already That name has been used already 
    19293 en      common  found %1 entries        Found %1 Entrie(s) 
    1929419281en      admin   that server name has been used already !        That server name has been used already ! 
    1929519282en      admin   the api is current      The API is current 
     
    1935819345en      admin   file to execution log of get crls       File to execution log of get CRLs revogados 
    1935919346en      admin   back    Back 
    19360 en      common  go      Go 
    1936119347en      admin   administration data of ca\\'s and crl\\'s not found     Administration data of CA\\'s and CRL\\'s not found 
    1936219348en      admin   crls use is disable     CRLs use is disable 
     
    1941119397en      admin   comma separated Comma separated 
    1941219398en      admin   command for spam        Command for spam 
    19413 en      admin   command for unmark spam Command for unmark spam 
    1941419399en      admin   do you want to log the sent messages?   Do you want to log the sent messages? 
    1941519400en      admin   do you want to use the spam filter?     Do you want to use the spam filter? 
     
    1947219457en      admin   group context of the ldap       Group context of the LDAP 
    1947319458en      admin   ldap group context      LDAP group context 
     19459en      common  brazil  BRAZIL 
    1947419460en      admin   follow ldap referrals   Follow LDAP referrals 
    1947519461en      admin   follow referrals        Follow referrals 
     
    1949819484en      common  contact center  Contact Center 
    1949919485en      common  contactcenter   Contact Center 
     19486en      common  contacts        Contacts 
     19487en      common  found %1 entries        Found %1 Entrie(s) 
     19488en      common  go      Go 
    1950019489en      common  search for...   Search for ... 
    1950119490en      common  send mail       Send Mail 
     
    1957419563en      common  botswana        BOTSWANA 
    1957519564en      common  bouvet island   BOUVET ISLAND 
    19576 en      common  brazil  BRAZIL 
    1957719565en      common  british indian ocean territory  BRITISH INDIAN OCEAN TERRITORY 
    1957819566en      common  brunei darussalam       BRUNEI DARUSSALAM 
     
    1970019688en      common  french polynesia        FRENCH POLYNESIA 
    1970119689en      common  french southern territories     FRENCH SOUTHERN TERRITORIES 
     19690en      common  friday  Friday 
     19691en      common  ftp     FTP 
     19692en      common  fullname        Fullname 
     19693en      common  gabon   GABON 
     19694en      common  gambia  GAMBIA 
     19695en      common  general menu    General Menu 
     19696en      common  georgia GEORGIA 
     19697en      common  germany GERMANY 
     19698en      common  ghana   GHANA 
     19699en      common  gibraltar       GIBRALTAR 
     19700en      common  global  Global 
     19701en      common  global public   Global Public 
     19702en      common  grant access    Grant Access 
     19703en      common  greece  GREECE 
     19704en      common  greenland       GREENLAND 
     19705en      common  grenada GRENADA 
     19706en      common  group   Group 
     19707en      common  group access    Group Access 
     19708en      common  group name      group name 
     19709en      common  group public    Group Public 
     19710en      common  groups  Groups 
     19711en      common  groups with permission for %1   Groups with permission for %1 
     19712en      common  groups without permission for %1        Groups without permission for %1 
     19713en      common  guadeloupe      GUADELOUPE 
     19714en      common  guam    GUAM 
     19715en      common  guatemala       GUATEMALA 
     19716en      common  guinea  GUINEA 
     19717en      common  guinea-bissau   GUINEA-BISSAU 
     19718en      common  guyana  GUYANA 
     19719en      common  haiti   HAITI 
     19720en      common  heard island and mcdonald islands       HEARD ISLAND AND MCDONALD ISLANDS 
     19721en      common  help    Help 
     19722en      common  high    High 
     19723en      common  highest Highest 
     19724en      common  holy see (vatican city state)   HOLY SEE (VATICAN CITY STATE) 
     19725en      common  home    Home 
     19726en      common  home email      home email 
     19727en      common  honduras        HONDURAS 
     19728en      common  hong kong       HONG KONG 
     19729en      common  how many icons should be shown in the navbar (top of the page). additional icons go into a kind of pulldown menu, callable by the icon on the far right side of the navbar.     How many icons should be shown in the navbar (top of the page). Additional icons go into a kind of pulldown menu, callable by the icon on the far right side of the navbar. 
     19730en      common  hungary HUNGARY 
     19731en      common  iceland ICELAND 
     19732en      common  india   INDIA 
     19733en      common  indonesia       INDONESIA 
     19734en      common  insert all %1 addresses of the %2 contacts in %3        Insert all %1 addresses of the %2 contacts in %3 
     19735en      common  international   International 
     19736en      common  invalid code    Invalid code 
     19737en      common  invalid ip address      Invalid IP address 
     19738en      common  invalid password        Invalid password 
     19739en      common  iran, islamic republic of       IRAN, ISLAMIC REPUBLIC OF 
     19740en      common  iraq    IRAQ 
     19741en      common  ireland IRELAND 
     19742en      common  israel  ISRAEL 
     19743en      common  it has been more then %1 days since you changed your password   It has been more then %1 days since you changed your password 
     19744en      common  it is recommended that you run setup to upgrade your tables to the current version      It is recommended that you run setup to upgrade your tables to the current version. 
     19745en      common  italic  Italic 
     19746en      common  italy   ITALY 
     19747en      common  jamaica JAMAICA 
     19748en      common  january January 
     19749en      common  japan   JAPAN 
     19750en      common  jordan  JORDAN 
     19751en      common  july    July 
     19752en      common  jun     Jun 
     19753en      common  june    June 
     19754en      common  justify center  Justify Center 
     19755en      common  justify full    Justify Full 
     19756en      common  justify left    Justify Left 
     19757en      common  justify right   Justify Right 
     19758en      common  kazakstan       KAZAKSTAN 
     19759en      common  kenya   KENYA 
     19760en      common  keywords        Keywords 
     19761en      common  kiribati        KIRIBATI 
     19762en      common  korea, democratic peoples republic of   KOREA, DEMOCRATIC PEOPLES REPUBLIC OF 
     19763en      common  korea, republic of      KOREA, REPUBLIC OF 
     19764en      common  kuwait  KUWAIT 
     19765en      common  kyrgyzstan      KYRGYZSTAN 
     19766en      common  language        Language 
     19767en      common  lao peoples democratic republic LAO PEOPLES DEMOCRATIC REPUBLIC 
     19768en      common  last name       Last name 
     19769en      common  last name of the user, eg. "%1" last name of the user, eg. "%1" 
     19770en      common  last page       Last page 
     19771en      common  lastname        Lastname 
     19772en      common  latvia  LATVIA 
     19773en      common  lebanon LEBANON 
     19774en      common  lesotho LESOTHO 
     19775en      common  liberia LIBERIA 
     19776en      common  libyan arab jamahiriya  LIBYAN ARAB JAMAHIRIYA 
     19777en      common  license License 
     19778en      common  liechtenstein   LIECHTENSTEIN 
     19779en      common  list    List 
     19780en      common  list members    List members 
     19781en      common  lithuania       LITHUANIA 
     19782en      common  local   Local 
     19783en      common  login   Login 
     19784en      common  macedonia, the former yugoslav republic of      MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF 
     19785en      common  madagascar      MADAGASCAR 
     19786en      common  mail domain, eg. "%1"   mail domain, eg. "%1" 
     19787en      common  main category   Main category 
     19788en      common  main screen     Main screen 
     19789en      common  maintainer      Maintainer 
     19790en      common  malawi  MALAWI 
     19791en      common  malaysia        MALAYSIA 
     19792en      common  maldives        MALDIVES 
     19793en      common  mali    MALI 
     19794en      common  malta   MALTA 
     19795en      common  march   March 
     19796en      common  marshall islands        MARSHALL ISLANDS 
     19797en      common  martinique      MARTINIQUE 
     19798en      common  mauritania      MAURITANIA 
     19799en      common  mauritius       MAURITIUS 
     19800en      common  max number of icons in navbar   Max number of icons in navbar 
     19801en      common  may     May 
     19802en      common  mayotte MAYOTTE 
     19803en      common  medium  Medium 
     19804en      common  menu    Menu 
     19805en      common  message Message 
     19806en      common  mexico  MEXICO 
     19807en      common  micronesia, federated states of MICRONESIA, FEDERATED STATES OF 
     19808en      common  moldova, republic of    MOLDOVA, REPUBLIC OF 
     19809en      common  monaco  MONACO 
     19810en      common  monday  Monday 
     19811en      common  mongolia        MONGOLIA 
     19812en      common  montserrat      MONTSERRAT 
     19813en      common  morocco MOROCCO 
     19814en      common  mozambique      MOZAMBIQUE 
     19815en      common  myanmar MYANMAR 
     19816en      common  my preferences  My Preferences 
     19817en      common  name    Name 
     19818en      common  name of the user, eg. "%1"      name of the user, eg. "%1" 
     19819en      common  namibia NAMIBIA 
     19820en      common  nauru   NAURU 
     19821en      common  nepal   NEPAL 
     19822en      common  netherlands     NETHERLANDS 
     19823en      common  netherlands antilles    NETHERLANDS ANTILLES 
     19824en      common  never   Never 
     19825en      common  new caledonia   NEW CALEDONIA 
     19826en      common  new entry added sucessfully     New entry added sucessfully 
     19827en      common  new main category       New main category 
     19828en      common  new value       New Value 
     19829en      common  new zealand     NEW ZEALAND 
     19830en      common  next    Next 
     19831en      common  next page       Next page 
     19832en      common  nicaragua       NICARAGUA 
     19833en      common  niger   NIGER 
     19834en      common  nigeria NIGERIA 
     19835en      common  niue    NIUE 
     19836en      common  no      No 
     19837en      common  no entries found, try again ... no entries found, try again ... 
     19838en      common  no history for this record      No history for this record 
     19839en      common  no subject      No Subject 
     19840en      common  none    None 
     19841en      common  norfolk island  NORFOLK ISLAND 
     19842en      common  normal  Normal 
     19843en      common  northern mariana islands        NORTHERN MARIANA ISLANDS 
     19844en      common  norway  NORWAY 
     19845en      common  not assigned    not assigned 
     19846en      common  note    Note 
     19847en      common  notes   Notes 
     19848en      common  notify window   Notify Window 
     19849en      common  november        November 
     19850en      common  october October 
     19851en      common  ok      OK 
     19852en      common  old value       Old Value 
     19853en      common  oman    OMAN 
     19854en      common  on *nix systems please type: %1 On *nix systems please type: %1 
     19855en      common  on mouse over   On Mouse Over 
     19856en      common  only private    only private 
     19857en      common  only yours      only yours 
     19858en      common  open notify window      Open notify window 
     19859en      common  open popup window       Open popup window 
     19860en      common  original        Original 
     19861en      common  other   Other 
     19862en      common  overview        Overview 
     19863en      common  owner   Owner 
     19864en      common  page    Page 
     19865en      common  page was generated in %1 seconds        Page was generated in %1 seconds 
     19866en      common  pakistan        PAKISTAN 
     19867en      common  palau   PALAU 
    1970219868en      common  palestinian territory, occupied PALESTINIAN TERRITORY, OCCUPIED 
    1970319869en      common  panama  PANAMA 
     
    1979419960en      common  show_more_apps  Show More Applications 
    1979519961en      common  showing %1      showing %1 
    19796 es-es   emailadmin      remove  borrar 
     19962en      common  showing %1 - %2 of %3   showing %1 - %2 of %3 
    1979719963en      common  sierra leone    SIERRA LEONE 
    1979819964en      common  singapore       SINGAPORE 
     
    1983520001en      common  thursday        Thursday 
    1983620002en      common  time    Time 
    19837 en      common  time zone       Timezone 
    1983820003en      common  time zone offset        Time zone offset 
    1983920004en      common  title   Title 
     
    1989420059en      common  yemen   YEMEN 
    1989520060en      common  yes     Yes 
    19896 en      calendar        repeat day      Repeat day 
    1989720061en      common  you are required to change your password during your first login        You are required to change your password during your first login 
    1989820062en      common  you are running a newer version of phpgroupware than your database is setup for You are running a newer version of phpGroupWare than your database is setup for. 
     
    2005520219en      calendar        default calendar filter Default calendar filter 
    2005620220en      calendar        default calendar view   Default calendar view 
    20057 en      calendar        repeat end date Repeat End date 
    2005820221en      calendar        default length of newly created events. the length is in minutes, eg. 60 for 1 hour.    Default length of newly created events. The length is in minutes, eg. 60 for 1 hour. 
    2005920222en      calendar        defines the size in minutes of the lines in the day view.       Defines the size in minutes of the lines in the day view. 
     
    2012520288en      calendar        ignore conflict Ignore Conflict 
    2012620289en      calendar        import  Import 
     20290en      calendar        inform  Inform 
     20291en      calendar        interval        Interval 
     20292en      calendar        intervals in day view   Intervals in day view 
     20293en      calendar        intervals per day in planner view       Intervals per day in planner view 
     20294en      calendar        invalid entry id.       Invalid entry id. 
     20295en      calendar        last    last 
     20296en      calendar        lastname of person to notify    Lastname of person to notify 
     20297en      calendar        length shown<br>(emtpy for full length) Length shown<br>(emtpy for full length) 
     20298en      calendar        length<br>(<= 255)      Length<br>(<= 255) 
     20299en      calendar        link    Link 
     20300en      calendar        link to view the event  Link to view the event 
     20301en      calendar        list all categories.    List all categories. 
     20302en      calendar        load [iv]cal    Load [iv]Cal 
     20303en      calendar        location        Location 
     20304en      calendar        make freebusy information availible to not loged in persons?    Make freebusy information availible to not loged in persons? 
     20305en      calendar        matrixview      Matrix View 
     20306en      calendar        minutes minutes 
     20307en      calendar        mo      M 
     20308en      calendar        modified        Modified 
     20309en      calendar        modify list of external participants    Modify List of External Participants 
     20310en      calendar        mon     Mon 
     20311en      calendar        month   Month 
     20312en      calendar        monthly Monthly 
     20313en      calendar        monthly (by date)       Monthly (by date) 
     20314en      calendar        monthly (by day)        Monthly (by day) 
     20315en      calendar        monthview       Month View 
     20316en      calendar        new entry       New Entry 
     20317en      calendar        new name must not exist and not be empty!!!     New name must not exist and not be empty!!! 
     20318en      calendar        no matches found        No matches found 
     20319en      calendar        no response     No Response 
     20320en      calendar        notification messages for added events  Notification messages for added events 
     20321en      calendar        notification messages for canceled events       Notification messages for canceled events 
     20322en      calendar        notification messages for modified events       Notification messages for modified events 
     20323en      calendar        notification messages for your alarms   Notification messages for your alarms 
     20324en      calendar        notification messages for your responses        Notification messages for your responses 
     20325en      calendar        number of intervals per day in planner view     Number of Intervals per Day in Planner View 
     20326en      calendar        number of months        Number of months 
     20327en      calendar        number of records to read (%1)  Number of records to read (%1) 
     20328en      calendar        observance rule Observance Rule 
     20329en      calendar        occurence       Occurence 
     20330en      calendar        old startdate   Old Startdate 
     20331en      calendar        olddate OldDate 
     20332en      calendar        on %1 %2 %3 your meeting request for %4 On %1 %2 %3 your meeting request for %4 
     20333en      calendar        on all changes  on all changes 
     20334en      calendar        on all modification, but responses      on all modification, but responses 
     20335en      calendar        on any time change too  on any time change too 
     20336en      calendar        on invitation / cancelation only        on invitation / cancelation only 
     20337en      calendar        on participant responses too    on participant responses too 
     20338en      calendar        on time change of more than 4 hours too on time change of more than 4 hours too 
     20339en      calendar        open todo's:    Open To Do Items: 
     20340en      calendar        order   Order 
     20341en      calendar        overlap holiday overlap holiday 
     20342en      calendar        participant     Participant 
     20343en      calendar        participants    Participants 
     20344en      calendar        participates    Participates 
     20345en      calendar        password for not loged in users to your freebusy information?   Password for not loged in users to your freebusy information? 
     20346en      calendar        people holiday  people holiday 
     20347en      calendar        permission denied       Permission denied 
     20348en      calendar        planner by category     Planner by category 
     20349en      calendar        planner by user Planner by user 
     20350en      calendar        please confirm,accept,reject or examine changes in the corresponding entry in your calendar     Please confirm, accept, reject or examine changes in the corresponding entry in your calendar 
     20351en      calendar        preselected group for entering the planner      Preselected group for entering the planner 
     20352en      calendar        print calendars in black & white        Print calendars in black & white 
     20353en      calendar        print the mini calendars        Print the mini calendars 
     20354en      calendar        printer friendly        Printer Friendly 
     20355en      calendar        privat  Privat 
     20356en      calendar        private and global public       Private and Global Public 
     20357en      calendar        private and group public        Private and Group Public 
     20358en      calendar        private only    Private Only 
     20359en      calendar        re-edit event   Re-Edit Event 
     20360en      calendar        read a list of entries. Read a list of entries. 
     20361en      calendar        read a single entry by passing the id and fieldlist.    Read a single entry by passing the id and fieldlist. 
     20362en      calendar        read this list of methods.      Read this list of methods. 
     20363en      calendar        receive email updates   Receive email updates 
     20364en      calendar        receive extra information in event mails        Receive extra information in event mails 
     20365en      calendar        receive summary of appointments Receive summary of appointments 
     20366en      calendar        recurring event recurring event 
     20367en      calendar        refresh Refresh 
     20368en      calendar        reinstate       Reinstate 
     20369en      calendar        rejected        Rejected 
     20370en      calendar        repeat day      Repeat day 
     20371en      calendar        repeat end date Repeat End date 
    2012720372en      calendar        repeat type     Repeat type 
    2012820373en      calendar        repeating event information     Repeating Event Information 
     
    2017820423en      calendar        this message is sent for canceled or deleted events.    This message is sent for canceled or deleted events. 
    2017920424en      calendar        this message is sent for modified or moved events.      This message is sent for modified or moved events. 
    20180 en      contactcenter   connection value        Connection Value 
    20181 en      contactcenter   connections     Connetions 
    20182 en      contactcenter   contact [full]  Contact [Full] 
    20183 en      contactcenter   contact [quick add]     Contact [Quick Add] 
    20184 es-es   expressoMail1_2 new     Nuevo 
    2018520425en      calendar        this message is sent to every participant of events you own, who has requested notifcations about new events.<br>you can use certain variables which get substituted with the data of the event. the first line is the subject of the   This message is sent to every participant of events you own, who has requested notifcations about new events.<br>You can use certain variables which get substituted with the data of the event. The first line is the subject of the email. 
    2018620426en      calendar        this message is sent when you accept, tentative accept or reject an event.      This message is sent when you accept, tentatively accept, or reject an event. 
     
    2025620496en      contactcenter   confirm removal of this contact?        Confirm Removal of this Contact? 
    2025720497en      contactcenter   connection name Connection Name 
     20498en      contactcenter   connection value        Connection Value 
     20499en      contactcenter   connections     Connetions 
     20500en      contactcenter   contact [full]  Contact [Full] 
     20501en      contactcenter   contact [quick add]     Contact [Quick Add] 
    2025820502en      contactcenter   contacting server...    Contacting Server... 
    2025920503en      contactcenter   country Country 
     
    2034320587en      emailadmin      default default 
    2034420588en      emailadmin      deliver extern  deliver extern 
    20345 en      expressoMail1_2 before date     Before Date 
    2034620589en      emailadmin      do you really want to delete this profile       Do you really want to delete this Profile 
    2034720590en      emailadmin      domainname      domainname 
     
    2042920672en      expressoMail1_2 back    Back 
    2043020673en      expressoMail1_2 bcc     BCC 
     20674en      expressoMail1_2 before date     Before Date 
     20675en      expressoMail1_2 big     Big 
     20676en      expressoMail1_2 bold    Bold 
    2043120677en      expressoMail1_2 border  Border 
    2043220678en      expressoMail1_2 block sender    Block Sender 
     
    2059420840en      expressoMail1_2 message body    Message body 
    2059520841en      expressoMail1_2 message date:   Message date: 
    20596 en      expressoMail1_2 message message 
    2059720842en      expressoMail1_2 minute ago      minute ago 
    2059820843en      expressoMail1_2 minutes ago     minutes ago 
     
    2068920934en      expressoMail1_2 search user     Search user 
    2069020935en      expressoMail1_2 sector  Sector 
    20691 en      expressoMail1_2 seen    Seen 
    20692 en      expressoMail1_2 l_seen  Seen 
    2069320936en      expressoMail1_2 select a folder:        Select a folder: 
    2069420937en      expressoMail1_2 select a folder!        Select a folder! 
     
    2075420997en      expressoMail1_2 this message is signed, and you can trust.      This message is signed, and you can trust. 
    2075520998en      expressoMail1_2 this message is signed, but it is invalid. you should not trust on it.  This message is signed, but it is invalid. You should not trust on it. 
     20999en      expressoMail1_2 to:     To:  
     21000en      expressoMail1_2 to      TO 
     21001en      expressoMail1_2 tools   Tools 
     21002en      expressoMail1_2 trash   Trash 
    2075621003en      expressoMail1_2 type without spaces, dots or special characters!        Type without spaces, dots or special characters! 
    2075721004en      expressoMail1_2 unanswered/unforwarded  Unanswered/Unforwarded 
     
    2094021187en      filemanager     who     Who 
    2094121188en      filemanager     you do not have access to %1    You do not have access to %1 
     21189en      htmlarea-ContextMenu    _modify link... _Modify Link... 
    2094221190en      filemanager     your home dir did not exist, egroupware created a new one.      Your Home Dir did not exist, eGroupWare created a new one. 
    2094321191en      manual  %1 manual page(s) added or updated      %1 manual page(s) added or updated 
     
    2100521253en      news_admin      write permissions       Write permissions 
    2100621254en      news_admin      read news       Read news 
    21007 en      htmlarea        paste from clipboard    Paste from clipboard 
    2100821255en      jscalendar      (shift-)click or drag to change value   (Shift-)Click or drag to change value 
    2100921256en      jscalendar      - click on any of the time parts to increase it - Click on any of the time parts to increase it 
     
    2103121278en      htmlarea-ContextMenu    _delete row     _Delete Row 
    2103221279en      htmlarea-ContextMenu    _image properties...    _Image Properties... 
    21033 en      htmlarea-ContextMenu    _modify link... _Modify Link... 
    2103421280en      htmlarea-ContextMenu    _remove link... _Remove Link... 
    2103521281en      htmlarea-ContextMenu    _table properties...    _Table Properties... 
     
    2108421330en      htmlarea        insert web link Insert Web Link 
    2108521331en      htmlarea        ordered list    Ordered List 
     21332en      htmlarea        paste from clipboard    Paste from clipboard 
     21333en      htmlarea        path    Path 
    2108621334en      htmlarea        redoes your last action Redoes your last action 
    2108721335en      htmlarea        strikethrough   Strikethrough 
     
    2119721445en      preferences     24 hour 24 hour 
    2119821446en      preferences     a template defines the layout of phpgroupware and it contains icons for each application.       A template defines the layout of eGroupWare and it contains icons for each application. 
     21447en      workflow        process %s has been updated     Process %s has been updated 
    2119921448en      preferences     a theme defines the colors and fonts used by the template.      A theme defines the colors and fonts used by the template. 
    2120021449en      preferences     acl grants have been updated    ACL grants have been updated 
     
    2125221501en      preferences     the two passwords are not the same      The two passwords are not the same 
    2125321502en      preferences     theme (colors/fonts) selection  Theme (colors/fonts) Selection 
     21503en      workflow        activity %1 is standalone or view but has transitions   Activity %1 is standalone or view but has transitions 
     21504en      workflow        situation       Situation 
    2125421505en      preferences     this telephone number will apear in searches for your name, and it will be visible for all expressolivre users  This telephone number will appear in searches for your name, and it will be visible for all ExpressoLivre Users 
    2125521506en      preferences     this server is located in the %1 timezone       This server is located in the %1 timezone 
     
    2128621537en      workflow        <strong>%role_xx%</strong> are all the emails of all users mapped to the role xx        <strong>%role_XX%</strong> are all the emails of all users mapped to the role XX 
    2128721538en      workflow        <strong>%roles%</strong> are the emails of all users mapped to any role on this activity        <strong>%roles%</strong> are the emails of all users mapped to any role on this activity 
    21288 en      workflow        admin processes sources Admin Processes Sources 
    21289 en      workflow        more options?   more options? 
    2129021539en      workflow        <strong>%signature%</strong> is the agent signature defined in the process configuration        <strong>%signature%</strong> is the agent signature defined in the process configuration 
    2129121540en      workflow        <strong>%user%</strong> is the instance user email      <strong>%user%</strong> is the instance user email 
     
    2132121570en      workflow        activity %1 is standalone and is using the $instance object     Activity %1 is standalone and is using the $instance object 
    2132221571en      workflow        activity %1 is standalone but has transitions   Activity %1 is standalone but has transitions 
    21323 en      workflow        activity %1 is standalone or view but has transitions   Activity %1 is standalone or view but has transitions 
    2132421572en      workflow        activity %1 is switch so it must use $instance->setnextactivity($actname) method        Activity %1 is switch so it must use $instance->setNextActivity($actname) method 
    2132521573en      workflow        activity %1 is view and is using the $instance object in write mode     Activity %1 is view and is using the $instance object in write mode 
     
    2135821606en      workflow        admin process activities        Admin Process Activities 
    2135921607en      workflow        admin process roles     Admin Process Roles 
     21608en      workflow        admin processes sources Admin Processes Sources 
    2136021609en      workflow        agent #%1 of type %2 is associated to an inexistent activity #%3        Agent #%1 of type %2 is associated to an inexistent activity #%3 
    2136121610en      workflow        agent #%1 of type %2 is not linked with an activity     Agent #%1 of type %2 is not linked with an activity 
     
    2142421673en      workflow        do you want the activity status on instances lists. most of the time it is "running" but if you use non-autorouted transitions you will have some completed activities. Do you want the activity status on instances lists. Most of the time it is "running" but if you use non-autorouted transitions you will have some completed activities. 
    2142521674en      workflow        do you want the category column on instances lists, if yout instances use categories you should use it  Do you want the category column on instances lists, if yout instances use categories you should use it 
    21426 en      workflow        go to same process activities   go to same process activities 
    2142721675en      workflow        do you want the category name column on instances lists, if your instances use categories you should use it     Do you want the category name column on instances lists, if your instances use categories you should use it 
    2142821676en      workflow        do you want the category name column on instances lists. if your instances use categories you should use this   Do you want the category name column on instances lists. If your instances use categories you should use this 
     
    2148121729en      workflow        go      go 
    2148221730en      workflow        go to same activities for other instances of this process       go to same activities for other instances of this process 
     21731en      workflow        go to same process activities   go to same process activities 
    2148321732en      workflow        go to the actual state of this instance go to the actual state of this instance 
    2148421733en      workflow        grab instance   grab instance 
     
    2152621775en      workflow        list of all activities with, for each,  counters of instances by status list of all activities with, for each,  counters of instances by status 
    2152721776en      workflow        list of all history items made by instances while they travel in the workflow with information about duration and date  list of all history items made by instances while they travel in the workflow with information about duration and date 
     21777en      workflow        process %s %s imported  Process %s %s imported 
     21778en      workflow        process %s has been created     Process %s has been created 
     21779en      workflow        assigned to     Assigned to 
    2152821780en      workflow        list of all instances with info about current status and activities and link to administration of theses instances      list of all instances with info about current status and activities and link to administration of theses instances 
    2152921781en      workflow        list of instances       List of instances 
     
    2155121803en      workflow        monitor work items      Monitor Work Items 
    2155221804en      workflow        monitor workitems       Monitor workitems 
     21805en      workflow        monitors        Monitors 
     21806en      workflow        more options?   more options? 
    2155321807en      workflow        my activities   My Activities 
    2155421808en      workflow        my instances    My Instances 
     
    2160721861en      workflow        process %d has been deactivated Process %d has been deactivated 
    2160821862en      workflow        process %s %s already exists, the import process was aborted    Process %s %s already exists, the import process was aborted 
    21609 en      workflow        process %s %s imported  Process %s %s imported 
    21610 en      workflow        process %s has been created     Process %s has been created 
    21611 en      workflow        process %s has been updated     Process %s has been updated 
    2161221863en      workflow        process %s removed      Process %s removed 
    2161321864en      workflow        process activities      Process activities 
     
    2182922080en      workflow        add participants        Add participants 
    2183022081en      workflow        loading Loading workflow 
    21831 en      workflow        situation       Situation 
    21832 en      workflow        assigned to     Assigned to 
    2183322082en      workflow        user interface  User interface 
    2183422083en      workflow        organization chart      Organization chart 
     
    2183822087en      workflow        there are no external applications      There are no external applications 
    2183922088en      workflow        warnings in this process        Warnings in this process 
    21840 es-es   admin   deny access to groups   Denegar acceso a grupos 
    2184122089en      workflow        this instance doesn't exist in this activity. probably, this instance has already been executed This instance doesn't exist in this activity. Probably, this instance has already been executed 
    2184222090en      workflow        external applications   External Applications 
     
    2198922237es-es   admin   deny access to error log        Denegar acceso al registro de errores 
    2199022238es-es   admin   deny access to global categories        Denegar acceso a las categorías globales 
     22239es-es   admin   deny access to groups   Denegar acceso a grupos 
    2199122240es-es   admin   deny access to mainscreen message       Denegar acceso al mensaje de la pantalla principal 
    2199222241es-es   admin   deny access to peer servers     Denegar acceso a servidores 'peer' 
     
    2213322382es-es   admin   max attachment size     Tamaño máximo de anexos 
    2213422383es-es   admin   maximum account id (e.g. 65535 or 1000000)      Máximo id de cuenta (ej. 65535 o 1000000) 
     22384es-es   admin   server url      URL del servidor 
    2213522385es-es   admin   maximum entries in click path history   Número máximo de entradas en la ruta del historial de pulsar con el ratón 
    2213622386es-es   admin   maximum length of photo archive  (default 10240 = 10 kb)        Tamaño máximo del archivo de foto  (predeterminado 10240 = 10 kb) 
     
    2220022450es-es   admin   select organization     Selecione la Organización 
    2220122451es-es   admin   select permissions this group will have Selecciones los permisos que tendrá este grupo 
    22202 es-es   admin   timetrack       Seguimiento del Tiempo 
    22203 es-es   admin   title   Titulo 
    2220422452es-es   admin   select the parent category. if this is a main category select no category       Seleccione la categoría superior. Si ésta es una categoría principal seleccione SIN CATEGORIA 
    2220522453es-es   admin   select users for inclusion      Seleccionar usuarios para inclusión 
     
    2221422462es-es   admin   server password Contraseña del servidor 
    2221522463es-es   admin   server type(mode)       Tipo (modo) del servidor 
    22216 es-es   admin   server url      URL del servidor 
    2221722464es-es   admin   server username Usuario del servidor 
    2221822465es-es   admin   servidor ldap   Servidor LDAP 
     
    2226822515es-es   admin   timeout for sessions in seconds (default 14400 = 4 hours)       Tiempo límite para las sesiones en segundos (por defecto 14400 = 4 horas) 
    2226922516es-es   admin   times   Horas 
     22517es-es   admin   timetrack       Seguimiento del Tiempo 
     22518es-es   admin   title   Titulo 
    2227022519es-es   admin   (to install new applications use<br><a href="setup/" target="setup">setup</a> [manage applications] !!!)        (Para instalar nuevas aplicaciones, utilice <br><a href="setup/" target="setup">Instalación</a> [Administrar Aplicaciones]) 
    2227122520es-es   admin   top     Superior 
     
    2228222531es-es   admin   use restrictions in the creation of emaillists  Utilizar las restricciones en la creación de listas de e-mail 
    2228322532es-es   admin   use restrictions in the creation of groups      Utilizar las restricciones en la creación de grupos 
     22533es-es   common  antarctica      ANTARCTICA 
    2228422534es-es   admin   user for smtp-authentication (leave it empty if no auth required)       Usuario para identificación SMTP (dejar en blanco si no se usa) 
    2228522535es-es   admin   user groups     Grupos de usuarios 
     
    2250222752es-es   common  angola  ANGOLA 
    2250322753es-es   common  anguilla        ANGUILLA 
    22504 es-es   common  antarctica      ANTARCTICA 
    2250522754es-es   common  antigua and barbuda     ANTIGUA AND BARBUDA 
    2250622755es-es   common  apply   Aplicar 
     
    2256122810es-es   common  chad    CHAD 
    2256222811es-es   common  change  Cambiar 
     22812es-es   common  charset iso-8859-1 
    2256322813es-es   common  check installation      Comprobar instalación 
    2256422814es-es   common  chile   CHILE 
     
    2260522855es-es   common  detail  Detalle 
    2260622856es-es   common  details Detalles 
     22857es-es   common  guinea  GUINEA 
     22858es-es   common  guyana  GUYANA 
     22859es-es   common  haiti   HAITI 
    2260722860es-es   common  diable the execution a bugfixscript for internet explorer 5.5 and higher to show transparency in png-images?    ¿Desactivar la ejecución del script que arregla el bug de IE 5.5 y superiores para mostrar transparencias en imágenes PNG? 
    2260822861es-es   common  disabled        Deshabilitado 
     
    2270022953es-es   common  guatemala       GUATEMALA 
    2270122954es-es   common  guinea-bissau   GUINEA-BISSAU 
    22702 es-es   common  guinea  GUINEA 
    22703 es-es   common  guyana  GUYANA 
    22704 es-es   common  haiti   HAITI 
    2270522955es-es   common  header admin login      Usuario administrador del encabezado 
    2270622956es-es   common  header password Contraseña del encabezado 
     
    2274022990es-es   common  july    Julio 
    2274122991es-es   common  jun     Jun 
     22992es-es   common  june    Junio 
    2274222993es-es   common  kazakstan       KAZAKSTAN 
    2274322994es-es   common  kenya   KENYA 
     
    2290623157es-es   common  reject  Rechazar 
    2290723158es-es   common  remove selected accounts        quite las cuentas seleccionadas 
    22908 es-es   common  rename  Renombrar 
    2290923159es-es   common  returns a full list of accounts on the system.  warning: this is return can be quite large      Devuelve una lista completa de las cuentas del sistema. Aviso: puede ser bastante largo 
    2291023160es-es   common  returns an array of todo items  Devuelve un array de elementos pendientes 
     
    2302023270es-es   common  turkmenistan    TURKMENISTAN 
    2302123271es-es   common  turks and caicos islands        TURKS AND CAICOS ISLANDS 
     23272es-es   common  tuvalu  TUVALU 
     23273es-es   common  uganda  UGANDA 
     23274es-es   common  ukraine UKRAINE 
    2302223275es-es   common  united arab emirates    UNITED ARAB EMIRATES 
    2302323276es-es   common  united kingdom  UNITED KINGDOM 
     
    2309623349es-es   common  admin processes Administrar procesos 
    2309723350es-es   common  auto-release on leaving activity        Liberar automáticamente al abandonar la actividad 
    23098 es-es   calendar        adding event    Agregando evento 
    2309923351es-es   common  base directory does not exist, please ask adminstrator to check the global configuration        El directorio base no existe. Por favor, pida al administrador que compruebe la configuración global 
    2310023352es-es   common  config values   Valores de configuración 
     
    2316623418es-es   calendar        1 match found   1 coincidencia encontrada 
    2316723419es-es   calendar        %1 records imported     %1 registros importados 
     23420es-es   calendar        link to view the event  Enlace para ver el evento 
    2316823421es-es   calendar        %1 records read (not yet imported, you may go back and uncheck test import)     %1 registros leídos (todavía sin importar, puede volver atrás desmarcar Probar Importar) 
    2316923422es-es   calendar        a       un 
     
    2317523428es-es   calendar        add contact     Añadir contacto 
    2317623429es-es   calendar        added   Añadido 
     23430es-es   calendar        adding event    Agregando evento 
    2317723431es-es   calendar        add or update a single entry by passing the fields.     Añadir o actualizar una simple entrada pasando los campos. 
    2317823432es-es   calendar        add participants        Añadir Participantes 
     
    2323823492es-es   calendar        displays your default calendar view on the startpage (page you get when you enter egroupware or click on the homepage icon)?    Muestra la vista predeterminada del calendario en la página de inicio de eGroupWare 
    2323923493es-es   calendar        download        Descargar 
     23494es-es   calendar        list all categories.    Listar todas las categorías. 
     23495es-es   calendar        loading Cargando 
     23496es-es   calendar        load [iv]cal    Cargar [iv]Cal 
     23497es-es   calendar        location        Lugar 
     23498es-es   calendar        make freebusy information availible to not loged in persons?    ¿Hacer la información libre-ocupado disponible para personas que no inicien sesión? 
     23499es-es   calendar        matrixview      Vista matricial 
     23500es-es   calendar        minutes minutos 
     23501es-es   calendar        mo      L 
    2324023502es-es   calendar        do you want to be notified about new or changed appointments? you be notified about changes you make yourself.<br>you can limit the notifications to certain changes only. each item includes all the notification listed above it. al  ¿Desea que se le notifiquen citas nuevas o modificadas? Se le notificará de los cambios que haga usted mismo.<br>Puede limitar las notificaciones para sólo ciertos cambios. Cada elemento incluye toda la notificación listada encima. Todas las modificaciones incluyen cambios de título, participantes, pero no las respuestas de los participantes. Si el dueño de un evento solicitó alguna notificación, siempre obtendrá las respuestas de aceptación o rechazo del participante. 
    2324123503es-es   calendar        do you want to receive a regulary summary of your appointsments via email?<br>the summary is sent to your standard email-address on the morning of that day or on monday for weekly summarys.<br>it is only sent when you have any app  ¿Desea recibir regularmente por correo un resumen de sus citas?<br>El resumen se le enviará a su correo electrónico habitual el mismo día por la mañana o el lunes para resúmenes semanales.<br>Sólo se envía si hay citas en ese día o esa semana. 
     
    2330723569es-es   calendar        length<br>(<= 255)      Longitud<br>(<=255) 
    2330823570es-es   calendar        length shown<br>(emtpy for full length) Longitud mostrada<br>(vació para dia completo) 
    23309 es-es   calendar        link    Enlace 
    23310 es-es   calendar        link to view the event  Enlace para ver el evento 
    23311 es-es   calendar        list all categories.    Listar todas las categorías. 
    23312 es-es   calendar        loading Cargando 
    23313 es-es   calendar        load [iv]cal    Cargar [iv]Cal 
    23314 es-es   calendar        location        Lugar 
    23315 es-es   calendar        make freebusy information availible to not loged in persons?    ¿Hacer la información libre-ocupado disponible para personas que no inicien sesión? 
    23316 es-es   calendar        matrixview      Vista matricial 
    23317 es-es   calendar        minutes minutos 
    23318 es-es   calendar        mo      L 
    23319 es-es   calendar        modified        Modificado 
    2332023571es-es   calendar        modify list of external participants    Modificar lista de participantes externos 
    2332123572es-es   calendar        mon     Lun 
     
    2344423695es-es   calendar        this defines the start of your dayview. events before this time, are shown above the dayview.<br>this time is also used as a default starttime for new events.  Esto define el inicio de la vista del día. Los eventos anteriores a esta hora se muestran encima de la vista del día.<br>Esta hora se usa también como hora predeterminada para nuevos eventos. 
    2344523696es-es   calendar        this group that is preselected when you enter the planner. you can change it in the planner anytime you want.   Este grupo es el predeterminado al entrar en el organizador. Puede cambiarlo en el organizador cuando quiera. 
    23446 es-es   calendar        you have not entered participants       No ha introducido participantes 
    2344723697es-es   calendar        this is an external event. even if it added to your expresso its can be changed any time at all Este es un evento externo. Aunque sea agregado a su Expresso corre el riesgo de mudar a cualquier momento 
    2344823698es-es   calendar        this is mostly caused by a not or wrongly configured smtp server. notify your administrator.    Esto se debe mayormente a una configuración errónea del servidor SMTP. Notifíquelo a su administrador. 
    2344923699es-es   calendar        this message is sent for canceled or deleted events.    Este mensaje se envía cuando un evento se borra o se cancela. 
    2345023700es-es   calendar        this message is sent for modified or moved events.      Este mensaje se envía al modificar o mover eventos. 
     23701es-es   contactcenter   add relation    Agregue la Relación 
    2345123702es-es   calendar        this message is sent to every participant of events you own, who has requested notifcations about new events.<br>you can use certain variables which get substituted with the data of the event. the first line is the subject of the   Este mensaje se envía a cada participante de los eventos de los que usted es el dueño, quien ha solicitado notificaciones sobre nuevos eventos.<br>Puede usar ciertas variables a las que sustituyen los datos del evento. La primera línea es el asunto del correo electrónico. 
    2345223703es-es   calendar        this message is sent when you accept, tentative accept or reject an event.      Este mensaje se envía cuando acepta, acepta la tentativa o rechaza un evento. 
     
    2350923760es-es   calendar        you have not entered a valid date       Ha introducido una fecha incorrecta 
    2351023761es-es   calendar        you have not entered a valid time of day        Ha introducido una hora incorrecta 
     23762es-es   calendar        you have not entered participants       No ha introducido participantes 
    2351123763es-es   calendar        you must enter one or more search keywords      Ud. debe entrar una o mas claves de busqueda 
    2351223764es-es   calendar        you must select a [iv]cal. (*.[iv]cs)   Debe seleccionar un [iv]Val. (*.[iv]cs) 
     
    2351623768es-es   calendar        your suggested time of <b> %1 - %2 </b> conflicts with the following existing calendar entries: Sus horas sugeridas de <B> %1 - %2 </B> están en conflicto con las siguientes entradas es el calendario: 
    2351723769es-es   contactcenter   add participants        Agregar Participantes 
    23518 es-es   contactcenter   add relation    Agregue la Relación 
    2351923770es-es   contactcenter   add to catalog  Agregar al catálogo 
    2352023771es-es   contactcenter   address 1       Dirección 1 
     
    2358523836es-es   contactcenter   edit group      Editar Grupo 
    2358623837es-es   contactcenter   e-mails and telephones  E-mails y Teléfonos 
     23838es-es   contactcenter   empty   Vacío 
    2358723839es-es   contactcenter   entry added with success!       ¡Contacto añadido con suceso! 
    2358823840es-es   contactcenter   entry added with success. but some contacts will not receive or send messages.  Entrada añadido con éxito. Pero algunos contactos no recibir ni enviar mensajes. 
     
    2366323915es-es   contactcenter   select the telephone    Seleccione el teléfono 
    2366423916es-es   contactcenter   server contacted. waiting for response...       Servidor contactado. Esperando respuesta... 
     23917es-es   contactcenter   sex     Sexo 
    2366523918es-es   contactcenter   state   Estado 
    2366623919es-es   contactcenter   suffix  Característica 
     
    2374223995es-es   emailadmin      qouta size in mbyte     Tamaño de la cuota en MBytes 
    2374323996es-es   emailadmin      quota settings  Configuración de las cuotas 
     23997es-es   emailadmin      remove  borrar 
    2374423998es-es   emailadmin      spam settings   Configuraciones de Spam 
    2374523999es-es   emailadmin      select type of imap/pop3 server Seleccione el tipo de servidor IMAP/POP3 
     
    2404424298es-es   expressoMail1_2 day(s)  Día(s) 
    2404524299es-es   expressoMail1_2 dear user,\\nthis is your first time in the expressomail, your preferences must be saved.\\nplease, choose your preferences and click on the button save.       Estimado usuario, \\ncomo esta es la primera vez que usted esta entraando a ExpressoMail, sus preferencias deben ser guardadas.\\n Favor seleccionar sus preferencias y darle al boton Guardar. 
    24046 es-es   expressoMail1_2 error saving your message.      Ocurrió un ERROR al guardar su mensaje. 
    2404724300es-es   expressoMail1_2 define some criterion to the fields from, to and subject with more than 3 characters!   Defina algún critério para los campos De, Para, Asunto con  más de 3 caracteres! 
    2404824301es-es   expressoMail1_2 define some search parameters!  Defina algunos parámetros para la busqueda! 
     
    2410524358es-es   expressoMail1_2 error moving message.   Error al mover el mensaje 
    2410624359es-es   expressoMail1_2 error moving or delete message: message too large. select one message by one.   Error al mover o borrar mensaje: Mensaje muy grande. Seleccione uno a la vez. 
    24107 es-es   expressoMail1_2 italic  Cursiva 
     24360es-es   expressoMail1_2 error saving your message.      Ocurrió un ERROR al guardar su mensaje. 
    2410824361es-es   expressoMail1_2 error emptying your spam folder.        Ocurrió un ERROR al vaciar su carpeta Spam. 
    2410924362es-es   expressoMail1_2 everytime you receive new messages you will be informed Cada vez que reciba nuevos mensajes será informado 
     
    2416024413es-es   expressoMail1_2 hlp_msg_delmov_acl      Otros usuarios podrán ELIMINAR/MOVER sus mensajes 
    2416124414es-es   expressoMail1_2 hlp_msg_read_acl        Otros usuarios podrán LEER sus mensajes 
     24415es-es   expressoMail1_2 spam    Spam 
    2416224416es-es   expressoMail1_2 hlp_msg_sendlike_acl    Otros usuarios podrán ENVIAR mensajes como siendo usted 
    2416324417es-es   expressoMail1_2 hlp_msg_savelike_acl    Otros usuarios podrán GUARDAR los mensajes enviados como siendo usted en esta bandeja  
     
    2418924443es-es   expressoMail1_2 in this message En el mensaje 
    2419024444es-es   expressoMail1_2 invalid signature       Error indeterminado: No fue posible validar la firma digital del mensaje. 
     24445es-es   expressoMail1_2 italic  Cursiva 
    2419124446es-es   expressoMail1_2 it allow you to remove attachments from messages        Permite que usted borre anexos de los mensajes 
    2419224447es-es   expressoMail1_2 it allow you to send emails with important flag, but you can receive unwanted messages with important flag      Permite que ústed envie e-mails con marca de importante, pero usted puede reciber mensajes indeseados marcados como de importante 
     
    2423824493es-es   expressoMail1_2 message marked as       Mensaje marcado como  
    2423924494es-es   expressoMail1_2 message(s) deleted from your trash folder.      Mensaje(s) eliminado(s) de su papelera 
     24495es-es   filemanager     delete  Borrar 
    2424024496es-es   expressoMail1_2 messages        mensajes 
    2424124497es-es   expressoMail1_2 messages found in folder:       mensajes encontrados en la carpeta 
     
    2426124517es-es   expressoMail1_2 nao foi possivel verificar se o certificado esta revogado.(cd-02)       No fue posibl verificar si el certificado está revocado.(CD-02) 
    2426224518es-es   expressoMail1_2 nao foi possivel verificar se o certificado esta revogado.(cd-03)       No fue posible verificar si el certificado está revocado.(CD-03) 
     24519es-es   expressoMail1_2 new     Nuevo 
    2426324520es-es   expressoMail1_2 new folder      Nueva carpeta 
    2426424521es-es   expressoMail1_2 new message     Nuevo Mensaje 
     
    2439624653es-es   expressoMail1_2 size    Tamaño 
    2439724654es-es   expressoMail1_2 small   pequeña 
    24398 es-es   expressoMail1_2 spam    Spam 
    2439924655es-es   expressoMail1_2 standard imap server    Servidor standar de IMAP 
    2440024656es-es   expressoMail1_2 standard pop3 server    Servidor standar de POP3 
     
    2441224668es-es   expressoMail1_2 test word: hello %1 %2 %3 %4, bye!      Prueba de palabra:  %1 %2 %3 %4, Hello! 
    2441324669es-es   expressoMail1_2 the %1 folder is not created. it is necessary to finish your request.   Su carpeta \\"%1\\" no está creada. Es necesario crearla para que funcione correctamente. 
    24414 es-es   expressoMail1_2 warning: your mailbox is almost full!   Aviso: ¡Su Buzón de Correo está casi lleno! 
    2441524670es-es   expressoMail1_2 the anti pop-up is enabled. allow this site (%1) for print.     El anti Pop-Up está habilitado. Desactivelo para este sitio (%1) para permitir la impresión. 
    2441624671es-es   expressoMail1_2 the event was imported successfully.    El evento fue importado con éxito. 
     
    2447524730es-es   expressoMail1_2 view tips       Ver tips 
    2447624731es-es   expressoMail1_2 voided message  Mensaje anulado 
     24732es-es   expressoMail1_2 warning: your mailbox is almost full!   Aviso: ¡Su Buzón de Correo está casi lleno! 
    2447724733es-es   expressoMail1_2  was succefully removed fue eliminado con éxito 
    2447824734es-es   expressoMail1_2 wednesday       Miércoles 
     
    2459624852es-es   filemanager     type of pdf paper       Tipo de papel para exportar 
    2459724853es-es   filemanager     default number of upload fields to show Número predeterminado de campos a mostrar 
    24598 es-es   filemanager     delete  Borrar 
    2459924854es-es   filemanager     deleted %1      %1 ha sido borrado 
    2460024855es-es   filemanager     directory       Directorio 
     
    2480125056es-es   preferences     use default     Usar predeterminado 
    2480225057es-es   preferences     users choice    Elegido por el usuario 
    24803 es-es   mobile  already_addeds: ya agregados: 
    2480425058es-es   preferences     when you say yes the home and logout buttons are presented as applications in the main top applcation bar       Cuando usted selecciona Sí, los botones serán colocados en la barra de herramientas en la parte superior del aplicativo. 
    2480525059es-es   preferences     which currency symbol or name should be used in phpgroupware.   Símbolo de moneda o nombre que debe usar eGroupWare 
     
    2487525129es-es   mobile  schedule        Agendar 
    2487625130es-es   mobile  continue scheduling     Continuar agendando 
     25131es-es   mobile  already_addeds: ya agregados: 
    2487725132es-es   mobile  start date      Fecha(Inicio) 
    2487825133es-es   mobile  end date        Fecha(Fin) 
     
    2488725142es-es   mobile  username_mobile Usuario 
    2488825143es-es   mobile  password_mobile Contraseña 
     25144es-es   workflow        inst. status    Estado de la instancia 
    2488925145es-es   mobile  the search argument must have at least 4 digits El argumento de búsqueda debe poseer por lo menos 4 dígitos 
    2489025146es-es   mobile  choose the participants Seleccione los participantes 
     
    2495925215es-es   news_admin      write permissions       Escribir permisos 
    2496025216es-es   jscalendar      3 number of chars for day-shortcut      3 números para el di'a-atajo 
    24961 es-es   workflow        aborted abortada 
    2496225217es-es   jscalendar      3 number of chars for month-shortcut    3 números para el mes-atajo 
    2496325218es-es   jscalendar      about the calendar      Acerca del calendario 
     
    2503425289es-es   workflow        abort instance  abortar instancia 
    2503525290es-es   workflow        abort this instance     Abortar esta instancia 
     25291es-es   workflow        aborted abortada 
    2503625292es-es   workflow        access denied for user %1 on activity %2, no role       Acceso denegado para el usuario %1 en la actividad %2, sin rol 
    2503725293es-es   workflow        act     actividad 
     
    2509825354es-es   workflow        admin process roles     Administrar roles del proceso 
    2509925355es-es   workflow        admin processes Administrar Procesos 
    25100 es-es   workflow        delition successful     Borrado correcto 
    2510125356es-es   workflow        admin processes sources Administrar código fuente de los procesos 
    2510225357es-es   workflow        agent #%1 of type %2 is associated to an inexistent activity #%3        El agente nº%1 del tipo %2 está asociado a una actividad inexistente nº%3 
     
    2511925374es-es   workflow        be carefull with interactive activity, end and start of theses activities are multiple. Tenga cuidado con la actividad interactiva, porque el fin y el inicio de estas actividades son múltiples. 
    2512025375es-es   workflow        being run       siendo ejecutado 
     25376es-es   workflow        instance        Instancia 
    2512125377es-es   workflow        by running theses links you will create new instances of the related process.   Al ejecutar estos enlaces, creará nuevas instancias del proceso relacionado. 
    2512225378es-es   workflow        cannot add transition only split or switch activities can have more than one outbound transition        No se puede añadir la transición. Sólo las actividades divididas o de cambio pueden tener más de una transición saliente 
     
    2516225418es-es   workflow        delete transition       Borrar transición 
    2516325419es-es   workflow        deletion successful     Borrado correcto 
     25420es-es   workflow        delition successful     Borrado correcto 
    2516425421es-es   workflow        description     Descripción 
    2516525422es-es   workflow        do you want the activity status on instances lists. most of the time it is "running" but if you use non-autorouted transitions you will have some completed activities. ¿Desea el estado de la actividad en las listas de instancias? La mayoría del tiempo está "en ejecución", pero si usa transiciones no autoenrutadas tendrá algunas actividades completadas. 
     
    2517125428es-es   workflow        do you want the instance status on instances lists. the instance status is usefull to disting beteween aborted, completed, exception or active instances        ¿Desea el estado de la instancia en las listas de instancia? El estado de la instancia es útil para distinguir entre instancias abortadas, completadas, excepción o activa. 
    2517225429es-es   workflow        do you want the owner column on instances lists. this will show you the actual owner, especially usefull if ownership is defined with special rights    ¿Desea la columna propietario en las listas de instancias? Esto mostrará el propietario actual, especialmente útil si el propietario está definido con derechos especiales. 
     25430es-es   workflow        instance %1     Instancia %1 
     25431es-es   workflow        instance %1 is in %2 state, action %3 is impossible.    La instancia %1 está en estado %2, la acción %3 es imposible. 
    2517325432es-es   workflow        do you want the priority column on instances lists. priority can be set with activities forms   ¿Desea la columna prioridad en las listas de instancias? La prioridad puede establecerse con formularios de actividades. 
    2517425433es-es   workflow        do you want the process column on instances lists. usefull if you have different processes and/or versions of theses processes  ¿Desea la columna proceso en las listas de instancias? Es útil si se tienen distintos procesos y/o versiones de estos procesos 
     
    2523625495es-es   workflow        inactive        Inactivo 
    2523725496es-es   workflow        inst.   Inst. 
    25238 es-es   workflow        inst. status    Estado de la instancia 
    25239 es-es   workflow        instance        Instancia 
    25240 es-es   workflow        instance %1     Instancia %1 
    25241 es-es   workflow        instance %1 is in %2 state, action %3 is impossible.    La instancia %1 está en estado %2, la acción %3 es imposible. 
    2524225497es-es   workflow        instance %1 is in exception, action %2 is not possible. La instancia %1 está en excepción, la acción %2 no es posible. 
    2524325498es-es   workflow        instance %1 is not associated with activity %2, action %3 is impossible.        La instancia %1 no está asociada con la actividad %2, la acción %3 es imposible. 
     
    2538325638es-es   workflow        removing instances and workitems for aborted instances on all processes eliminando instancias y elementos de trabajo para las instancias abortadas en todos los procesos 
    2538425639es-es   workflow        removing instances and workitems for aborted instances on process #%1   eliminando instancias y elementos de trabajo paras las instancias abortadas en el proceso nº%1 
     25640es-es   workflow        unknown status  estado desconocido 
    2538525641es-es   workflow        removing instances and workitems for all instances on process #%1       eliminando instancias y elementos de trabajo paras las instancias en el proceso nº%1 
    2538625642es-es   workflow        replyto:        Responder a: 
     
    2551525771es-es   workflow        unknow fix instruction :%1      instrucción de corrección desconocida: %1 
    2551625772es-es   workflow        unknown instruction from the workflow engine: %1        instrucción desconocida para el motor de flujo del trabajo: %1 
    25517 es-es   workflow        unknown status  estado desconocido 
    25518 es-es   workflow        update  actualizar 
    2551925773es-es   workflow        upload file     Subir fichero 
    2552025774es-es   workflow        use <a href="%1">emailadmin</a> to create mail profiles Usar <a href="%1">EmailAdmin</a> para crear perfiles de correo 
     
    25799260531003    expressoMail    a:1:{s:13:"use_signature";s:1:"1";} 
    2580026054-2      calendar        a:24:{s:15:"defaultcalendar";s:4:"week";s:21:"mainscreen_showevents";s:1:"0";s:7:"summary";s:2:"no";s:15:"receive_updates";s:2:"no";s:13:"update_format";s:8:"extended";s:11:"notifyAdded";s:113:"Evento do calendário - $$action$$: $$startdate$$ $$title$$\nVocê possui um compromisso agendado para $$startdate$$";s:14:"notifyCanceled";s:116:"Evento do calendário - $$action$$: $$startdate$$ $$title$$\nSeu compromisso agendado para $$startdate$$ foi cancelado";s:14:"notifyModified";s:133:"Evento do calendário - $$action$$: $$startdate$$ $$title$$\nSeu compromisso agendado para $$olddate$$ foi remarcado para $$startdate$$";s:14:"notifyResponse";s:140:"Evento do calendário - $$action$$: $$startdate$$ $$title$$\nEm $$date$$ $$fullname$$ $$action$$ sua requisição de encontro para $$startdate$$";s:11:"notifyAlarm";s:85:"Alarme para $$title$$ em $$startdate$$ na $$location$$\nAqui está o alarme solicitado.";s:13:"show_rejected";s:1:"0";s:14:"display_status";s:1:"1";s:13:"weekdaystarts";s:6:"Monday";s:13:"workdaystarts";s:1:"9";s:11:"workdayends";s:2:"17";s:8:"interval";s:2:"30";s:13:"defaultlength";s:2:"60";s:24:"planner_start_with_group";s:4:"1001";s:25:"planner_intervals_per_day";s:1:"4";s:13:"defaultfilter";s:3:"all";s:15:"default_private";s:1:"0";s:16:"display_minicals";s:1:"1";s:17:"print_black_white";s:1:"0";s:19:"hide_event_conflict";s:1:"0";} 
    25801 -2      expressoMail    a:19:{s:18:"max_email_per_page";s:2:"50";s:16:"save_deleted_msg";s:1:"1";s:18:"use_local_messages";s:1:"0";s:22:"keep_archived_messages";s:1:"0";s:32:"delete_and_show_previous_message";s:1:"1";s:13:"alert_new_msg";s:1:"1";s:19:"mainscreen_showmail";s:1:"1";s:27:"remove_attachments_function";s:1:"0";s:21:"enable_important_flag";s:1:"0";s:14:"save_in_folder";s:10:"INBOX/Sent";s:12:"hide_folders";s:1:"0";s:11:"line_height";s:2:"20";s:9:"font_size";s:2:"11";s:20:"use_dynamic_contacts";s:1:"0";s:13:"use_shortcuts";s:1:"0";s:15:"auto_save_draft";s:1:"0";s:10:"image_size";s:5:"65536";s:28:"use_signature_digital_cripto";s:1:"0";s:14:"type_signature";s:4:"text";} 
     26055-2      expressoMail    a:21:{s:18:"max_email_per_page";s:2:"50";s:16:"save_deleted_msg";s:1:"1";s:18:"use_local_messages";s:1:"0";s:22:"keep_archived_messages";s:1:"0";s:32:"delete_and_show_previous_message";s:1:"1";s:13:"alert_new_msg";s:1:"1";s:19:"mainscreen_showmail";s:1:"1";s:27:"remove_attachments_function";s:1:"0";s:21:"enable_important_flag";s:1:"0";s:14:"save_in_folder";s:10:"INBOX/Sent";s:12:"hide_folders";s:1:"0";s:11:"line_height";s:2:"20";s:9:"font_size";s:2:"11";s:20:"use_dynamic_contacts";s:1:"1";s:13:"use_shortcuts";s:1:"0";s:15:"auto_save_draft";s:1:"0";s:10:"image_size";s:5:"65536";s:28:"use_signature_digital_cripto";s:1:"0";s:14:"type_signature";s:4:"text";s:24:"show_name_print_messages";s:1:"0";s:8:"timezone";s:17:"America/Sao_Paulo";} 
    2580226056-2      filemanager     a:19:{s:4:"name";s:1:"1";s:9:"mime_type";s:1:"1";s:4:"size";s:1:"1";s:7:"created";s:1:"1";s:8:"modified";s:1:"1";s:5:"owner";s:1:"1";s:12:"createdby_id";s:1:"1";s:13:"modifiedby_id";s:1:"1";s:3:"app";s:1:"0";s:7:"comment";s:1:"1";s:7:"version";s:1:"1";s:12:"viewinnewwin";s:1:"1";s:12:"viewonserver";s:1:"1";s:13:"viewtextplain";s:1:"1";s:6:"dotdot";s:1:"1";s:8:"dotfiles";s:1:"1";s:8:"pdf_type";s:8:"portrait";s:14:"pdf_paper_type";s:2:"a4";s:14:"files_per_page";s:3:"200";} 
    2580326057\. 
     
    2587326127 
    2587426128-- 
     26129-- Name: calendar_historic_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:  
     26130-- 
     26131 
     26132ALTER TABLE ONLY calendar_historic 
     26133    ADD CONSTRAINT calendar_historic_pkey PRIMARY KEY (id); 
     26134 
     26135 
     26136-- 
    2587526137-- Name: calendar_object_cal_uid_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:  
    2587626138-- 
     
    2684427106-- 
    2684527107 
    26846 CREATE TRIGGER trig_share_catalog_delete 
    26847     AFTER DELETE ON phpgw_acl 
    26848     FOR EACH ROW 
    26849     EXECUTE PROCEDURE share_catalog_delete(); 
     27108CREATE TRIGGER trig_share_catalog_delete AFTER DELETE ON phpgw_acl FOR EACH ROW EXECUTE PROCEDURE share_catalog_delete(); 
    2685027109 
    2685127110 
     
    2685427113-- 
    2685527114 
    26856 CREATE TRIGGER trig_share_catalog_insert 
    26857     AFTER INSERT ON phpgw_acl 
    26858     FOR EACH ROW 
    26859     EXECUTE PROCEDURE share_catalog_insert(); 
     27115CREATE TRIGGER trig_share_catalog_insert AFTER INSERT ON phpgw_acl FOR EACH ROW EXECUTE PROCEDURE share_catalog_insert(); 
    2686027116 
    2686127117 
Note: See TracChangeset for help on using the changeset viewer.