Completed
Push — gcconnex ( ee5ffc...718fe4 )
by Ilia
09:37 queued 04:29
created
mod/file/languages/en.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@  discard block
 block discarded – undo
3 3
 return array(
4 4
 	
5 5
 		/**
6
-		* Menu items and titles
7
-		*/
6
+		 * Menu items and titles
7
+		 */
8 8
 
9 9
 'file' => "Files",
10 10
 'file:user' => "%s's files",
@@ -78,8 +78,8 @@  discard block
 block discarded – undo
78 78
 
79 79
 
80 80
 		/**
81
-		* Embed media
82
-		**/
81
+		 * Embed media
82
+		 **/
83 83
 
84 84
 'file:embed' => "Embed media",
85 85
 'file:embedall' => "All",
@@ -98,16 +98,16 @@  discard block
 block discarded – undo
98 98
 
99 99
 
100 100
 		/**
101
-		* Status messages
102
-		*/
101
+		 * Status messages
102
+		 */
103 103
 
104 104
 'file:saved' => "Your file was successfully saved.",
105 105
 'file:deleted' => "Your file was successfully deleted.",
106 106
 
107 107
 
108 108
 		/**
109
-		* Error messages
110
-		*/
109
+		 * Error messages
110
+		 */
111 111
 	'file:none' => "No files.",
112 112
 	'file:uploadfailed' => "Sorry; we could not save your file.",
113 113
 	'file:downloadfailed' => "Sorry; this file is not available at this time.",
Please login to merge, or discard this patch.
mod/file/actions/file/upload.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -8,10 +8,10 @@  discard block
 block discarded – undo
8 8
 // Get variables
9 9
 $title = htmlspecialchars(get_input('title', '', false), ENT_QUOTES, 'UTF-8');
10 10
 $title2 = htmlspecialchars(get_input('title2', '', false), ENT_QUOTES, 'UTF-8');
11
-$title3 = gc_implode_translation($title,$title2);
11
+$title3 = gc_implode_translation($title, $title2);
12 12
 $desc = get_input("description");
13 13
 $desc2 = get_input("description2");
14
-$desc3 = gc_implode_translation($desc,$desc2);
14
+$desc3 = gc_implode_translation($desc, $desc2);
15 15
 $access_id = (int) get_input("access_id");
16 16
 $container_guid = (int) get_input('container_guid', 0);
17 17
 $guid = (int) get_input('file_guid');
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 		}
98 98
 	}
99 99
 
100
-	$filestorename = elgg_strtolower(time().$_FILES['upload']['name']);
100
+	$filestorename = elgg_strtolower(time() . $_FILES['upload']['name']);
101 101
 
102 102
 	$file->setFilename($prefix . $filestorename);
103 103
 	$file->originalfilename = $_FILES['upload']['name'];
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
 	if (elgg_is_active_plugin('cp_notifications') && $file_edit != 1)
118 118
 		elgg_trigger_event('single_file_upload', $file->getType(), $file);
119 119
 	else
120
-		elgg_unregister_event_handler('create','object','cp_create_notification');
120
+		elgg_unregister_event_handler('create', 'object', 'cp_create_notification');
121 121
 	
122 122
 	$thumb = new ElggFile();
123 123
 	$thumb->owner_guid = $file->owner_guid;
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
 		],
147 147
 	];
148 148
 
