diff -Naurb epia_std/config_defaults_inc.php epia/config_defaults_inc.php --- epia_std/config_defaults_inc.php 2004-05-10 20:41:58.000000000 +0200 +++ epia/config_defaults_inc.php 2004-05-10 20:44:09.000000000 +0200 + ######### + # Mail + ######### + + # Threshold to send messages (global) + $g_message_global_send_threshold = ADMINISTRATOR; + + # Threshold to send messages (project) + $g_message_proj_send_threshold = MANAGER; + + # Threshold to be excluded from messages + $g_message_excluded_threshold = ADMINISTRATOR; + ########## # Icons ########## diff -Naurb epia_std/core/access_api.php epia/core/access_api.php --- epia_std/core/access_api.php 2004-05-04 13:21:44.000000000 +0200 +++ epia/core/access_api.php 2004-05-10 17:38:58.000000000 +0200 @@ -243,6 +243,31 @@ } # -------------------- + # Check if the user has any configured access level + # to send messages + function access_has_any_message_level( ) { + + $t_has_message_global_send_access = access_has_global_level ( config_get ( 'message_global_send_threshold' ) ); + $t_has_message_proj_send_access = access_has_project_level ( config_get ( 'message_proj_send_threshold' ) ); + + if ( ($t_has_message_global_send_access || + $t_has_message_proj_send_access ) ) { + return true; + } + + return false; + } + + # -------------------- + # Check if the user has any configured access level + # to send messages and deny access to the page if not + function access_ensure_any_message_level( ) { + if ( ! access_has_any_message_level( ) ) { + access_denied(); + } + } + + # -------------------- # Check the current user's access against the given value and return true # if the user's access is equal to or higher, false otherwise. # diff -Naurb epia_std/core/email_api.php epia/core/email_api.php --- epia_std/core/email_api.php 2004-03-08 13:33:32.000000000 +0100 +++ epia/core/email_api.php 2004-05-10 16:38:03.000000000 +0200 @@ -813,4 +813,36 @@ } return $result; } + # -------------------- + # Send a message to each of the given user, or to each user if the first + # parameter is an array + # return an array of usernames to which the reminder was successfully sent + # + # @@@ I'm not sure this shouldn't return an array of user ids... more work for + # the caller but cleaner from an API point of view. + function email_message ( $p_recipients, $p_message ) { + if ( ! is_array( $p_recipients ) ) { + $p_recipients = array( $p_recipients ); + } + + $t_subject = lang_get ( 'message_subject' ); + $t_sender = current_user_get_field( 'username' ) . ' <' . + current_user_get_field( 'email' ) . '>' ; + $t_date = date( config_get( 'normal_date_format' ) ); + $t_header = "\n" . lang_get( 'on' ) . " $t_date, $t_sender " . + lang_get( 'sent_you_this_message' ) . ":\n\n"; + + $result = array(); + foreach ( $p_recipients as $t_recipient ) { + $t_email = user_get_email( $t_recipient ); + $result[] = user_get_name( $t_recipient ); + $t_contents = $t_header . + "\n\n$p_message"; + + if( ON == config_get( 'enable_email_notification' ) ) { + email_send( $t_email, $t_subject, $t_contents ); + } + } + return $result; + } ?> diff -Naurb epia_std/core/helper_api.php epia/core/helper_api.php --- epia_std/core/helper_api.php 2004-01-11 09:16:10.000000000 +0100 +++ epia/core/helper_api.php 2004-05-10 17:19:34.000000000 +0200 @@ -105,8 +105,15 @@ # If the second parameter is not given, the first parameter is compared # to the boolean value true function check_selected( $p_var, $p_val=true ) { - if ( $p_var == $p_val ) { + if ( !is_array ( $p_var ) ) { + $p_var = array ( $p_var ); + } + + foreach ($p_var as $t_var) { + if ( $t_var == $p_val ) { echo ' selected="selected" '; + break; + } } } # -------------------- @@ -117,8 +124,14 @@ # If the second parameter is not given, the first parameter is compared # to the boolean value true function check_checked( $p_var, $p_val=true ) { - if ( $p_var == $p_val ) { + if ( !is_array ( $p_var ) ) { + $p_var = array ( $p_var ); + } + foreach ($p_var as $t_var) { + if ( $t_var == $p_val ) { echo ' checked="checked" '; + break; + } } } diff -Naurb epia_std/core/html_api.php epia/core/html_api.php --- epia_std/core/html_api.php 2004-05-04 15:02:01.000000000 +0200 +++ epia/core/html_api.php 2004-05-10 17:38:59.000000000 +0200 @@ -392,6 +392,12 @@ $t_menu_options[] = '' . lang_get( 'docs_link' ) . ''; } + # message + if ( access_has_any_message_level ( ) ) { + $t_link = 'message_page.php'; + $t_menu_options[] = "" . lang_get( 'message_link' ) . ''; + } + # Manage Users (admins) or Manage Project (managers) if ( access_has_any_manage_level( ) ) { $t_link = 'manage_page.php'; diff -Naurb epia_std/core/print_api.php epia/core/print_api.php --- epia_std/core/print_api.php 2004-02-10 18:04:39.000000000 +0100 +++ epia/core/print_api.php 2004-05-10 17:17:28.000000000 +0200 @@ -671,6 +671,29 @@ } } # -------------------- + # list of projects that a user is in with minimum of a specific access_level + function print_project_user_list_option_list3( $p_user_id, $p_project_set, $p_access_level=ANYBODY ) { + $t_project_ids = user_get_accessible_projects( $p_user_id ); + $t_project_list = array(); + foreach ($t_project_ids as $t_project_id) { + if ( user_get_access_level ($p_user_id, $t_project_id) >= $p_access_level) { + $t_project_list[$t_project_id] = project_get_row ( $t_project_id ); + } + } + + $t_project_list = multi_sort( array_values($t_project_list), 'name' ); + + $count = count ( $t_project_list ); + echo "$count"; + foreach ($t_project_list as $t_project) { + $t_project_name = string_attribute ( $t_project['name'] ); + $t_project_id = $t_project['id']; + PRINT ""; + } + } + # -------------------- # list of projects that a user is NOT in function print_project_user_list( $p_user_id ) { global $g_mantis_project_user_list_table, $g_mantis_project_table; diff -Naurb epia_std/lang/strings_chinese_simplified.txt epia/lang/strings_chinese_simplified.txt --- epia_std/lang/strings_chinese_simplified.txt 2004-05-10 19:27:33.000000000 +0200 +++ epia/lang/strings_chinese_simplified.txt 2004-05-10 20:12:28.000000000 +0200 @@ -658,11 +658,28 @@ $s_summary_link = "摘要"; $s_account_link = "个人帐号"; $s_users_link = "Users"; +$s_message_link = 'Message'; $s_manage_link = "管理"; $s_edit_news_link = "编辑新闻"; $s_docs_link = "使用说明"; $s_logout_link = "注销"; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_chinese_traditional.txt epia/lang/strings_chinese_traditional.txt --- epia_std/lang/strings_chinese_traditional.txt 2004-05-10 19:28:18.000000000 +0200 +++ epia/lang/strings_chinese_traditional.txt 2004-05-10 20:12:25.000000000 +0200 @@ -654,12 +654,29 @@ $s_report_bug_link = '厨挛'; $s_summary_link = '篕璶'; $s_account_link = '眀腹'; +$s_message_link = 'Message'; $s_users_link = 'Users'; $s_manage_link = '恨瞶'; $s_edit_news_link = '絪胯穝籇'; $s_docs_link = 'ㄏノ弧'; $s_logout_link = '祅'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_croatian.txt epia/lang/strings_croatian.txt --- epia_std/lang/strings_croatian.txt 2004-05-10 19:28:55.000000000 +0200 +++ epia/lang/strings_croatian.txt 2004-05-10 20:12:22.000000000 +0200 @@ -656,12 +656,29 @@ $s_report_bug_link = "Prijavi bug"; $s_summary_link = "Sa緀tak"; $s_account_link = "Korisni鑛i ra鑥n"; +$s_message_link = 'Message'; $s_users_link = "Korisnici"; $s_manage_link = "Administriraj"; $s_edit_news_link = "Editiraj novosti"; $s_docs_link = "Dokumenti"; $s_logout_link = "Odjava"; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_czech.txt epia/lang/strings_czech.txt --- epia_std/lang/strings_czech.txt 2004-05-10 19:29:22.000000000 +0200 +++ epia/lang/strings_czech.txt 2004-05-10 20:12:19.000000000 +0200 @@ -658,12 +658,29 @@ $s_report_bug_link = 'Vlo緄t bug'; $s_summary_link = 'Shrnut'; $s_account_link = '阼et'; +$s_message_link = 'Message'; $s_users_link = 'U緄vatel'; $s_manage_link = 'Spr醰a'; $s_edit_news_link = 'Upravit novinky'; $s_docs_link = 'Dokumenty'; $s_logout_link = 'Odhl醩it'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_danish.txt epia/lang/strings_danish.txt --- epia_std/lang/strings_danish.txt 2004-05-10 19:29:43.000000000 +0200 +++ epia/lang/strings_danish.txt 2004-05-10 20:12:16.000000000 +0200 @@ -654,12 +654,29 @@ $s_report_bug_link = 'Rapporter Fejl'; $s_summary_link = 'Opsummering'; $s_account_link = 'Min Konto'; +$s_message_link = 'Message'; $s_users_link = 'Bruger'; $s_manage_link = 'Administrer'; $s_edit_news_link = 'Rediger Nyheder'; $s_docs_link = 'Dokumentation'; $s_logout_link = 'Log Af'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_dutch.txt epia/lang/strings_dutch.txt --- epia_std/lang/strings_dutch.txt 2004-05-10 19:30:29.000000000 +0200 +++ epia/lang/strings_dutch.txt 2004-05-10 20:12:13.000000000 +0200 @@ -656,12 +656,29 @@ $s_report_bug_link = 'Rapporteer bug'; $s_summary_link = 'Samenvatting'; $s_account_link = 'Accounts'; +$s_message_link = 'Message'; $s_users_link = 'Gebruikers'; $s_manage_link = 'Beheer'; $s_edit_news_link = 'Aanpassen nieuws'; $s_docs_link = 'Documenten'; $s_logout_link = 'Uitloggen'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_english.txt epia/lang/strings_english.txt --- epia_std/lang/strings_english.txt 2004-05-10 19:26:03.000000000 +0200 +++ epia/lang/strings_english.txt 2004-05-10 20:11:00.000000000 +0200 @@ -656,12 +656,29 @@ $s_report_bug_link = 'Make Entry'; $s_summary_link = 'Summary'; $s_account_link = 'My Account'; +$s_message_link = 'Message'; $s_users_link = 'Users'; $s_manage_link = 'Manage'; $s_edit_news_link = 'Edit News'; $s_docs_link = 'Docs'; $s_logout_link = 'Logout'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_estonian.txt epia/lang/strings_estonian.txt --- epia_std/lang/strings_estonian.txt 2004-05-10 19:31:12.000000000 +0200 +++ epia/lang/strings_estonian.txt 2004-05-10 20:12:08.000000000 +0200 @@ -656,12 +656,29 @@ $s_report_bug_link = 'Bugidest teatamine'; $s_summary_link = 'Kokkuv鮰e'; $s_account_link = 'Minu andmed'; +$s_message_link = 'Message'; $s_users_link = 'Kasutajad'; $s_manage_link = 'Haldus'; $s_edit_news_link = 'Uudiste redigeerimine'; $s_docs_link = 'Dokumendid'; $s_logout_link = 'Logi v鋖ja'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_finnish.txt epia/lang/strings_finnish.txt --- epia_std/lang/strings_finnish.txt 2004-05-10 19:31:40.000000000 +0200 +++ epia/lang/strings_finnish.txt 2004-05-10 20:12:05.000000000 +0200 @@ -657,12 +657,29 @@ $s_report_bug_link = 'Raportoi Bugi'; $s_summary_link = 'Yhteenveto'; $s_account_link = 'K鋣tt鋔鋞unnukseni'; +$s_message_link = 'Message'; $s_users_link = 'K鋣tt鋔鋞'; $s_manage_link = 'Hallinta'; $s_edit_news_link = 'Muokkaa Uutisia'; $s_docs_link = 'Dokumentaatio'; $s_logout_link = 'Poistu'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_french.txt epia/lang/strings_french.txt --- epia_std/lang/strings_french.txt 2004-05-10 19:31:59.000000000 +0200 +++ epia/lang/strings_french.txt 2004-05-10 20:12:01.000000000 +0200 @@ -661,12 +661,29 @@ $s_report_bug_link = 'Rapporter un bug'; $s_summary_link = 'Synth鑣e'; $s_account_link = 'Options'; +$s_message_link = 'Message'; $s_users_link = 'Utilisateurs'; $s_manage_link = 'Administration'; $s_edit_news_link = 'Modifier les nouvelles'; $s_docs_link = 'Documentation'; $s_logout_link = 'D閏onnexion'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_german.txt epia/lang/strings_german.txt --- epia_std/lang/strings_german.txt 2004-05-10 17:38:58.000000000 +0200 +++ epia/lang/strings_german.txt 2004-05-10 20:08:46.000000000 +0200 @@ -496,6 +496,22 @@ $s_redirecting = '...Weiterleitung'; $s_here = 'hier klicken'; +# message_page.php +$s_prev_step_button = 'Vorheriger Schritt'; +$s_next_step_button = 'N鋍hster Schritt'; +$s_message_filter_project = 'Soll die Nachricht an alle Projekte gehen ... ?'; +$s_message_filter_project_yes = 'Ja, an alle Projekte!'; +$s_message_filter_project_no = 'Nein, an ausgew鋒lte Projekte ...'; +$s_message_filter_access_level = 'Soll die Nachricht an alle Rechte-Ebenen gehen ... ?'; +$s_message_filter_access_level_yes = 'Ja, an alle Rechte-Ebenen!'; +$s_message_filter_access_level_no = 'Nein, an ausgew鋒lte Rechte-Ebenen ...'; +$s_message_filter_user = 'Soll die Nachricht an alle User mit den ausw鋒lten Rechte-Ebenen gehen ... ?'; +$s_message_filter_user_yes = 'Ja, an alle User!'; +$s_message_filter_user_no = 'Nein, an ausgew鋒lte User ...'; +$s_message_filter_message = 'Welche Nachricht wollen sie senden ?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'hat Ihnen diese Information gesendet'; + # main_page.php $s_open_and_assigned_to_me = 'Offen und mir zugewiesen'; $s_open_and_reported_to_me = 'Offen und von mir berichtet'; @@ -666,6 +650,22 @@ $s_docs_link = 'Dokumentation'; $s_logout_link = 'Abmelden'; +# message_page.php +$s_prev_step_button = 'Vorheriger Schritt'; +$s_next_step_button = 'N鋍hster Schritt'; +$s_message_filter_project = 'Soll die Nachricht an alle Projekte gehen ... ?'; +$s_message_filter_project_yes = 'Ja, an alle Projekte!'; +$s_message_filter_project_no = 'Nein, an ausgew鋒lte Projekte ...'; +$s_message_filter_access_level = 'Soll die Nachricht an alle Rechte-Ebenen gehen ... ?'; +$s_message_filter_access_level_yes = 'Ja, an alle Rechte-Ebenen!'; +$s_message_filter_access_level_no = 'Nein, an ausgew鋒lte Rechte-Ebenen ...'; +$s_message_filter_user = 'Soll die Nachricht an alle User mit den ausw鋒lten Rechte-Ebenen gehen ... ?'; +$s_message_filter_user_yes = 'Ja, an alle User!'; +$s_message_filter_user_no = 'Nein, an ausgew鋒lte User ...'; +$s_message_filter_message = 'Welche Nachricht wollen sie senden ?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'hat Ihnen diese Information gesendet'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_hungarian.txt epia/lang/strings_hungarian.txt --- epia_std/lang/strings_hungarian.txt 2004-05-10 19:32:27.000000000 +0200 +++ epia/lang/strings_hungarian.txt 2004-05-10 20:11:58.000000000 +0200 @@ -655,12 +655,29 @@ $s_report_bug_link = 'Hiba bejelent閟e'; $s_summary_link = '謘szegz閟'; $s_account_link = 'Fi髃'; +$s_message_link = 'Message'; $s_users_link = 'Felhaszn醠髃'; $s_manage_link = 'Karbantart醩'; $s_edit_news_link = 'H韗ek'; $s_docs_link = 'Dokument醕i'; $s_logout_link = 'Kijelentkez閟'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_italian.txt epia/lang/strings_italian.txt --- epia_std/lang/strings_italian.txt 2004-05-10 19:33:11.000000000 +0200 +++ epia/lang/strings_italian.txt 2004-05-10 20:11:54.000000000 +0200 @@ -656,12 +656,29 @@ $s_report_bug_link = "Inserisci nuovo Bug"; $s_summary_link = "Statistiche"; $s_account_link = "Account"; +$s_message_link = 'Message'; $s_users_link = "Utenti"; $s_manage_link = "Amministra"; $s_edit_news_link = "Modifica Notizie"; $s_docs_link = "Documentazione"; $s_logout_link = "Esci"; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_japanese_euc.txt epia/lang/strings_japanese_euc.txt --- epia_std/lang/strings_japanese_euc.txt 2004-05-10 19:33:42.000000000 +0200 +++ epia/lang/strings_japanese_euc.txt 2004-05-10 20:11:50.000000000 +0200 @@ -654,12 +654,29 @@ $s_report_bug_link = "判峡"; $s_summary_link = "サマリ"; $s_account_link = "アカウント肋年"; +$s_message_link = 'Message'; $s_users_link = "プロジェクト肋年"; $s_manage_link = "システム瓷妄"; $s_edit_news_link = "ニュ〖ス试礁"; $s_docs_link = "ドキュメント"; $s_logout_link = "ログアウト"; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_japanese_sjis.txt epia/lang/strings_japanese_sjis.txt --- epia_std/lang/strings_japanese_sjis.txt 2004-05-10 19:34:08.000000000 +0200 +++ epia/lang/strings_japanese_sjis.txt 2004-05-10 20:11:46.000000000 +0200 @@ -654,12 +654,29 @@ $s_report_bug_link = "搊榐"; $s_summary_link = "僒儅儕"; $s_account_link = "傾僇僂儞僩愝掕"; +$s_message_link = 'Message'; $s_users_link = "僾儘僕僃僋僩愝掕"; $s_manage_link = "僔僗僥儉娗棟"; $s_edit_news_link = "僯儏乕僗曇廤"; $s_docs_link = "僪僉儏儊儞僩"; $s_logout_link = "儘僌傾僂僩"; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_korean.txt epia/lang/strings_korean.txt --- epia_std/lang/strings_korean.txt 2004-05-10 19:34:32.000000000 +0200 +++ epia/lang/strings_korean.txt 2004-05-10 20:11:41.000000000 +0200 @@ -655,12 +655,29 @@ $s_report_bug_link = '国饭 焊绊窍扁'; $s_summary_link = '夸距'; $s_account_link = '拌沥 包府'; +$s_message_link = 'Message'; $s_users_link = '荤侩磊'; $s_manage_link = '包府'; $s_edit_news_link = '春胶 祈笼'; $s_docs_link = '巩辑'; $s_logout_link = '肺弊酒眶'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_latvian.txt epia/lang/strings_latvian.txt --- epia_std/lang/strings_latvian.txt 2004-05-10 19:34:55.000000000 +0200 +++ epia/lang/strings_latvian.txt 2004-05-10 20:11:31.000000000 +0200 @@ -656,12 +656,29 @@ $s_report_bug_link = "Piere靑str鐃 k稃du"; $s_summary_link = "Statistika"; $s_account_link = "Remi"; +$s_message_link = 'Message'; $s_users_link = "Lietot鈐i"; $s_manage_link = "Vad頱a"; $s_edit_news_link = "Jaunumi"; $s_docs_link = "Dokument鈉ija"; $s_logout_link = "Beigt"; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_lithuanian.txt epia/lang/strings_lithuanian.txt --- epia_std/lang/strings_lithuanian.txt 2004-05-10 19:35:14.000000000 +0200 +++ epia/lang/strings_lithuanian.txt 2004-05-10 20:11:26.000000000 +0200 @@ -666,12 +666,29 @@ $s_report_bug_link = 'Prane餿i apie problem'; $s_summary_link = 'Statistika'; $s_account_link = 'Mano prisijungimas'; +$s_message_link = 'Message'; $s_users_link = 'Vartotojai'; $s_manage_link = 'Valdyti'; $s_edit_news_link = 'Redaguoti naujienas'; $s_docs_link = 'Dokumentai'; $s_logout_link = 'Atsijungti'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_norwegian.txt epia/lang/strings_norwegian.txt --- epia_std/lang/strings_norwegian.txt 2004-05-10 19:35:29.000000000 +0200 +++ epia/lang/strings_norwegian.txt 2004-05-10 20:11:20.000000000 +0200 @@ -656,12 +656,29 @@ $s_report_bug_link = 'Ny sak'; $s_summary_link = 'Oppsummering'; $s_account_link = 'Konto'; +$s_message_link = 'Message'; $s_users_link = 'Brukere'; $s_manage_link = 'Administrasjon'; $s_edit_news_link = 'Rediger nyheter'; $s_docs_link = 'Dokumentasjon'; $s_logout_link = 'Logg ut'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_polish.txt epia/lang/strings_polish.txt --- epia_std/lang/strings_polish.txt 2004-05-10 19:35:56.000000000 +0200 +++ epia/lang/strings_polish.txt 2004-05-10 20:11:16.000000000 +0200 @@ -655,12 +655,29 @@ $s_report_bug_link = 'Zg硂 b潮d'; $s_summary_link = 'Statystyki'; $s_account_link = 'Twoje konto'; +$s_message_link = 'Message'; $s_users_link = 'U縴tkownicy'; $s_manage_link = 'Zarz眃zanie'; $s_edit_news_link = 'Wiadomo禼i'; $s_docs_link = 'Dokumentacja'; $s_logout_link = 'Wylogowanie'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_portuguese_brazil.txt epia/lang/strings_portuguese_brazil.txt --- epia_std/lang/strings_portuguese_brazil.txt 2004-05-10 19:36:24.000000000 +0200 +++ epia/lang/strings_portuguese_brazil.txt 2004-05-10 20:11:12.000000000 +0200 @@ -655,12 +655,29 @@ $s_report_bug_link = "Relatar Bugs"; $s_summary_link = "Resumo"; $s_account_link = "Sua conta"; +$s_message_link = 'Message'; $s_users_link = "Usuários"; $s_manage_link = "Gerenciador"; $s_edit_news_link = "Editar notícias"; $s_docs_link = "Docs."; $s_logout_link = "Sair"; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_portuguese_standard.txt epia/lang/strings_portuguese_standard.txt --- epia_std/lang/strings_portuguese_standard.txt 2004-05-10 19:36:53.000000000 +0200 +++ epia/lang/strings_portuguese_standard.txt 2004-05-10 20:11:07.000000000 +0200 @@ -655,12 +655,29 @@ $s_report_bug_link = 'Relatar Bugs'; $s_summary_link = 'Sum醨io'; $s_account_link = 'Conta Pessoal'; +$s_message_link = 'Message'; $s_users_link = 'Utilizadores'; $s_manage_link = 'Gerenciador'; $s_edit_news_link = 'Editar Not韈ias'; $s_docs_link = 'Docs.'; $s_logout_link = 'Sair'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_romanian.txt epia/lang/strings_romanian.txt --- epia_std/lang/strings_romanian.txt 2004-05-10 19:37:13.000000000 +0200 +++ epia/lang/strings_romanian.txt 2004-05-10 20:12:31.000000000 +0200 @@ -654,12 +654,29 @@ $s_report_bug_link = 'Semnalare bug'; $s_summary_link = 'Sumar'; $s_account_link = 'Cont'; +$s_message_link = 'Message'; $s_users_link = 'Utilizatori'; $s_manage_link = 'Gestiune'; $s_edit_news_link = 'Modifica stirile'; $s_docs_link = 'Documentatie'; $s_logout_link = 'Deconectare'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_russian.txt epia/lang/strings_russian.txt --- epia_std/lang/strings_russian.txt 2004-05-10 19:37:40.000000000 +0200 +++ epia/lang/strings_russian.txt 2004-05-10 20:12:35.000000000 +0200 @@ -655,12 +655,29 @@ $s_report_bug_link = '念徉忤螯 徉'; $s_summary_link = '羊囹桉蜩赅'; $s_account_link = '填 磬耱痤殛'; +$s_message_link = 'Message'; $s_users_link = '项朦珙忄蝈腓'; $s_manage_link = '语疣怆屙桢'; $s_edit_news_link = '绣溧牝桊钼囹 眍忸耱'; $s_docs_link = '念牦戾眚圉'; $s_logout_link = '蔓躅'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_russian_koi8.txt epia/lang/strings_russian_koi8.txt --- epia_std/lang/strings_russian_koi8.txt 2004-05-10 19:38:09.000000000 +0200 +++ epia/lang/strings_russian_koi8.txt 2004-05-10 20:12:38.000000000 +0200 @@ -654,12 +654,29 @@ $s_report_bug_link = '湎铝咨载 铝'; $s_summary_link = '笤猎捎陨肆'; $s_account_link = '硐 瘟釉蚁仕'; +$s_message_link = 'Message'; $s_users_link = '鹣特谙琢耘躺'; $s_manage_link = '跣伊滋盼膳'; $s_edit_news_link = '蚺牧嗽梢献猎 蜗紫釉'; $s_docs_link = '湎苏团卧撩裳'; $s_logout_link = '髻认'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_serbian.txt epia/lang/strings_serbian.txt --- epia_std/lang/strings_serbian.txt 2004-05-10 19:38:27.000000000 +0200 +++ epia/lang/strings_serbian.txt 2004-05-10 20:12:41.000000000 +0200 @@ -656,12 +656,29 @@ $s_report_bug_link = 'Prijava gre.aka'; $s_summary_link = 'Sa.etak'; $s_account_link = 'Moj nalog'; +$s_message_link = 'Message'; $s_users_link = 'Korisnici'; $s_manage_link = 'Upravljanje'; $s_edit_news_link = 'Izmena vesti'; $s_docs_link = 'Dokumenti'; $s_logout_link = 'Odjava'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_slovak.txt epia/lang/strings_slovak.txt --- epia_std/lang/strings_slovak.txt 2004-05-10 19:38:47.000000000 +0200 +++ epia/lang/strings_slovak.txt 2004-05-10 20:12:44.000000000 +0200 @@ -656,12 +656,29 @@ $s_report_bug_link = 'Vlo緄 bug'; $s_summary_link = 'Zhrnutie'; $s_account_link = '阼et'; +$s_message_link = 'Message'; $s_users_link = 'Pou卷vatelia'; $s_manage_link = 'Spr醰a'; $s_edit_news_link = 'Upravi novinky'; $s_docs_link = 'Dokumenty'; $s_logout_link = 'Odhl醩i'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_spanish.txt epia/lang/strings_spanish.txt --- epia_std/lang/strings_spanish.txt 2004-05-10 19:39:02.000000000 +0200 +++ epia/lang/strings_spanish.txt 2004-05-10 20:12:48.000000000 +0200 @@ -658,12 +658,29 @@ $s_report_bug_link = 'Informar de Bug'; $s_summary_link = 'Resumen'; $s_account_link = 'Mi Cuenta'; +$s_message_link = 'Message'; $s_users_link = 'Usuarios del Proyecto'; $s_manage_link = 'Administraci髇'; $s_edit_news_link = 'Noticias'; $s_docs_link = 'Documentos'; $s_logout_link = 'Salir'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_swedish.txt epia/lang/strings_swedish.txt --- epia_std/lang/strings_swedish.txt 2004-05-10 19:39:24.000000000 +0200 +++ epia/lang/strings_swedish.txt 2004-05-10 20:12:54.000000000 +0200 @@ -654,12 +654,29 @@ $s_report_bug_link = 'Rapportera bugg'; $s_summary_link = 'Sammanfattning'; $s_account_link = 'Anv鋘darkonto'; +$s_message_link = 'Message'; $s_users_link = 'Anv鋘dare'; $s_manage_link = 'Hantera'; $s_edit_news_link = 'Redigera nyheter'; $s_docs_link = 'Dokument'; $s_logout_link = 'Logga ut'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/lang/strings_turkish.txt epia/lang/strings_turkish.txt --- epia_std/lang/strings_turkish.txt 2004-05-10 19:39:46.000000000 +0200 +++ epia/lang/strings_turkish.txt 2004-05-10 20:12:57.000000000 +0200 @@ -655,12 +655,29 @@ $s_report_bug_link = 'Bug Bildir'; $s_summary_link = '謟et'; $s_account_link = 'Hesap'; +$s_message_link = 'Message'; $s_users_link = 'Users'; $s_manage_link = 'D鼁enle'; $s_edit_news_link = 'Haberleri D鼁enle'; $s_docs_link = 'Belgeler'; $s_logout_link = 'Sistemden 驱k'; +# message_page.php +$s_prev_step_button = 'Previous'; +$s_next_step_button = 'Next'; +$s_message_filter_project = 'Send message to all projects ... ?'; +$s_message_filter_project_yes = 'Yes, to all projects!'; +$s_message_filter_project_no = 'No, only to selected projects ...'; +$s_message_filter_access_level = 'Send message to all access-levels ... ?'; +$s_message_filter_access_level_yes = 'Yes, to all access-levels!'; +$s_message_filter_access_level_no = 'No, only to selected access-levels ...'; +$s_message_filter_user = 'Send message to all users ... ?'; +$s_message_filter_user_yes = 'Yes, to all users!'; +$s_message_filter_user_no = 'No, only to selected users ...'; +$s_message_filter_message = 'Which message should be send?'; +$s_message_subject = 'Information'; +$s_sent_you_this_message = 'has send you this message'; + # meta_inc.php # news_add.php diff -Naurb epia_std/message_page.php epia/message_page.php --- epia_std/message_page.php 1970-01-01 01:00:00.000000000 +0100 +++ epia/message_page.php 2004-05-10 20:44:09.000000000 +0200 @@ -0,0 +1,361 @@ + + 0 ) { + $f_filter_project = "true"; + } else { + $f_filter_project = "false"; + } + + $f_filter_access_levels = gpc_get_int_array ( 'access_levels', array() ); + if ( count ( $f_filter_access_levels ) > 0 ) { + $f_filter_access_level = "true"; + } else { + $f_filter_access_level = "false"; + } + + $f_user_id = gpc_get_int_array ( 'user_id', array() ); + if ( count ( $f_user_id ) > 0 ) { + $f_filter_user = "true"; + } else { + $f_filter_user = "false"; + } + + $f_body = gpc_get_string( 'body', '' ); +?> + + + + + + += config_get ( 'message_proj_send_threshold' ) ) { + $f_filter_project_id[$t_project_id] = $t_project_id; + } + } + } + + $t_user_list = array(); + foreach ($f_filter_project_id as $t_project_id) { + $t_user_list[$t_project_id] = project_get_all_user_rows ( $t_project_id ); + } + + $t_user_list_filtered = array(); + foreach ($t_user_list as $t_users) { + foreach ($t_users as $t_user) { + if ( $f_filter_access_level == "true" ) { + foreach ($f_filter_access_levels as $t_access_level) { + if ($t_user['access_level'] == $t_access_level) { + $t_user_list_filtered[$t_user['id']] = $t_user; + break; + } + } + } else { + if ($t_user['access_level'] < config_get ( 'message_excluded_threshold' ) ) { + $t_user_list_filtered[$t_user['id']] = $t_user; + } + } + } + } + + return multi_sort( array_values($t_user_list_filtered), 'username' ); + } +?> + +
+ + 0 ) { + foreach ( $f_filter_project_id as $t_project_id ) { +?> + + + + 1 ) { + foreach ( $f_filter_access_levels as $t_access_level ) { +?> + + + + 2 ) { +?> + + + + 3 ) { +?> + + +
+ +
+ + + + + + + > + + + + + > + + + +
+ +
+ /> + + +
+ /> + + + + +
+ + + +
+
+
+ +
+ + + + + + + > + + + + + > + + + +
+ +
+ /> + + +
+ /> + + + + +
+ + + +
+
+
+ +
+ + + + + + + > + + + + + > + + + +
+ +
+ /> + + +
+ /> + + + + +
+ + + +
+
+
+ +
+ + + + +> + + +
+ +
+ +
+
+ +
+'; + print_bracket_link( 'message_page.php', lang_get( 'proceed' ) ); +?> +
+ + + +
+ + 0 ) AND ( $f_step < 4 )) { +?> + + + + + + + + + + + + + +
+ +