149
-	$remove_thumbs = function () use ($file, $sizes, $thumb) {
149
+	$remove_thumbs = function() use ($file, $sizes, $thumb) {
150 150
 		if (!$file->guid) {
151 151
 			return;
152 152
 		}
Please login to merge, or discard this patch.
Braces   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -114,10 +114,11 @@
 block discarded – undo
114 114
 	$guid = $file->save();
115 115
 
116 116
 	/// execute this line of code only if cp_notifications is active and that file is not minor edit
117
-	if (elgg_is_active_plugin('cp_notifications') && $file_edit != 1)
118
-		elgg_trigger_event('single_file_upload', $file->getType(), $file);
119
-	else
120
-		elgg_unregister_event_handler('create','object','cp_create_notification');
117
+	if (elgg_is_active_plugin('cp_notifications') && $file_edit != 1) {
118
+			elgg_trigger_event('single_file_upload', $file->getType(), $file);
119
+	} else {
120
+			elgg_unregister_event_handler('create','object','cp_create_notification');
121
+	}
121 122
 	
122 123
 	$thumb = new ElggFile();
123 124
 	$thumb->owner_guid = $file->owner_guid;
Please login to merge, or discard this patch.
mod/file/pages/file/view.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,10 +19,10 @@
 block discarded – undo
19 19
 
20 20
 $lang = get_current_language();
21 21
 
22
-if (!$owner->title){
22
+if (!$owner->title) {
23 23
 	$crumbs_title = $owner->name;
24 24
 
25
-}else{
25
+} else {
26 26
 	$crumbs_title = gc_explode_translation($owner->title, $lang);
27 27
 }
28 28
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 if (!$owner->title){
23 23
 	$crumbs_title = $owner->name;
24 24
 
25
-}else{
25
+} else{
26 26
 	$crumbs_title = gc_explode_translation($owner->title, $lang);
27 27
 }
28 28
 
Please login to merge, or discard this patch.
mod/file/pages/file/edit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
 elgg_push_breadcrumb(elgg_echo('file'), "file/all");
24 24
 
25
-elgg_push_breadcrumb(gc_explode_translation($file->title,$lang), $file->getURL());
25
+elgg_push_breadcrumb(gc_explode_translation($file->title, $lang), $file->getURL());
26 26
 
27 27
 
28 28
 elgg_push_breadcrumb($title);
Please login to merge, or discard this patch.
mod/file/pages/file/download.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 header("Content-Length: {$file->getSize()}");
37 37
 
38 38
 while (ob_get_level()) {
39
-    ob_end_clean();
39
+	ob_end_clean();
40 40
 }
41 41
 flush();
42 42
 readfile($file->getFilenameOnFilestore());
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 }
17 17
 
18 18
 $mime = $file->getMimeType();
19
-if( $mime == "googledoc" ){
19
+if ($mime == "googledoc") {
20 20
 	header("Location: " . $file->url);
21 21
 } else if (!$mime) {
22 22
 	$mime = "application/octet-stream";
Please login to merge, or discard this patch.
mod/file/start.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -360,7 +360,7 @@
 block discarded – undo
360 360
 
361 361
 		// thumbnails get first priority
362 362
 		if ($file->thumbnail) {
363
-			$ts = (int)$file->icontime;
363
+			$ts = (int) $file->icontime;
364 364
 			return "mod/file/thumbnail.php?file_guid=$file->guid&size=$size&icontime=$ts";
365 365
 		}
366 366
 
Please login to merge, or discard this patch.
mod/file/views/default/river/object/file/create.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 $object = $item->getObjectEntity();
11 11
 
12 12
 
13
-	$description = gc_explode_translation($object->description,$lang);
13
+	$description = gc_explode_translation($object->description, $lang);
14 14
 
15 15
 
16 16
 $excerpt = strip_tags($description);
Please login to merge, or discard this patch.
mod/b_extended_profile/languages/fr.php 2 patches
Indentation   +205 added lines, -205 removed lines patch added patch discarded remove patch
@@ -7,216 +7,216 @@
 block discarded – undo
7 7
  */
8 8
 
9 9
 $french = array(
10
-    //accessibility changes
11
-    'profile:content:menu' => "Menu du contenu de l'utilisateur",
12
-    'profile:content:to' => "à",
13
-    'profile:content:for' => "pour",
14
-
15
-    'temp:languages:disabled:message' => "<br />Nous sommes en train de re-travailler comment les compétences linguistiques apparaîtront dans les profils GCconnex.<br />Restez à l'écoute pour des mises à jour.",
16
-
17
-    //edit profile message
18
-    'profile:notsaved' => 'Not all information could be saved, empty fields are not allowed', /* NEW */
19
-    'profile:title' => "%s's Profile", /* NEW */
20
-    'profile:contactinfo' => 'Contact Info', /* NEW */
21
-
22
-    //user Settings Details
23
-    'item:object:MySkill' => 'Compétences inscrites dans le profil',
24
-    'item:object:experience' => 'Expérience de travail inscrite dans le profil',
25
-    'item:object:education' => 'Niveau d\'édudes inscrit dans le profil',
26
-
27
-    //profile sidebar
28
-    'gcprofile:nocoll' => '%s n\'a pris contact avec aucun de ses collègues pour l\'instant.',
29
-    'gcprofile:nogroups' => '%s ne s\'est joint à aucun groupe pour l\'instant.',
30
-
31
-    //Email Verification
32
-    'gcc_profile:error' => "La modification n'a pas été sauvegardée : ",
33
-    'gcc_profile:missingemail' => "Adresse de courriel manquante",
34
-    'gcc_profile:notaccepted' => "Vous devez donner une adresse de courriel du Gouvernement du Canada",
35
-
36
-    //MAIN PROFILE PAGE
37
-    'gcconnex_profile:edit_profile' => 'Modifier',
38
-    'gcconnex_profile:user_content' => 'Contenu personnel',
39
-    'gcconnex_profile:profile:edit_avatar' => 'Modifier mon avatar',
40
-
41
-    //MAIN PROFILE TABS
42
-    'gcconnex_profile:profile' => 'Profil',
43
-    'gcconnex_profile:widgets' => 'Widgets',
44
-    'gcconnex_profile:portfolio' =>  'Portfolio',
45
-
46
-    //PROFILE
47
-    'gcconnex_profile:about_me' => 'À mon sujet',
48
-    'gcconnex_profile:education' => 'Études',
49
-    'gcconnex_profile:experience' => 'Expérience de travail',
50
-    'gcconnex_profile:gc_skills' => 'Compétences',
51
-    'gcconnex_profile:edit' => 'Modifier',
52
-    'gcconnex_profile:cancel' => 'Annuler',
53
-    'gcconnex_profile:save' => 'Sauvegarder',
54
-    'gcconnex_profile:present' => 'Maintenant',
55
-    'gcconnex_profile:about_me:empty' => 'Ajoutez des précisions à votre sujet en cliquant sur « Modifier » dans le coin supérieur droit de cette section.',
56
-    'gcconnex_profile:about_me:access' => 'Accès aux renseignements à mon sujet ',
57
-
58
-    // BASIC PROFILE FORM
59
-    'gcconnex_profile:basic:header' => 'Modifier le profil de base',
60
-    'gcconnex_profile:basic:name' => 'Nom ',
61
-    'gcconnex_profile:basic:job' => 'Titre ',
62
-    'gcconnex_profile:basic:department' => 'Ministère ',
63
-    'gcconnex_profile:basic:location' => 'Adresse ',
64
-    'gcconnex_profile:basic:phone' => 'Téléphone ',
65
-    'gcconnex_profile:basic:mobile' => 'Cellulaire ',
66
-    'gcconnex_profile:basic:email' => 'Courriel ',
67
-    'gcconnex_profile:basic:website' =>  'Site Web ',
68
-    'gcconnex_profile:basic:micro_confirmation' => 'Les micro-affectations sont des affectations de courte durée publiées sur GCconnex et offertes à tous les fonctionnaires, sans égard à leur ministère. Elles sont de courte durée et de portée restreinte.<p>Avant de présenter votre candidature pour participer à des micro-affectations, vous devez d\'abord obtenir l\'autorisation de votre gestionnaire, puis cliquer sur la case à cocher ci-dessous.', //Micro affectation ou micro-mission?
69
-    'gcconnex_profile:basic:micro_checkbox' => 'Je souhaite présenter ma candidature pour les micro-affectations.',
70
-    'gcconnex_profile:basic:save' => 'Sauvegarder',
71
-
72
-    // MONTHS
73
-    'gcconnex_profile:month:january' => 'Janvier',
74
-    'gcconnex_profile:month:february' => 'Février',
75
-    'gcconnex_profile:month:march' => 'Mars',
76
-    'gcconnex_profile:month:april' => 'Avril',
77
-    'gcconnex_profile:month:may' => 'Mai',
78
-    'gcconnex_profile:month:june' => 'Juin',
79
-    'gcconnex_profile:month:july' => 'Juillet',
80
-    'gcconnex_profile:month:august' => 'Août',
81
-    'gcconnex_profile:month:september' => 'Septembre',
82
-    'gcconnex_profile:month:october' => 'Octobre',
83
-    'gcconnex_profile:month:november' => 'Novembre',
84
-    'gcconnex_profile:month:december' => 'Décembre',
85
-
86
-    // EDUCATION
87
-    'gcconnex_profile:education:school' => 'Nom de l\'établissement ',
88
-    'gcconnex_profile:education:start_month' => 'Mois de début ',
89
-    'gcconnex_profile:education:start_year' => 'Année de début ',
90
-    'gcconnex_profile:education:end_year' => 'Année de fin ',
91
-    'gcconnex_profile:education:end_month' => 'Mois de fin ',
92
-    'gcconnex_profile:education:ongoing' => 'J\'étudie encore dans cet établissement',
93
-    'gcconnex_profile:education:degree' => 'Diplôme obtenu ',
94
-    'gcconnex_profile:education:program' => 'Programme ',
95
-    'gcconnex_profile:education:field' =>  'Domaine d\'études ',
96
-    'gcconnex_profile:education:delete' => 'Supprimer cette entrée',
97
-    'gcconnex_profile:education:add' => 'Ajouter d\'autres renseignements sur mes études',
98
-    'gcconnex_profile:education:access' => 'Accès aux renseignements sur mes études ',
99
-    'gcconnex_profile:education:present' => 'Maintenant',
100
-    'gcconnex_profile:education:empty' => 'Ajoutez les renseignements sur vos études en cliquant sur « Modifier » dans le coin supérieur droit de cette section.',
101
-    'gcconnex_profile:education:start' => 'Début',
102
-    'gcconnex_profile:education:end' =>  'Fin',
103
-
104
-    // WORK EXPERIENCE
105
-    'gcconnex_profile:experience:organization' => 'Nom de l’organisation ',
106
-    'gcconnex_profile:experience:title' => 'Titre ',
107
-    'gcconnex_profile:experience:start_month' => 'Mois de début ',
108
-    'gcconnex_profile:experience:year' => 'Année ',
109
-    'gcconnex_profile:experience:end_month' => 'Mois de fin ',
110
-    'gcconnex_profile:experience:ongoing' => 'J\'occupe encore ce poste',
111
-    'gcconnex_profile:experience:responsibilities' => 'Responsabilités',
112
-    'gcconnex_profile:experience:delete' =>  'Supprimer cette entrée',
113
-    'gcconnex_profile:experience:add' => 'Ajouter d\'autres renseignements sur mon expérience de travail',
114
-    'gcconnex_profile:experience:access' =>  'Accès aux renseignements sur mon expérience de travail ',
115
-    'gcconnex_profile:experience:present' => 'Maintenant',
116
-    'gcconnex_profile:experience:colleagues' =>  'Collègues ',
117
-    'gcconnex_profile:experience:empty' => 'Ajoutez les renseignements sur votre expérience de travail en cliquant sur "Modifier" dans le coin supérieur droit de cette section.',
118
-    'gcconnex_profile:experience:colleagues_empty' => 'Vous n\'avez inscrit aucun nom de collègue dans cette section.',
119
-    'gcconnex_profile:experience:colleague_suggest' => 'Pour lier un ou une collègue à cette entrée, cette personne doit faire partie de votre liste de collègues GCconnex',
120
-
121
-    // SKILLS
122
-    'gcconnex_profile:gc_skill:add' => 'Ajouter une nouvelle compétence',
123
-    'gcconnex_profile:gc_skill:delete' => 'Supprimer cette compétence',
124
-    'gcconnex_profile:gc_skill:save' => 'Voulez-vous vraiment sauvegarder ces modifications? Toutes les recommandations relatives aux compétences que vous avez supprimées seront effacées de façon permanente.',
125
-    'gcconnex_profile:gc_skill:empty' => 'Ajoutez les renseignements sur vos compétences en cliquant sur "Modifier" dans le coin supérieur droit de cette section.',
126
-    'gcconnex_profile:gc_skill:endorse' => 'Valider',
127
-    'gcconnex_profile:gc_skill:limit' => 'Vous pouvez ajouter un maximum de 15 compétences.',
128
-    'gcconnex_profile:gc_skill:access' => 'Qui peut voir mes compétences',
129
-    'gcconnex_profile:gc_skill:endorsement' => ' approbation',
130
-    'gcconnex_profile:gc_skill:who' => 'Qui a approuvé cette compétence.',
131
-    'gcconnex_profile:gc_skill:allendorse' => 'Voir toutes les mentions légales.',
132
-
133
-    // leftover skills
134
-    'gcconnex_profile:gc_skill:leftover' => 'Vous avez précédemment ajouté des compétences à votre profil GCconnex. Veuillez passer en revue les compétences ci-dessous et les verser dans ce nouveau gabarit, au besoin. Lorsque vous ajoutez des compétences à votre profil, assurez-vous qu\'il s\'agit de compétences que vous croyez réellement posséder, qu\'elles sont précises, qu\'ils s\'agit de comptéences professionnelles, et qu’elles permettent aux personnes qui consultent votre profil d’obtenir de l’information claire, utile et pertinente à votre sujet (essayez d’éviter les expressions comme « plein d’choses » et « accomplir plein de tâches »). ',
135
-    'gcconnex_profile:gc_skill:stop_showing' => 'Ne plus afficher ce message',
136
-
137
-    // LANGUAGES
138
-    'gcconnex_profile:langs' => 'Langues',
139
-    'gcconnex_profile:fol' => 'Première langue officiel',
140
-    'gcconnex_profile:sle' => 'Évaluation de la langue seconde',
141
-    'gcconnex_profile:languages:access' => 'Qui peut voir mes renseignements sur les langues : ',
142
-    'gcconnex_profile:languages:language' => 'Langue :',
143
-    'gcconnex_profile:languages:add' => 'Ajouter d\'autres langues',
144
-    'gcconnex_profile:languages:delete' => 'Supprimer cette entrée',
145
-    'gcconnex_profile:languages:empty' => 'Ajoutez les renseignements sur les langues en cliquant sur "Modifier" dans le coin supérieur droit de cette section.',
146
-    'gcconnex_profile:languages:writtencomp' => 'Compréhension écrite',
147
-    'gcconnex_profile:languages:writtenexp' => 'Expression écrite',
148
-    'gcconnex_profile:languages:oral' => 'Compétence orale',
149
-    'gcconnex_profile:languages:english' => 'Anglais',
150
-    'gcconnex_profile:languages:ENG' => 'Anglais',
151
-    'gcconnex_profile:languages:french' => 'Français',
152
-    'gcconnex_profile:languages:FRA' => 'Français',
153
-    'gcconnex_profile:languages:expiry' => 'Expiration',
154
-    'gcconnex_profile:languages:level' => 'Level',
155
-
156
-    // PORTFOLIO
157
-    'gcconnex_profile:portfolio' => 'Portfolio',
158
-    'gcconnex_profile:portfolio:empty' => 'Ajoutez des éléments à votre portfolio en cliquant sur le bouton « Modifier » dans le coin supérieur droit de cette section pour commencer à .',
159
-    'gcconnex_profile:portfolio:access' => 'Accès aux renseignements de mon portfolio ',
160
-    'gcconnex_profile:portfolio:add' => 'Ajouter une autre entrée au portfolio',
161
-    'gcconnex_profile:portfolio:title' => 'Titre ',
162
-    'gcconnex_profile:portfolio:link' => 'Hyperlien ',
163
-    'gcconnex_profile:portfolio:publication_date' => 'Date de publication ',
164
-    'gcconnex_profile:portfolio:datestamp' => 'Aucune date de publication',
165
-    'gcconnex_profile:portfolio:description' => 'Description ',
166
-    'gcconnex_profile:portfolio:delete' => 'Supprimer cette entrée',
10
+	//accessibility changes
11
+	'profile:content:menu' => "Menu du contenu de l'utilisateur",
12
+	'profile:content:to' => "à",
13
+	'profile:content:for' => "pour",
14
+
15
+	'temp:languages:disabled:message' => "<br />Nous sommes en train de re-travailler comment les compétences linguistiques apparaîtront dans les profils GCconnex.<br />Restez à l'écoute pour des mises à jour.",
16
+
17
+	//edit profile message
18
+	'profile:notsaved' => 'Not all information could be saved, empty fields are not allowed', /* NEW */
19
+	'profile:title' => "%s's Profile", /* NEW */
20
+	'profile:contactinfo' => 'Contact Info', /* NEW */
21
+
22
+	//user Settings Details
23
+	'item:object:MySkill' => 'Compétences inscrites dans le profil',
24
+	'item:object:experience' => 'Expérience de travail inscrite dans le profil',
25
+	'item:object:education' => 'Niveau d\'édudes inscrit dans le profil',
26
+
27
+	//profile sidebar
28
+	'gcprofile:nocoll' => '%s n\'a pris contact avec aucun de ses collègues pour l\'instant.',
29
+	'gcprofile:nogroups' => '%s ne s\'est joint à aucun groupe pour l\'instant.',
30
+
31
+	//Email Verification
32
+	'gcc_profile:error' => "La modification n'a pas été sauvegardée : ",
33
+	'gcc_profile:missingemail' => "Adresse de courriel manquante",
34
+	'gcc_profile:notaccepted' => "Vous devez donner une adresse de courriel du Gouvernement du Canada",
35
+
36
+	//MAIN PROFILE PAGE
37
+	'gcconnex_profile:edit_profile' => 'Modifier',
38
+	'gcconnex_profile:user_content' => 'Contenu personnel',
39
+	'gcconnex_profile:profile:edit_avatar' => 'Modifier mon avatar',
40
+
41
+	//MAIN PROFILE TABS
42
+	'gcconnex_profile:profile' => 'Profil',
43
+	'gcconnex_profile:widgets' => 'Widgets',
44
+	'gcconnex_profile:portfolio' =>  'Portfolio',
45
+
46
+	//PROFILE
47
+	'gcconnex_profile:about_me' => 'À mon sujet',
48
+	'gcconnex_profile:education' => 'Études',
49
+	'gcconnex_profile:experience' => 'Expérience de travail',
50
+	'gcconnex_profile:gc_skills' => 'Compétences',
51
+	'gcconnex_profile:edit' => 'Modifier',
52
+	'gcconnex_profile:cancel' => 'Annuler',
53
+	'gcconnex_profile:save' => 'Sauvegarder',
54
+	'gcconnex_profile:present' => 'Maintenant',
55
+	'gcconnex_profile:about_me:empty' => 'Ajoutez des précisions à votre sujet en cliquant sur « Modifier » dans le coin supérieur droit de cette section.',
56
+	'gcconnex_profile:about_me:access' => 'Accès aux renseignements à mon sujet ',
57
+
58
+	// BASIC PROFILE FORM
59
+	'gcconnex_profile:basic:header' => 'Modifier le profil de base',
60
+	'gcconnex_profile:basic:name' => 'Nom ',
61
+	'gcconnex_profile:basic:job' => 'Titre ',
62
+	'gcconnex_profile:basic:department' => 'Ministère ',
63
+	'gcconnex_profile:basic:location' => 'Adresse ',
64
+	'gcconnex_profile:basic:phone' => 'Téléphone ',
65
+	'gcconnex_profile:basic:mobile' => 'Cellulaire ',
66
+	'gcconnex_profile:basic:email' => 'Courriel ',
67
+	'gcconnex_profile:basic:website' =>  'Site Web ',
68
+	'gcconnex_profile:basic:micro_confirmation' => 'Les micro-affectations sont des affectations de courte durée publiées sur GCconnex et offertes à tous les fonctionnaires, sans égard à leur ministère. Elles sont de courte durée et de portée restreinte.<p>Avant de présenter votre candidature pour participer à des micro-affectations, vous devez d\'abord obtenir l\'autorisation de votre gestionnaire, puis cliquer sur la case à cocher ci-dessous.', //Micro affectation ou micro-mission?
69
+	'gcconnex_profile:basic:micro_checkbox' => 'Je souhaite présenter ma candidature pour les micro-affectations.',
70
+	'gcconnex_profile:basic:save' => 'Sauvegarder',
71
+
72
+	// MONTHS
73
+	'gcconnex_profile:month:january' => 'Janvier',
74
+	'gcconnex_profile:month:february' => 'Février',
75
+	'gcconnex_profile:month:march' => 'Mars',
76
+	'gcconnex_profile:month:april' => 'Avril',
77
+	'gcconnex_profile:month:may' => 'Mai',
78
+	'gcconnex_profile:month:june' => 'Juin',
79
+	'gcconnex_profile:month:july' => 'Juillet',
80
+	'gcconnex_profile:month:august' => 'Août',
81
+	'gcconnex_profile:month:september' => 'Septembre',
82
+	'gcconnex_profile:month:october' => 'Octobre',
83
+	'gcconnex_profile:month:november' => 'Novembre',
84
+	'gcconnex_profile:month:december' => 'Décembre',
85
+
86
+	// EDUCATION
87
+	'gcconnex_profile:education:school' => 'Nom de l\'établissement ',
88
+	'gcconnex_profile:education:start_month' => 'Mois de début ',
89
+	'gcconnex_profile:education:start_year' => 'Année de début ',
90
+	'gcconnex_profile:education:end_year' => 'Année de fin ',
91
+	'gcconnex_profile:education:end_month' => 'Mois de fin ',
92
+	'gcconnex_profile:education:ongoing' => 'J\'étudie encore dans cet établissement',
93
+	'gcconnex_profile:education:degree' => 'Diplôme obtenu ',
94
+	'gcconnex_profile:education:program' => 'Programme ',
95
+	'gcconnex_profile:education:field' =>  'Domaine d\'études ',
96
+	'gcconnex_profile:education:delete' => 'Supprimer cette entrée',
97
+	'gcconnex_profile:education:add' => 'Ajouter d\'autres renseignements sur mes études',
98
+	'gcconnex_profile:education:access' => 'Accès aux renseignements sur mes études ',
99
+	'gcconnex_profile:education:present' => 'Maintenant',
100
+	'gcconnex_profile:education:empty' => 'Ajoutez les renseignements sur vos études en cliquant sur « Modifier » dans le coin supérieur droit de cette section.',
101
+	'gcconnex_profile:education:start' => 'Début',
102
+	'gcconnex_profile:education:end' =>  'Fin',
103
+
104
+	// WORK EXPERIENCE
105
+	'gcconnex_profile:experience:organization' => 'Nom de l’organisation ',
106
+	'gcconnex_profile:experience:title' => 'Titre ',
107
+	'gcconnex_profile:experience:start_month' => 'Mois de début ',
108
+	'gcconnex_profile:experience:year' => 'Année ',
109
+	'gcconnex_profile:experience:end_month' => 'Mois de fin ',
110
+	'gcconnex_profile:experience:ongoing' => 'J\'occupe encore ce poste',
111
+	'gcconnex_profile:experience:responsibilities' => 'Responsabilités',
112
+	'gcconnex_profile:experience:delete' =>  'Supprimer cette entrée',
113
+	'gcconnex_profile:experience:add' => 'Ajouter d\'autres renseignements sur mon expérience de travail',
114
+	'gcconnex_profile:experience:access' =>  'Accès aux renseignements sur mon expérience de travail ',
115
+	'gcconnex_profile:experience:present' => 'Maintenant',
116
+	'gcconnex_profile:experience:colleagues' =>  'Collègues ',
117
+	'gcconnex_profile:experience:empty' => 'Ajoutez les renseignements sur votre expérience de travail en cliquant sur "Modifier" dans le coin supérieur droit de cette section.',
118
+	'gcconnex_profile:experience:colleagues_empty' => 'Vous n\'avez inscrit aucun nom de collègue dans cette section.',
119
+	'gcconnex_profile:experience:colleague_suggest' => 'Pour lier un ou une collègue à cette entrée, cette personne doit faire partie de votre liste de collègues GCconnex',
120
+
121
+	// SKILLS
122
+	'gcconnex_profile:gc_skill:add' => 'Ajouter une nouvelle compétence',
123
+	'gcconnex_profile:gc_skill:delete' => 'Supprimer cette compétence',
124
+	'gcconnex_profile:gc_skill:save' => 'Voulez-vous vraiment sauvegarder ces modifications? Toutes les recommandations relatives aux compétences que vous avez supprimées seront effacées de façon permanente.',
125
+	'gcconnex_profile:gc_skill:empty' => 'Ajoutez les renseignements sur vos compétences en cliquant sur "Modifier" dans le coin supérieur droit de cette section.',
126
+	'gcconnex_profile:gc_skill:endorse' => 'Valider',
127
+	'gcconnex_profile:gc_skill:limit' => 'Vous pouvez ajouter un maximum de 15 compétences.',
128
+	'gcconnex_profile:gc_skill:access' => 'Qui peut voir mes compétences',
129
+	'gcconnex_profile:gc_skill:endorsement' => ' approbation',
130
+	'gcconnex_profile:gc_skill:who' => 'Qui a approuvé cette compétence.',
131
+	'gcconnex_profile:gc_skill:allendorse' => 'Voir toutes les mentions légales.',
132
+
133
+	// leftover skills
134
+	'gcconnex_profile:gc_skill:leftover' => 'Vous avez précédemment ajouté des compétences à votre profil GCconnex. Veuillez passer en revue les compétences ci-dessous et les verser dans ce nouveau gabarit, au besoin. Lorsque vous ajoutez des compétences à votre profil, assurez-vous qu\'il s\'agit de compétences que vous croyez réellement posséder, qu\'elles sont précises, qu\'ils s\'agit de comptéences professionnelles, et qu’elles permettent aux personnes qui consultent votre profil d’obtenir de l’information claire, utile et pertinente à votre sujet (essayez d’éviter les expressions comme « plein d’choses » et « accomplir plein de tâches »). ',
135
+	'gcconnex_profile:gc_skill:stop_showing' => 'Ne plus afficher ce message',
136
+
137
+	// LANGUAGES
138
+	'gcconnex_profile:langs' => 'Langues',
139
+	'gcconnex_profile:fol' => 'Première langue officiel',
140
+	'gcconnex_profile:sle' => 'Évaluation de la langue seconde',
141
+	'gcconnex_profile:languages:access' => 'Qui peut voir mes renseignements sur les langues : ',
142
+	'gcconnex_profile:languages:language' => 'Langue :',
143
+	'gcconnex_profile:languages:add' => 'Ajouter d\'autres langues',
144
+	'gcconnex_profile:languages:delete' => 'Supprimer cette entrée',
145
+	'gcconnex_profile:languages:empty' => 'Ajoutez les renseignements sur les langues en cliquant sur "Modifier" dans le coin supérieur droit de cette section.',
146
+	'gcconnex_profile:languages:writtencomp' => 'Compréhension écrite',
147
+	'gcconnex_profile:languages:writtenexp' => 'Expression écrite',
148
+	'gcconnex_profile:languages:oral' => 'Compétence orale',
149
+	'gcconnex_profile:languages:english' => 'Anglais',
150
+	'gcconnex_profile:languages:ENG' => 'Anglais',
151
+	'gcconnex_profile:languages:french' => 'Français',
152
+	'gcconnex_profile:languages:FRA' => 'Français',
153
+	'gcconnex_profile:languages:expiry' => 'Expiration',
154
+	'gcconnex_profile:languages:level' => 'Level',
155
+
156
+	// PORTFOLIO
157
+	'gcconnex_profile:portfolio' => 'Portfolio',
158
+	'gcconnex_profile:portfolio:empty' => 'Ajoutez des éléments à votre portfolio en cliquant sur le bouton « Modifier » dans le coin supérieur droit de cette section pour commencer à .',
159
+	'gcconnex_profile:portfolio:access' => 'Accès aux renseignements de mon portfolio ',
160
+	'gcconnex_profile:portfolio:add' => 'Ajouter une autre entrée au portfolio',
161
+	'gcconnex_profile:portfolio:title' => 'Titre ',
162
+	'gcconnex_profile:portfolio:link' => 'Hyperlien ',
163
+	'gcconnex_profile:portfolio:publication_date' => 'Date de publication ',
164
+	'gcconnex_profile:portfolio:datestamp' => 'Aucune date de publication',
165
+	'gcconnex_profile:portfolio:description' => 'Description ',
166
+	'gcconnex_profile:portfolio:delete' => 'Supprimer cette entrée',
167 167
 
168 168
 /////////////// Opportunities
169
-        // labels
170
-        "gcconnex_profile:opt:opt-in" => "S'inscrire",
171
-        "gcconnex_profile:opt:set_empty" => "Aucune option ont été sélectionnés.",
172
-        "gcconnex_profile:opt:micro_mission" => "Micro-Mission",
173
-        "gcconnex_profile:opt:job_swap" => "Échange d'emploi",
174
-        "gcconnex_profile:opt:mentored" => "Mentoré",
175
-        "gcconnex_profile:opt:mentoring" => "Mentor",
176
-        "gcconnex_profile:opt:shadowed" => "Observé",
177
-        "gcconnex_profile:opt:shadowing" => "Observateur",
178
-        "gcconnex_profile:opt:peer_coached" => "Pair entraîné",
179
-        "gcconnex_profile:opt:peer_coaching" => "Pair entraineur",
180
-        "gcconnex_profile:opt:opt_in_access" => "Qui peut voir mes choix d'inscription :",
181
-        "gcconnex_profile:opt:yes"=> "Oui",
182
-        "gcconnex_profile:opt:no" => "Non",
183
-        "gcconnex_profile:completed_missions" => "Possibilités complètés grâce à la plateforme de ConneXions carrière",
184
-        "gcconnex_profile:opt:skill_sharing" => "Partage des habiletés",
185
-        "gcconnex_profile:opt:job_sharing" => "Partage d'emploi",
186
-
187
-        // opportunity types opt-in
188
-            // at-level
189
-    "gcconnex_profile:opt:atlevel"=>"Mobilité au même niveau",
190
-        "gcconnex_profile:opt:assignment_deployment_seek" => "Détachements / Affectations participant",
191
-        "gcconnex_profile:opt:assignment_deployment_create" => "Détachements / Affectations hôte",
192
-        "gcconnex_profile:opt:deployment_seek" => "Mutation participant",
193
-        "gcconnex_profile:opt:deployment_create" => "Mutation hôte",
194
-        "gcconnex_profile:opt:job_swap" => "Échange d'emploi",
195
-        "gcconnex_profile:opt:job_rotate" => "Rotation d'emploi",
196
-
197
-            // Developmental
198
-        "gcconnex_profile:opt:micro_missionseek" => "Micro-Mission participant",
199
-        "gcconnex_profile:opt:micro_mission" => "Micro-Mission hôte",
200
-        "gcconnex_profile:opt:shadowing" => "Observation au poste de travail participant",
201
-        "gcconnex_profile:opt:shadowed" => "Observation au poste de travail hôte",
202
-        "gcconnex_profile:opt:mentored" => "Mentoré",
203
-        "gcconnex_profile:opt:mentoring" => "Mentor",
204
-        "gcconnex_profile:opt:job_sharing" => "Partage d'emploi",
205
-        "gcconnex_profile:opt:peer_coached" => "Pair entraîné",
206
-        "gcconnex_profile:opt:peer_coaching" => "Pair entraineur",
207
-        "gcconnex_profile:opt:skill_sharing" => "Partage des habiletés participant",
208
-        "gcconnex_profile:opt:skill_sharing_create" => "Partage des habiletés hôte",
209
-            "gcconnex_profile:opt:participants"=>"Participant",
210
-        "gcconnex_profile:opt:host"=>"Hôte",
169
+		// labels
170
+		"gcconnex_profile:opt:opt-in" => "S'inscrire",
171
+		"gcconnex_profile:opt:set_empty" => "Aucune option ont été sélectionnés.",
172
+		"gcconnex_profile:opt:micro_mission" => "Micro-Mission",
173
+		"gcconnex_profile:opt:job_swap" => "Échange d'emploi",
174
+		"gcconnex_profile:opt:mentored" => "Mentoré",
175
+		"gcconnex_profile:opt:mentoring" => "Mentor",
176
+		"gcconnex_profile:opt:shadowed" => "Observé",
177
+		"gcconnex_profile:opt:shadowing" => "Observateur",
178
+		"gcconnex_profile:opt:peer_coached" => "Pair entraîné",
179
+		"gcconnex_profile:opt:peer_coaching" => "Pair entraineur",
180
+		"gcconnex_profile:opt:opt_in_access" => "Qui peut voir mes choix d'inscription :",
181
+		"gcconnex_profile:opt:yes"=> "Oui",
182
+		"gcconnex_profile:opt:no" => "Non",
183
+		"gcconnex_profile:completed_missions" => "Possibilités complètés grâce à la plateforme de ConneXions carrière",
184
+		"gcconnex_profile:opt:skill_sharing" => "Partage des habiletés",
185
+		"gcconnex_profile:opt:job_sharing" => "Partage d'emploi",
186
+
187
+		// opportunity types opt-in
188
+			// at-level
189
+	"gcconnex_profile:opt:atlevel"=>"Mobilité au même niveau",
190
+		"gcconnex_profile:opt:assignment_deployment_seek" => "Détachements / Affectations participant",
191
+		"gcconnex_profile:opt:assignment_deployment_create" => "Détachements / Affectations hôte",
192
+		"gcconnex_profile:opt:deployment_seek" => "Mutation participant",
193
+		"gcconnex_profile:opt:deployment_create" => "Mutation hôte",
194
+		"gcconnex_profile:opt:job_swap" => "Échange d'emploi",
195
+		"gcconnex_profile:opt:job_rotate" => "Rotation d'emploi",
196
+
197
+			// Developmental
198
+		"gcconnex_profile:opt:micro_missionseek" => "Micro-Mission participant",
199
+		"gcconnex_profile:opt:micro_mission" => "Micro-Mission hôte",
200
+		"gcconnex_profile:opt:shadowing" => "Observation au poste de travail participant",
201
+		"gcconnex_profile:opt:shadowed" => "Observation au poste de travail hôte",
202
+		"gcconnex_profile:opt:mentored" => "Mentoré",
203
+		"gcconnex_profile:opt:mentoring" => "Mentor",
204
+		"gcconnex_profile:opt:job_sharing" => "Partage d'emploi",
205
+		"gcconnex_profile:opt:peer_coached" => "Pair entraîné",
206
+		"gcconnex_profile:opt:peer_coaching" => "Pair entraineur",
207
+		"gcconnex_profile:opt:skill_sharing" => "Partage des habiletés participant",
208
+		"gcconnex_profile:opt:skill_sharing_create" => "Partage des habiletés hôte",
209
+			"gcconnex_profile:opt:participants"=>"Participant",
210
+		"gcconnex_profile:opt:host"=>"Hôte",
211 211
     
212
-    "gcconnex_profile:opt:development"=>"Possibilités de perfectionnement professionnel",
212
+	"gcconnex_profile:opt:development"=>"Possibilités de perfectionnement professionnel",
213 213
         
214
-        // SEPARATION
214
+		// SEPARATION
215 215
         
216
-        "gcconnex_profile:opportunities" => "Opportunités",
217
-        "gcconnex_profile:hide" => "Cacher",
218
-        "gcconnex_profile:confirm:hide" => "Cacher ce Micro-Mission signifie qu'il ne sera plus visible sous 'Possibilités complètés grâce à la plateforme de ConneXions carrière' dans votre profil et cette opération ne peut pas être inversée.",
219
-        "gcconnex_profile:show" => "Montrer"
216
+		"gcconnex_profile:opportunities" => "Opportunités",
217
+		"gcconnex_profile:hide" => "Cacher",
218
+		"gcconnex_profile:confirm:hide" => "Cacher ce Micro-Mission signifie qu'il ne sera plus visible sous 'Possibilités complètés grâce à la plateforme de ConneXions carrière' dans votre profil et cette opération ne peut pas être inversée.",
219
+		"gcconnex_profile:show" => "Montrer"
220 220
 
221 221
 );
222 222
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -220,4 +220,4 @@
 block discarded – undo
220 220
 
221 221
 );
222 222
 
223
-add_translation("fr",$french);
223
+add_translation("fr", $french);
Please login to merge, or discard this patch.
mod/b_extended_profile/languages/en.php 2 patches
Indentation   +195 added lines, -195 removed lines patch added patch discarded remove patch
@@ -7,206 +7,206 @@
 block discarded – undo
7 7
  */
8 8
 
9 9
 $english = array(
10
-    //accessibility changes
11
-    'profile:content:menu' => 'User Content Menu',
12
-    'profile:content:to' => 'to',
13
-    'profile:content:for' => 'for',
14
-
15
-    'temp:languages:disabled:message' => '<br />We are currently re-working language skills will appear in GCconnex profiles.<br />Please stay tuned for updates.',
16
-    //edit profile message
17
-    'profile:notsaved' => 'Not all information could be saved, empty fields are not allowed', /* NEW */
18
-    'profile:title' => "%s's Profile",
19
-    'profile:contactinfo' => 'Contact Info',
20
-
21
-    //user Settings Details
22
-    'item:object:MySkill' => 'Profile skill',
23
-    'item:object:experience' => 'Profile experience',
24
-    'item:object:education' => 'Profile education',
25
-
26
-    //profile sidebar
27
-    'gcprofile:nocoll' => '%s has not connected with any colleagues yet.',
28
-    'gcprofile:nogroups' => '%s has not joined any groups yet.',
29
-
30
-    // Email Verification
31
-    'gcc_profile:error' => 'Did not save: ',
32
-    'gcc_profile:missingemail' => 'Email address is missing',
33
-    'gcc_profile:notaccepted' => 'A Government of Canada email address is required',
34
-
35
-    // MAIN PROFILE PAGE
36
-    'gcconnex_profile:edit_profile' => 'Edit',
37
-    'gcconnex_profile:user_content' => 'Personal Content',
38
-    'gcconnex_profile:profile:edit_avatar' => 'Edit Avatar',
39
-
40
-    // MAIN PROFILE TABS
41
-    'gcconnex_profile:profile' => 'Profile',
42
-    'gcconnex_profile:widgets' => 'Widgets',
43
-    'gcconnex_profile:portfolio' => 'Portfolio',
44
-
45
-    // PROFILE
46
-    'gcconnex_profile:about_me' => 'About Me',
47
-    'gcconnex_profile:education' => 'Education',
48
-    'gcconnex_profile:experience' => 'Work Experience',
49
-    'gcconnex_profile:gc_skills' => 'Skills',
50
-    'gcconnex_profile:edit' => 'Edit',
51
-    'gcconnex_profile:cancel' => 'Cancel',
52
-    'gcconnex_profile:save' => 'Save',
53
-    'gcconnex_profile:present' => 'Present', // for work and education time ranges.. from XX date to Present
54
-    'gcconnex_profile:about_me:empty' => 'Begin entering a description about yourself by clicking "Edit" in the top right corner of this box.',// prompt to add first skill
55
-    'gcconnex_profile:about_me:access' => 'Who can see my description',
56
-
57
-    // BASIC INFORMATION PROFILE FORM
58
-    'gcconnex_profile:basic:header' => 'Edit Basic Profile',
59
-    'gcconnex_profile:basic:name' => 'Name ',
60
-    'gcconnex_profile:basic:job' => 'Title ',
61
-    'gcconnex_profile:basic:department' => 'Department ',
62
-    'gcconnex_profile:basic:location' => 'Location ',
63
-    'gcconnex_profile:basic:phone' => 'Phone ',
64
-    'gcconnex_profile:basic:mobile' => 'Mobile ',
65
-    'gcconnex_profile:basic:email' => 'Email ',
66
-    'gcconnex_profile:basic:website' => 'Website ',
67
-    'gcconnex_profile:basic:micro_confirmation' => 'Micro-assignments are short-duration assignments that are posted on GCconnex and available to all public servants regardless of department. They are short in duration and scope.<p>In order to opt-in for micro-assignments, you must have your manager\'s approval prior to clicking the checkbox below.',
68
-    'gcconnex_profile:basic:micro_checkbox' => 'I would like to opt-in to micro-assignments',
69
-    'gcconnex_profile:basic:save' => 'Save',
70
-
71
-    // MONTHS
72
-    'gcconnex_profile:month:january' => 'January',
73
-    'gcconnex_profile:month:february' => 'February',
74
-    'gcconnex_profile:month:march' => 'March',
75
-    'gcconnex_profile:month:april' => 'April',
76
-    'gcconnex_profile:month:may' => 'May',
77
-    'gcconnex_profile:month:june' => 'June',
78
-    'gcconnex_profile:month:july' => 'July',
79
-    'gcconnex_profile:month:august' => 'August',
80
-    'gcconnex_profile:month:september' => 'September',
81
-    'gcconnex_profile:month:october' => 'October',
82
-    'gcconnex_profile:month:november' => 'November',
83
-    'gcconnex_profile:month:december' => 'December',
84
-
85
-    // EDUCATION
86
-    'gcconnex_profile:education:school' => 'Institution Name ',
87
-    'gcconnex_profile:education:start_month' => 'Start Month ',
88
-    'gcconnex_profile:education:start_year' => 'Start Year ',
89
-    'gcconnex_profile:education:end_year' => 'End Year ',
90
-    'gcconnex_profile:education:end_month' => 'End Month ',
91
-    'gcconnex_profile:education:ongoing' => 'Present',
92
-    'gcconnex_profile:education:degree' => 'Degree ',
93
-    'gcconnex_profile:education:program' => 'Program ',
94
-    'gcconnex_profile:education:field' => 'Field of Study ',
95
-    'gcconnex_profile:education:delete' => 'Delete this entry',
96
-    'gcconnex_profile:education:add' => 'Add more education',
97
-    'gcconnex_profile:education:access' => 'Who can see my education entries',
98
-    'gcconnex_profile:education:present' => 'Present',
99
-    'gcconnex_profile:education:empty' => 'Begin entering your education details by clicking "Edit" in the top right corner of this box.',
100
-    'gcconnex_profile:education:start' => 'Start',
101
-    'gcconnex_profile:education:end' => 'End',
102
-
103
-    // WORK EXPERIENCE
104
-    'gcconnex_profile:experience:organization' => 'Name of Organization ',
105
-    'gcconnex_profile:experience:title' => 'Title',
106
-    'gcconnex_profile:experience:start_month' => 'Start Month ',
107
-    'gcconnex_profile:experience:year' => 'Year ',
108
-    'gcconnex_profile:experience:end_month' => 'End Month ',
109
-    'gcconnex_profile:experience:ongoing' => 'Present',
110
-    'gcconnex_profile:experience:responsibilities' => 'Responsibilities',
111
-    'gcconnex_profile:experience:delete' => 'Delete this entry',
112
-    'gcconnex_profile:experience:add' => 'Add more work experience',
113
-    'gcconnex_profile:experience:access' => 'Who can see my work experience entries ',
114
-    'gcconnex_profile:experience:present' => 'Present',
115
-    'gcconnex_profile:experience:colleagues' => 'Colleagues ',
116
-    'gcconnex_profile:experience:empty' => 'Begin entering your work experience by clicking "Edit" in the top right corner of this box.',
117
-    'gcconnex_profile:experience:colleagues_empty' => 'You haven\'t listed any colleagues for this entry.',
118
-    'gcconnex_profile:experience:colleague_suggest' => 'In order to list a colleague for this entry, you must have already added them as a colleague to your profile.',
119
-
120
-    // SKILLS
121
-    'gcconnex_profile:gc_skill:add' => 'Add new skill',
122
-    'gcconnex_profile:gc_skill:delete' => 'Delete this skill',
123
-    'gcconnex_profile:gc_skill:save' => 'Are you sure you would like to save changes? Any endorsements that are attached to skills that you have removed will be permanently deleted.',
124
-    'gcconnex_profile:gc_skill:empty' => 'Begin entering your skills by clicking "Edit" in the top right corner of this box.',
125
-    'gcconnex_profile:gc_skill:endorse' => 'Endorse',
126
-    'gcconnex_profile:gc_skill:limit' => 'You can add a maximum of 15 skills',
127
-    'gcconnex_profile:gc_skill:click' => 'Click on skill to add/retract endorsement',
128
-    'gcconnex_profile:gc_skill:access' => 'Who can see my skills',
129
-    'gcconnex_profile:gc_skill:endorsement' => ' endorsements',
130
-    'gcconnex_profile:gc_skill:who' => 'Who endorsed this skill.',
131
-    'gcconnex_profile:gc_skill:allendorse' => 'See all endorsements',
132
-
133
-    // leftover skills
134
-    'gcconnex_profile:gc_skill:leftover' => 'You have previously entered skills which may need to be re-entered in the system. Please review your previously entered skills below and re-enter them as needed. When entering or re-entering a skill, <b>please make sure they are actual  skills that you believe you possess, that they are specific, professional and that they provide viewers of your profile with clear, meaningful and useful information</b> (ie: Not "A bunch of things.. " or "Getting things done!").',
135
-    'gcconnex_profile:gc_skill:stop_showing' => 'Stop showing me this message',
136
-
137
-    // LANGUAGES
138
-    'gcconnex_profile:langs' => 'Languages',
139
-    'gcconnex_profile:fol' => 'First official language',
140
-    'gcconnex_profile:sle' => 'Second Language Evaluation',
141
-    'gcconnex_profile:languages:access' => 'Who can see my language entries:',
142
-    'gcconnex_profile:languages:language' => 'Language:',
143
-    'gcconnex_profile:languages:add' => '+ add more languages',
144
-    'gcconnex_profile:languages:delete' => 'Delete this entry',
145
-    'gcconnex_profile:languages:empty' => 'Begin entering your languages by clicking "Edit" in the top right corner of this box.',
146
-    'gcconnex_profile:languages:writtencomp' => 'Written Comprehension',
147
-    'gcconnex_profile:languages:writtenexp' => 'Written Expression',
148
-    'gcconnex_profile:languages:oral' => 'Oral Proficiency',
149
-    'gcconnex_profile:languages:english' => 'English',
150
-    'gcconnex_profile:languages:ENG' => 'English',
151
-    'gcconnex_profile:languages:french' => 'French',
152
-    'gcconnex_profile:languages:FRA' => 'French',
153
-    'gcconnex_profile:languages:expiry' => 'Expiry',
154
-    'gcconnex_profile:languages:level' => 'Level',
155
-
156
-    // PORTFOLIO
157
-    'gcconnex_profile:portfolio' => 'Portfolio',
158
-    'gcconnex_profile:portfolio:empty' => 'Begin adding to your portfolio by clicking "Edit" in the top right corner of this box.',
159
-    'gcconnex_profile:portfolio:access' => 'Who can see my portfolio entries:',
160
-    'gcconnex_profile:portfolio:add' => '+ add more to portfolio',
161
-    'gcconnex_profile:portfolio:title' => 'Title ',
162
-    'gcconnex_profile:portfolio:link' => 'Link ',
163
-    'gcconnex_profile:portfolio:publication_date' => 'Published on ',
164
-    'gcconnex_profile:portfolio:datestamp' => 'No publish date',
165
-    'gcconnex_profile:portfolio:description' => 'Description ',
166
-    'gcconnex_profile:portfolio:delete' => 'Delete this entry',
10
+	//accessibility changes
11
+	'profile:content:menu' => 'User Content Menu',
12
+	'profile:content:to' => 'to',
13
+	'profile:content:for' => 'for',
14
+
15
+	'temp:languages:disabled:message' => '<br />We are currently re-working language skills will appear in GCconnex profiles.<br />Please stay tuned for updates.',
16
+	//edit profile message
17
+	'profile:notsaved' => 'Not all information could be saved, empty fields are not allowed', /* NEW */
18
+	'profile:title' => "%s's Profile",
19
+	'profile:contactinfo' => 'Contact Info',
20
+
21
+	//user Settings Details
22
+	'item:object:MySkill' => 'Profile skill',
23
+	'item:object:experience' => 'Profile experience',
24
+	'item:object:education' => 'Profile education',
25
+
26
+	//profile sidebar
27
+	'gcprofile:nocoll' => '%s has not connected with any colleagues yet.',
28
+	'gcprofile:nogroups' => '%s has not joined any groups yet.',
29
+
30
+	// Email Verification
31
+	'gcc_profile:error' => 'Did not save: ',
32
+	'gcc_profile:missingemail' => 'Email address is missing',
33
+	'gcc_profile:notaccepted' => 'A Government of Canada email address is required',
34
+
35
+	// MAIN PROFILE PAGE
36
+	'gcconnex_profile:edit_profile' => 'Edit',
37
+	'gcconnex_profile:user_content' => 'Personal Content',
38
+	'gcconnex_profile:profile:edit_avatar' => 'Edit Avatar',
39
+
40
+	// MAIN PROFILE TABS
41
+	'gcconnex_profile:profile' => 'Profile',
42
+	'gcconnex_profile:widgets' => 'Widgets',
43
+	'gcconnex_profile:portfolio' => 'Portfolio',
44
+
45
+	// PROFILE
46
+	'gcconnex_profile:about_me' => 'About Me',
47
+	'gcconnex_profile:education' => 'Education',
48
+	'gcconnex_profile:experience' => 'Work Experience',
49
+	'gcconnex_profile:gc_skills' => 'Skills',
50
+	'gcconnex_profile:edit' => 'Edit',
51
+	'gcconnex_profile:cancel' => 'Cancel',
52
+	'gcconnex_profile:save' => 'Save',
53
+	'gcconnex_profile:present' => 'Present', // for work and education time ranges.. from XX date to Present
54
+	'gcconnex_profile:about_me:empty' => 'Begin entering a description about yourself by clicking "Edit" in the top right corner of this box.',// prompt to add first skill
55
+	'gcconnex_profile:about_me:access' => 'Who can see my description',
56
+
57
+	// BASIC INFORMATION PROFILE FORM
58
+	'gcconnex_profile:basic:header' => 'Edit Basic Profile',
59
+	'gcconnex_profile:basic:name' => 'Name ',
60
+	'gcconnex_profile:basic:job' => 'Title ',
61
+	'gcconnex_profile:basic:department' => 'Department ',
62
+	'gcconnex_profile:basic:location' => 'Location ',
63
+	'gcconnex_profile:basic:phone' => 'Phone ',
64
+	'gcconnex_profile:basic:mobile' => 'Mobile ',
65
+	'gcconnex_profile:basic:email' => 'Email ',
66
+	'gcconnex_profile:basic:website' => 'Website ',
67
+	'gcconnex_profile:basic:micro_confirmation' => 'Micro-assignments are short-duration assignments that are posted on GCconnex and available to all public servants regardless of department. They are short in duration and scope.<p>In order to opt-in for micro-assignments, you must have your manager\'s approval prior to clicking the checkbox below.',
68
+	'gcconnex_profile:basic:micro_checkbox' => 'I would like to opt-in to micro-assignments',
69
+	'gcconnex_profile:basic:save' => 'Save',
70
+
71
+	// MONTHS
72
+	'gcconnex_profile:month:january' => 'January',
73
+	'gcconnex_profile:month:february' => 'February',
74
+	'gcconnex_profile:month:march' => 'March',
75
+	'gcconnex_profile:month:april' => 'April',
76
+	'gcconnex_profile:month:may' => 'May',
77
+	'gcconnex_profile:month:june' => 'June',
78
+	'gcconnex_profile:month:july' => 'July',
79
+	'gcconnex_profile:month:august' => 'August',
80
+	'gcconnex_profile:month:september' => 'September',
81
+	'gcconnex_profile:month:october' => 'October',
82
+	'gcconnex_profile:month:november' => 'November',
83
+	'gcconnex_profile:month:december' => 'December',
84
+
85
+	// EDUCATION
86
+	'gcconnex_profile:education:school' => 'Institution Name ',
87
+	'gcconnex_profile:education:start_month' => 'Start Month ',
88
+	'gcconnex_profile:education:start_year' => 'Start Year ',
89
+	'gcconnex_profile:education:end_year' => 'End Year ',
90
+	'gcconnex_profile:education:end_month' => 'End Month ',
91
+	'gcconnex_profile:education:ongoing' => 'Present',
92
+	'gcconnex_profile:education:degree' => 'Degree ',
93
+	'gcconnex_profile:education:program' => 'Program ',
94
+	'gcconnex_profile:education:field' => 'Field of Study ',
95
+	'gcconnex_profile:education:delete' => 'Delete this entry',
96
+	'gcconnex_profile:education:add' => 'Add more education',
97
+	'gcconnex_profile:education:access' => 'Who can see my education entries',
98
+	'gcconnex_profile:education:present' => 'Present',
99
+	'gcconnex_profile:education:empty' => 'Begin entering your education details by clicking "Edit" in the top right corner of this box.',
100
+	'gcconnex_profile:education:start' => 'Start',
101
+	'gcconnex_profile:education:end' => 'End',
102
+
103
+	// WORK EXPERIENCE
104
+	'gcconnex_profile:experience:organization' => 'Name of Organization ',
105
+	'gcconnex_profile:experience:title' => 'Title',
106
+	'gcconnex_profile:experience:start_month' => 'Start Month ',
107
+	'gcconnex_profile:experience:year' => 'Year ',
108
+	'gcconnex_profile:experience:end_month' => 'End Month ',
109
+	'gcconnex_profile:experience:ongoing' => 'Present',
110
+	'gcconnex_profile:experience:responsibilities' => 'Responsibilities',
111
+	'gcconnex_profile:experience:delete' => 'Delete this entry',
112
+	'gcconnex_profile:experience:add' => 'Add more work experience',
113
+	'gcconnex_profile:experience:access' => 'Who can see my work experience entries ',
114
+	'gcconnex_profile:experience:present' => 'Present',
115
+	'gcconnex_profile:experience:colleagues' => 'Colleagues ',
116
+	'gcconnex_profile:experience:empty' => 'Begin entering your work experience by clicking "Edit" in the top right corner of this box.',
117
+	'gcconnex_profile:experience:colleagues_empty' => 'You haven\'t listed any colleagues for this entry.',
118
+	'gcconnex_profile:experience:colleague_suggest' => 'In order to list a colleague for this entry, you must have already added them as a colleague to your profile.',
119
+
120
+	// SKILLS
121
+	'gcconnex_profile:gc_skill:add' => 'Add new skill',
122
+	'gcconnex_profile:gc_skill:delete' => 'Delete this skill',
123
+	'gcconnex_profile:gc_skill:save' => 'Are you sure you would like to save changes? Any endorsements that are attached to skills that you have removed will be permanently deleted.',
124
+	'gcconnex_profile:gc_skill:empty' => 'Begin entering your skills by clicking "Edit" in the top right corner of this box.',
125
+	'gcconnex_profile:gc_skill:endorse' => 'Endorse',
126
+	'gcconnex_profile:gc_skill:limit' => 'You can add a maximum of 15 skills',
127
+	'gcconnex_profile:gc_skill:click' => 'Click on skill to add/retract endorsement',
128
+	'gcconnex_profile:gc_skill:access' => 'Who can see my skills',
129
+	'gcconnex_profile:gc_skill:endorsement' => ' endorsements',
130
+	'gcconnex_profile:gc_skill:who' => 'Who endorsed this skill.',
131
+	'gcconnex_profile:gc_skill:allendorse' => 'See all endorsements',
132
+
133
+	// leftover skills
134
+	'gcconnex_profile:gc_skill:leftover' => 'You have previously entered skills which may need to be re-entered in the system. Please review your previously entered skills below and re-enter them as needed. When entering or re-entering a skill, <b>please make sure they are actual  skills that you believe you possess, that they are specific, professional and that they provide viewers of your profile with clear, meaningful and useful information</b> (ie: Not "A bunch of things.. " or "Getting things done!").',
135
+	'gcconnex_profile:gc_skill:stop_showing' => 'Stop showing me this message',
136
+
137
+	// LANGUAGES
138
+	'gcconnex_profile:langs' => 'Languages',
139
+	'gcconnex_profile:fol' => 'First official language',
140
+	'gcconnex_profile:sle' => 'Second Language Evaluation',
141
+	'gcconnex_profile:languages:access' => 'Who can see my language entries:',
142
+	'gcconnex_profile:languages:language' => 'Language:',
143
+	'gcconnex_profile:languages:add' => '+ add more languages',
144
+	'gcconnex_profile:languages:delete' => 'Delete this entry',
145
+	'gcconnex_profile:languages:empty' => 'Begin entering your languages by clicking "Edit" in the top right corner of this box.',
146
+	'gcconnex_profile:languages:writtencomp' => 'Written Comprehension',
147
+	'gcconnex_profile:languages:writtenexp' => 'Written Expression',
148
+	'gcconnex_profile:languages:oral' => 'Oral Proficiency',
149
+	'gcconnex_profile:languages:english' => 'English',
150
+	'gcconnex_profile:languages:ENG' => 'English',
151
+	'gcconnex_profile:languages:french' => 'French',
152
+	'gcconnex_profile:languages:FRA' => 'French',
153
+	'gcconnex_profile:languages:expiry' => 'Expiry',
154
+	'gcconnex_profile:languages:level' => 'Level',
155
+
156
+	// PORTFOLIO
157
+	'gcconnex_profile:portfolio' => 'Portfolio',
158
+	'gcconnex_profile:portfolio:empty' => 'Begin adding to your portfolio by clicking "Edit" in the top right corner of this box.',
159
+	'gcconnex_profile:portfolio:access' => 'Who can see my portfolio entries:',
160
+	'gcconnex_profile:portfolio:add' => '+ add more to portfolio',
161
+	'gcconnex_profile:portfolio:title' => 'Title ',
162
+	'gcconnex_profile:portfolio:link' => 'Link ',
163
+	'gcconnex_profile:portfolio:publication_date' => 'Published on ',
164
+	'gcconnex_profile:portfolio:datestamp' => 'No publish date',
165
+	'gcconnex_profile:portfolio:description' => 'Description ',
166
+	'gcconnex_profile:portfolio:delete' => 'Delete this entry',
167 167
 
168 168
 /////////////// Opportunities platform
169
-    // labels
170
-        "gcconnex_profile:opt:opt-in" => "Opt In",
171
-        "gcconnex_profile:opt:set_empty" => "No opt-in options were selected.",
172
-        "gcconnex_profile:opt:opt_in_access" => "Who can see my opt-in choices: ",
173
-        "gcconnex_profile:opt:yes" => "Yes",
174
-        "gcconnex_profile:opt:no" => "No",
175
-        "gcconnex_profile:completed_missions" => "Completed Career ConneXions Opportunities",
176
-
177
-    // opportunity types opt-in
178
-            // at-level
179
-    "gcconnex_profile:opt:atlevel"=>"At-Level Mobility",
180
-        "gcconnex_profile:opt:assignment_deployment_seek" => "Assignment / Secondment Seeker",
181
-        "gcconnex_profile:opt:assignment_deployment_create" => "Assignment / Opportunity Creator",
182
-        "gcconnex_profile:opt:deployment_seek" => "Deployment Seeker",
183
-        "gcconnex_profile:opt:deployment_create" => "Deployment Opportunity Creator",
184
-        "gcconnex_profile:opt:job_swap" => "Job Swap Seeker",
185
-        "gcconnex_profile:opt:job_rotate" => "Job Rotation Seeker",
186
-
187
-            // Developmental
188
-        "gcconnex_profile:opt:micro_missionseek" => "Micro-Mission Seeker",
189
-        "gcconnex_profile:opt:micro_mission" => "Micro-Mission Opportunity Creator",
190
-        "gcconnex_profile:opt:shadowing" => "Job Shadowing Seeker",
191
-        "gcconnex_profile:opt:shadowed" => "Job Shadowing Opportunity Creator",
192
-        "gcconnex_profile:opt:mentored" => "Mentee",
193
-        "gcconnex_profile:opt:mentoring" => "Mentor",
194
-        "gcconnex_profile:opt:job_sharing" => "Job Sharing",
195
-        "gcconnex_profile:opt:peer_coached" => "Peer Coaching Seeker",
196
-        "gcconnex_profile:opt:peer_coaching" => "Peer Coach",
197
-        "gcconnex_profile:opt:skill_sharing" => "Skill Sharing Seeker",
198
-        "gcconnex_profile:opt:skill_sharing_create" => "Skill Sharing Opportunity Creator",
199
-        "gcconnex_profile:opt:participants"=>"Participant",
200
-        "gcconnex_profile:opt:host"=>"Host",
169
+	// labels
170
+		"gcconnex_profile:opt:opt-in" => "Opt In",
171
+		"gcconnex_profile:opt:set_empty" => "No opt-in options were selected.",
172
+		"gcconnex_profile:opt:opt_in_access" => "Who can see my opt-in choices: ",
173
+		"gcconnex_profile:opt:yes" => "Yes",
174
+		"gcconnex_profile:opt:no" => "No",
175
+		"gcconnex_profile:completed_missions" => "Completed Career ConneXions Opportunities",
176
+
177
+	// opportunity types opt-in
178
+			// at-level
179
+	"gcconnex_profile:opt:atlevel"=>"At-Level Mobility",
180
+		"gcconnex_profile:opt:assignment_deployment_seek" => "Assignment / Secondment Seeker",
181
+		"gcconnex_profile:opt:assignment_deployment_create" => "Assignment / Opportunity Creator",
182
+		"gcconnex_profile:opt:deployment_seek" => "Deployment Seeker",
183
+		"gcconnex_profile:opt:deployment_create" => "Deployment Opportunity Creator",
184
+		"gcconnex_profile:opt:job_swap" => "Job Swap Seeker",
185
+		"gcconnex_profile:opt:job_rotate" => "Job Rotation Seeker",
186
+
187
+			// Developmental
188
+		"gcconnex_profile:opt:micro_missionseek" => "Micro-Mission Seeker",
189
+		"gcconnex_profile:opt:micro_mission" => "Micro-Mission Opportunity Creator",
190
+		"gcconnex_profile:opt:shadowing" => "Job Shadowing Seeker",
191
+		"gcconnex_profile:opt:shadowed" => "Job Shadowing Opportunity Creator",
192
+		"gcconnex_profile:opt:mentored" => "Mentee",
193
+		"gcconnex_profile:opt:mentoring" => "Mentor",
194
+		"gcconnex_profile:opt:job_sharing" => "Job Sharing",
195
+		"gcconnex_profile:opt:peer_coached" => "Peer Coaching Seeker",
196
+		"gcconnex_profile:opt:peer_coaching" => "Peer Coach",
197
+		"gcconnex_profile:opt:skill_sharing" => "Skill Sharing Seeker",
198
+		"gcconnex_profile:opt:skill_sharing_create" => "Skill Sharing Opportunity Creator",
199
+		"gcconnex_profile:opt:participants"=>"Participant",
200
+		"gcconnex_profile:opt:host"=>"Host",
201 201
         
202
-        "gcconnex_profile:opt:development"=>"Developmental Opportunities",
202
+		"gcconnex_profile:opt:development"=>"Developmental Opportunities",
203 203
         
204
-        // SEPARATION
204
+		// SEPARATION
205 205
         
206
-        "gcconnex_profile:opportunities" => "Opportunities",
207
-        "gcconnex_profile:hide" => "Hide",
208
-        "gcconnex_profile:confirm:hide" => "Hiding this Micro-Mission means that it will no longer appear under 'Completed Career ConneXions Opportunities' in your profile and this operation cannot be reversed.",
209
-        "gcconnex_profile:show" => "Show"
206
+		"gcconnex_profile:opportunities" => "Opportunities",
207
+		"gcconnex_profile:hide" => "Hide",
208
+		"gcconnex_profile:confirm:hide" => "Hiding this Micro-Mission means that it will no longer appear under 'Completed Career ConneXions Opportunities' in your profile and this operation cannot be reversed.",
209
+		"gcconnex_profile:show" => "Show"
210 210
 
211 211
 );
212 212
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     'gcconnex_profile:cancel' => 'Cancel',
52 52
     'gcconnex_profile:save' => 'Save',
53 53
     'gcconnex_profile:present' => 'Present', // for work and education time ranges.. from XX date to Present
54
-    'gcconnex_profile:about_me:empty' => 'Begin entering a description about yourself by clicking "Edit" in the top right corner of this box.',// prompt to add first skill
54
+    'gcconnex_profile:about_me:empty' => 'Begin entering a description about yourself by clicking "Edit" in the top right corner of this box.', // prompt to add first skill
55 55
     'gcconnex_profile:about_me:access' => 'Who can see my description',
56 56
 
57 57
     // BASIC INFORMATION PROFILE FORM
Please login to merge, or discard this patch.