Patch #14039 » parent_task_description.diff
app/controllers/issues_controller.rb | ||
---|---|---|
105 | 105 |
@journals.reject!(&:private_notes?) unless User.current.allowed_to?(:view_private_notes, @issue.project) |
106 | 106 |
@journals.reverse! if User.current.wants_comments_in_reverse_order? |
107 | 107 | |
108 |
@parent_issue = @issue.parent unless @issue.parent_issue_id.blank? |
|
109 |
|
|
108 | 110 |
@changesets = @issue.changesets.visible.all |
109 | 111 |
@changesets.reverse! if User.current.wants_comments_in_reverse_order? |
110 | 112 |
app/views/issues/show.html.erb | ||
---|---|---|
68 | 68 |
<%= call_hook(:view_issues_show_details_bottom, :issue => @issue) %> |
69 | 69 |
</table> |
70 | 70 | |
71 |
<% if Setting.parent_issue_description? && @parent_issue %> |
|
72 |
<% if @parent_issue.description? || @parent_issue.attachments.any? %> |
|
73 |
<hr /> |
|
74 |
<div class="parent_description" onclick="$(this).toggleClass('expanded').find('.wiki').toggle();"> |
|
75 |
<p class="label_parent_description"><strong><%=l(:field_parent_description)%></strong></p> |
|
76 |
<div class="wiki"> |
|
77 |
<%= textilizable @parent_issue, :description, :attachments => @parent_issue.attachments %> |
|
78 |
</div> |
|
79 |
</div> |
|
80 |
<% end %> |
|
81 |
<% end %> |
|
82 | ||
71 | 83 |
<% if @issue.description? || @issue.attachments.any? -%> |
72 | 84 |
<hr /> |
73 | 85 |
<% if @issue.description? %> |
app/views/settings/_issues.html.erb | ||
---|---|---|
5 | 5 | |
6 | 6 |
<p><%= setting_select :cross_project_subtasks, cross_project_subtasks_options %></p> |
7 | 7 | |
8 |
<p><%= setting_check_box :parent_issue_description %></p> |
|
9 | ||
8 | 10 |
<p><%= setting_check_box :issue_group_assignment %></p> |
9 | 11 | |
10 | 12 |
<p><%= setting_check_box :default_issue_start_date_to_creation_date %></p> |
config/locales/de.yml | ||
---|---|---|
297 | 297 |
field_cvsroot: CVSROOT |
298 | 298 |
field_default_value: Standardwert |
299 | 299 |
field_delay: Pufferzeit |
300 |
field_parent_description: Beschreibung des übergeordneten Tickets |
|
300 | 301 |
field_description: Beschreibung |
301 | 302 |
field_done_ratio: "% erledigt" |
302 | 303 |
field_downloads: Downloads |
... | ... | |
988 | 989 |
setting_new_project_user_role_id: Rolle, die einem Nicht-Administrator zugeordnet wird, der ein Projekt erstellt |
989 | 990 |
setting_non_working_week_days: Arbeitsfreie Tage |
990 | 991 |
setting_openid: Erlaube OpenID-Anmeldung und -Registrierung |
992 |
setting_parent_issue_description: Anzeige der übergeordneten Beschreibung erlauben |
|
991 | 993 |
setting_password_min_length: Mindestlänge des Kennworts |
992 | 994 |
setting_per_page_options: Objekte pro Seite |
993 | 995 |
setting_plain_text_mail: Nur reinen Text (kein HTML) senden |
config/locales/en-GB.yml | ||
---|---|---|
214 | 214 |
mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}." |
215 | 215 | |
216 | 216 | |
217 |
field_name: Name |
|
218 |
field_description: Description |
|
219 |
field_summary: Summary |
|
220 |
field_is_required: Required |
|
221 |
field_firstname: First name |
|
222 |
field_lastname: Last name |
|
223 |
field_mail: Email |
|
224 |
field_filename: File |
|
225 |
field_filesize: Size |
|
226 |
field_downloads: Downloads |
|
217 |
field_account: Account |
|
218 |
field_activity: Activity |
|
219 |
field_admin: Administrator |
|
220 |
field_assignable: Issues can be assigned to this role |
|
221 |
field_assigned_to: Assignee |
|
222 |
field_assigned_to_role: "Assignee's role" |
|
223 |
field_attr_firstname: Firstname attribute |
|
224 |
field_attr_lastname: Lastname attribute |
|
225 |
field_attr_login: Login attribute |
|
226 |
field_attr_mail: Email attribute |
|
227 |
field_auth_source: Authentication mode |
|
227 | 228 |
field_author: Author |
228 |
field_created_on: Created |
|
229 |
field_updated_on: Updated |
|
230 |
field_field_format: Format |
|
231 |
field_is_for_all: For all projects |
|
232 |
field_possible_values: Possible values |
|
233 |
field_regexp: Regular expression |
|
234 |
field_min_length: Minimum length |
|
235 |
field_max_length: Maximum length |
|
236 |
field_value: Value |
|
229 |
field_base_dn: Base DN |
|
237 | 230 |
field_category: Category |
238 |
field_title: Title |
|
239 |
field_project: Project |
|
240 |
field_issue: Issue |
|
241 |
field_status: Status |
|
242 |
field_notes: Notes |
|
243 |
field_is_closed: Issue closed |
|
244 |
field_is_default: Default value |
|
245 |
field_tracker: Tracker |
|
246 |
field_subject: Subject |
|
231 |
field_column_names: Columns |
|
232 |
field_comments: Comment |
|
233 |
field_comments_sorting: Display comments |
|
234 |
field_content: Content |
|
235 |
field_created_on: Created |
|
236 |
field_default_value: Default value |
|
237 |
field_delay: Delay |
|
238 |
field_description: Description |
|
239 |
field_done_ratio: "% Done" |
|
240 |
field_downloads: Downloads |
|
247 | 241 |
field_due_date: Due date |
248 |
field_assigned_to: Assignee |
|
249 |
field_priority: Priority |
|
242 |
field_editable: Editable |
|
243 |
field_effective_date: Date |
|
244 |
field_estimated_hours: Estimated time |
|
245 |
field_field_format: Format |
|
246 |
field_filename: File |
|
247 |
field_filesize: Size |
|
248 |
field_firstname: First name |
|
250 | 249 |
field_fixed_version: Target version |
251 |
field_user: User |
|
252 |
field_principal: Principal |
|
253 |
field_role: Role |
|
250 |
field_group_by: Group results by |
|
251 |
field_hide_mail: Hide my email address |
|
254 | 252 |
field_homepage: Homepage |
255 |
field_is_public: Public |
|
256 |
field_parent: Subproject of |
|
253 |
field_host: Host |
|
254 |
field_hours: Hours |
|
255 |
field_identifier: Identifier |
|
256 |
field_identity_url: OpenID URL |
|
257 |
field_is_closed: Issue closed |
|
258 |
field_is_default: Default value |
|
259 |
field_is_filter: Used as a filter |
|
260 |
field_is_for_all: For all projects |
|
257 | 261 |
field_is_in_roadmap: Issues displayed in roadmap |
262 |
field_is_public: Public |
|
263 |
field_is_required: Required |
|
264 |
field_issue: Issue |
|
265 |
field_issue_to: Related issue |
|
266 |
field_language: Language |
|
267 |
field_last_login_on: Last connection |
|
268 |
field_lastname: Last name |
|
258 | 269 |
field_login: Login |
270 |
field_mail: Email |
|
259 | 271 |
field_mail_notification: Email notifications |
260 |
field_admin: Administrator |
|
261 |
field_last_login_on: Last connection |
|
262 |
field_language: Language |
|
263 |
field_effective_date: Date |
|
264 |
field_password: Password |
|
272 |
field_max_length: Maximum length |
|
273 |
field_member_of_group: "Assignee's group" |
|
274 |
field_min_length: Minimum length |
|
275 |
field_name: Name |
|
265 | 276 |
field_new_password: New password |
277 |
field_notes: Notes |
|
278 |
field_onthefly: On-the-fly user creation |
|
279 |
field_parent: Subproject of |
|
280 |
field_parent_description: Parent Description |
|
281 |
field_parent_issue: Parent task |
|
282 |
field_parent_title: Parent page |
|
283 |
field_password: Password |
|
266 | 284 |
field_password_confirmation: Confirmation |
267 |
field_version: Version |
|
268 |
field_type: Type |
|
269 |
field_host: Host |
|
270 | 285 |
field_port: Port |
271 |
field_account: Account |
|
272 |
field_base_dn: Base DN |
|
273 |
field_attr_login: Login attribute |
|
274 |
field_attr_firstname: Firstname attribute |
|
275 |
field_attr_lastname: Lastname attribute |
|
276 |
field_attr_mail: Email attribute |
|
277 |
field_onthefly: On-the-fly user creation |
|
286 |
field_possible_values: Possible values |
|
287 |
field_principal: Principal |
|
288 |
field_priority: Priority |
|
289 |
field_project: Project |
|
290 |
field_redirect_existing_links: Redirect existing links |
|
291 |
field_regexp: Regular expression |
|
292 |
field_role: Role |
|
293 |
field_searchable: Searchable |
|
294 |
field_sharing: Sharing |
|
295 |
field_spent_on: Date |
|
278 | 296 |
field_start_date: Start date |
279 |
field_done_ratio: "% Done" |
|
280 |
field_auth_source: Authentication mode |
|
281 |
field_hide_mail: Hide my email address |
|
282 |
field_comments: Comment |
|
283 |
field_url: URL |
|
284 | 297 |
field_start_page: Start page |
298 |
field_status: Status |
|
299 |
field_subject: Subject |
|
285 | 300 |
field_subproject: Subproject |
286 |
field_hours: Hours |
|
287 |
field_activity: Activity |
|
288 |
field_spent_on: Date |
|
289 |
field_identifier: Identifier |
|
290 |
field_is_filter: Used as a filter |
|
291 |
field_issue_to: Related issue |
|
292 |
field_delay: Delay |
|
293 |
field_assignable: Issues can be assigned to this role |
|
294 |
field_redirect_existing_links: Redirect existing links |
|
295 |
field_estimated_hours: Estimated time |
|
296 |
field_column_names: Columns |
|
301 |
field_summary: Summary |
|
302 |
field_text: Text field |
|
297 | 303 |
field_time_entries: Log time |
298 | 304 |
field_time_zone: Time zone |
299 |
field_searchable: Searchable |
|
300 |
field_default_value: Default value |
|
301 |
field_comments_sorting: Display comments |
|
302 |
field_parent_title: Parent page |
|
303 |
field_editable: Editable |
|
304 |
field_watcher: Watcher |
|
305 |
field_identity_url: OpenID URL |
|
306 |
field_content: Content |
|
307 |
field_group_by: Group results by |
|
308 |
field_sharing: Sharing |
|
309 |
field_parent_issue: Parent task |
|
310 |
field_member_of_group: "Assignee's group" |
|
311 |
field_assigned_to_role: "Assignee's role" |
|
312 |
field_text: Text field |
|
305 |
field_title: Title |
|
306 |
field_tracker: Tracker |
|
307 |
field_type: Type |
|
308 |
field_updated_on: Updated |
|
309 |
field_url: URL |
|
310 |
field_user: User |
|
311 |
field_value: Value |
|
312 |
field_version: Version |
|
313 | 313 |
field_visible: Visible |
314 | 314 |
field_warn_on_leaving_unsaved: "Warn me when leaving a page with unsaved text" |
315 |
field_watcher: Watcher |
|
315 | 316 | |
316 |
setting_app_title: Application title
|
|
317 |
setting_activity_days_default: Days displayed on project activity
|
|
317 | 318 |
setting_app_subtitle: Application subtitle |
318 |
setting_welcome_text: Welcome text |
|
319 |
setting_default_language: Default language |
|
320 |
setting_login_required: Authentication required |
|
321 |
setting_self_registration: Self-registration |
|
319 |
setting_app_title: Application title |
|
322 | 320 |
setting_attachment_max_size: Attachment max. size |
323 |
setting_issues_export_limit: Issues export limit |
|
324 |
setting_mail_from: Emission email address |
|
325 |
setting_bcc_recipients: Blind carbon copy recipients (bcc) |
|
326 |
setting_plain_text_mail: Plain text mail (no HTML) |
|
327 |
setting_host_name: Host name and path |
|
328 |
setting_text_formatting: Text formatting |
|
329 |
setting_wiki_compression: Wiki history compression |
|
330 |
setting_feeds_limit: Feed content limit |
|
331 |
setting_default_projects_public: New projects are public by default |
|
332 | 321 |
setting_autofetch_changesets: Autofetch commits |
333 |
setting_sys_api_enabled: Enable WS for repository management |
|
334 |
setting_commit_ref_keywords: Referencing keywords |
|
335 |
setting_commit_fix_keywords: Fixing keywords |
|
336 | 322 |
setting_autologin: Autologin |
337 |
setting_date_format: Date format |
|
338 |
setting_time_format: Time format |
|
323 |
setting_bcc_recipients: Blind carbon copy recipients (bcc) |
|
324 |
setting_cache_formatted_text: Cache formatted text |
|
325 |
setting_commit_fix_keywords: Fixing keywords |
|
326 |
setting_commit_logtime_activity_id: Activity for logged time |
|
327 |
setting_commit_logtime_enabled: Enable time logging |
|
328 |
setting_commit_ref_keywords: Referencing keywords |
|
339 | 329 |
setting_cross_project_issue_relations: Allow cross-project issue relations |
340 |
setting_issue_list_default_columns: Default columns displayed on the issue list
|
|
341 |
setting_emails_header: Email header
|
|
342 |
setting_emails_footer: Email footer
|
|
343 |
setting_protocol: Protocol
|
|
344 |
setting_per_page_options: Objects per page options
|
|
345 |
setting_user_format: Users display format
|
|
346 |
setting_activity_days_default: Days displayed on project activity
|
|
330 |
setting_date_format: Date format
|
|
331 |
setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues
|
|
332 |
setting_default_language: Default language
|
|
333 |
setting_default_notification_option: Default notification option
|
|
334 |
setting_default_projects_modules: Default enabled modules for new projects
|
|
335 |
setting_default_projects_public: New projects are public by default
|
|
336 |
setting_diff_max_lines_displayed: Max number of diff lines displayed
|
|
347 | 337 |
setting_display_subprojects_issues: Display subprojects issues on main projects by default |
338 |
setting_emails_footer: Email footer |
|
339 |
setting_emails_header: Email header |
|
348 | 340 |
setting_enabled_scm: Enabled SCM |
349 |
setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" |
|
350 |
setting_mail_handler_api_enabled: Enable WS for incoming emails |
|
351 |
setting_mail_handler_api_key: API key |
|
352 |
setting_sequential_project_identifiers: Generate sequential project identifiers |
|
353 |
setting_gravatar_enabled: Use Gravatar user icons |
|
354 |
setting_gravatar_default: Default Gravatar image |
|
355 |
setting_diff_max_lines_displayed: Max number of diff lines displayed |
|
341 |
setting_feeds_limit: Feed content limit |
|
356 | 342 |
setting_file_max_size_displayed: Max size of text files displayed inline |
357 |
setting_repository_log_display_limit: Maximum number of revisions displayed on file log |
|
358 |
setting_openid: Allow OpenID login and registration |
|
359 |
setting_password_min_length: Minimum password length |
|
360 |
setting_new_project_user_role_id: Role given to a non-admin user who creates a project |
|
361 |
setting_default_projects_modules: Default enabled modules for new projects |
|
343 |
setting_gantt_items_limit: Maximum number of items displayed on the gantt chart |
|
344 |
setting_gravatar_default: Default Gravatar image |
|
345 |
setting_gravatar_enabled: Use Gravatar user icons |
|
346 |
setting_host_name: Host name and path |
|
362 | 347 |
setting_issue_done_ratio: Calculate the issue done ratio with |
363 | 348 |
setting_issue_done_ratio_issue_field: Use the issue field |
364 | 349 |
setting_issue_done_ratio_issue_status: Use the issue status |
365 |
setting_start_of_week: Start calendars on |
|
366 |
setting_rest_api_enabled: Enable REST web service |
|
367 |
setting_cache_formatted_text: Cache formatted text |
|
368 |
setting_default_notification_option: Default notification option |
|
369 |
setting_commit_logtime_enabled: Enable time logging |
|
370 |
setting_commit_logtime_activity_id: Activity for logged time |
|
371 |
setting_gantt_items_limit: Maximum number of items displayed on the gantt chart |
|
372 | 350 |
setting_issue_group_assignment: Allow issue assignment to groups |
373 |
setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues |
|
351 |
setting_issue_list_default_columns: Default columns displayed on the issue list |
|
352 |
setting_issues_export_limit: Issues export limit |
|
353 |
setting_login_required: Authentication required |
|
354 |
setting_mail_from: Emission email address |
|
355 |
setting_mail_handler_api_enabled: Enable WS for incoming emails |
|
356 |
setting_mail_handler_api_key: API key |
|
357 |
setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" |
|
358 |
setting_new_project_user_role_id: Role given to a non-admin user who creates a project |
|
359 |
setting_openid: Allow OpenID login and registration |
|
360 |
setting_parent_issue_description: Allow display of parent issue description |
|
361 |
setting_password_min_length: Minimum password length |
|
362 |
setting_per_page_options: Objects per page options |
|
363 |
setting_plain_text_mail: Plain text mail (no HTML) |
|
364 |
setting_protocol: Protocol |
|
365 |
setting_repository_log_display_limit: Maximum number of revisions displayed on file log |
|
366 |
setting_rest_api_enabled: Enable REST web service |
|
367 |
setting_self_registration: Self-registration |
|
368 |
setting_sequential_project_identifiers: Generate sequential project identifiers |
|
369 |
setting_start_of_week: Start calendars on |
|
370 |
setting_sys_api_enabled: Enable WS for repository management |
|
371 |
setting_text_formatting: Text formatting |
|
372 |
setting_time_format: Time format |
|
373 |
setting_user_format: Users display format |
|
374 |
setting_welcome_text: Welcome text |
|
375 |
setting_wiki_compression: Wiki history compression |
|
374 | 376 | |
375 | 377 |
permission_add_project: Create project |
376 | 378 |
permission_add_subprojects: Create subprojects |
config/locales/en.yml | ||
---|---|---|
216 | 216 |
mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated" |
217 | 217 |
mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}." |
218 | 218 | |
219 |
field_name: Name |
|
220 |
field_description: Description |
|
221 |
field_summary: Summary |
|
222 |
field_is_required: Required |
|
223 |
field_firstname: First name |
|
224 |
field_lastname: Last name |
|
225 |
field_mail: Email |
|
226 |
field_filename: File |
|
227 |
field_filesize: Size |
|
228 |
field_downloads: Downloads |
|
219 |
field_account: Account |
|
220 |
field_activity: Activity |
|
221 |
field_admin: Administrator |
|
222 |
field_assignable: Issues can be assigned to this role |
|
223 |
field_assigned_to: Assignee |
|
224 |
field_assigned_to_role: "Assignee's role" |
|
225 |
field_attr_firstname: Firstname attribute |
|
226 |
field_attr_lastname: Lastname attribute |
|
227 |
field_attr_login: Login attribute |
|
228 |
field_attr_mail: Email attribute |
|
229 |
field_auth_source: Authentication mode |
|
230 |
field_auth_source_ldap_filter: LDAP filter |
|
229 | 231 |
field_author: Author |
230 |
field_created_on: Created |
|
231 |
field_updated_on: Updated |
|
232 |
field_closed_on: Closed |
|
233 |
field_field_format: Format |
|
234 |
field_is_for_all: For all projects |
|
235 |
field_possible_values: Possible values |
|
236 |
field_regexp: Regular expression |
|
237 |
field_min_length: Minimum length |
|
238 |
field_max_length: Maximum length |
|
239 |
field_value: Value |
|
232 |
field_base_dn: Base DN |
|
233 |
field_board_parent: Parent forum |
|
240 | 234 |
field_category: Category |
241 |
field_title: Title |
|
242 |
field_project: Project |
|
243 |
field_issue: Issue |
|
244 |
field_status: Status |
|
245 |
field_notes: Notes |
|
246 |
field_is_closed: Issue closed |
|
247 |
field_is_default: Default value |
|
248 |
field_tracker: Tracker |
|
249 |
field_subject: Subject |
|
235 |
field_closed_on: Closed |
|
236 |
field_column_names: Columns |
|
237 |
field_comments: Comment |
|
238 |
field_comments_sorting: Display comments |
|
239 |
field_commit_logs_encoding: Commit messages encoding |
|
240 |
field_content: Content |
|
241 |
field_core_fields: Standard fields |
|
242 |
field_created_on: Created |
|
243 |
field_cvs_module: Module |
|
244 |
field_cvsroot: CVSROOT |
|
245 |
field_default_value: Default value |
|
246 |
field_delay: Delay |
|
247 |
field_description: Description |
|
248 |
field_done_ratio: "% Done" |
|
249 |
field_downloads: Downloads |
|
250 | 250 |
field_due_date: Due date |
251 |
field_assigned_to: Assignee |
|
252 |
field_priority: Priority |
|
251 |
field_editable: Editable |
|
252 |
field_effective_date: Date |
|
253 |
field_estimated_hours: Estimated time |
|
254 |
field_field_format: Format |
|
255 |
field_filename: File |
|
256 |
field_filesize: Size |
|
257 |
field_firstname: First name |
|
253 | 258 |
field_fixed_version: Target version |
254 |
field_user: User
|
|
255 |
field_principal: Principal
|
|
256 |
field_role: Role
|
|
259 |
field_generate_password: Generate password
|
|
260 |
field_group_by: Group results by
|
|
261 |
field_hide_mail: Hide my email address
|
|
257 | 262 |
field_homepage: Homepage |
258 |
field_is_public: Public |
|
259 |
field_parent: Subproject of |
|
263 |
field_host: Host |
|
264 |
field_hours: Hours |
|
265 |
field_identifier: Identifier |
|
266 |
field_identity_url: OpenID URL |
|
267 |
field_inherit_members: Inherit members |
|
268 |
field_is_closed: Issue closed |
|
269 |
field_is_default: Default value |
|
270 |
field_is_filter: Used as a filter |
|
271 |
field_is_for_all: For all projects |
|
260 | 272 |
field_is_in_roadmap: Issues displayed in roadmap |
273 |
field_is_private: Private |
|
274 |
field_is_public: Public |
|
275 |
field_is_required: Required |
|
276 |
field_issue: Issue |
|
277 |
field_issue_to: Related issue |
|
278 |
field_issues_visibility: Issues visibility |
|
279 |
field_language: Language |
|
280 |
field_last_login_on: Last connection |
|
281 |
field_lastname: Last name |
|
261 | 282 |
field_login: Login |
283 |
field_mail: Email |
|
262 | 284 |
field_mail_notification: Email notifications |
263 |
field_admin: Administrator
|
|
264 |
field_last_login_on: Last connection
|
|
265 |
field_language: Language
|
|
266 |
field_effective_date: Date
|
|
267 |
field_password: Password
|
|
285 |
field_max_length: Maximum length
|
|
286 |
field_member_of_group: "Assignee's group"
|
|
287 |
field_min_length: Minimum length
|
|
288 |
field_multiple: Multiple values
|
|
289 |
field_name: Name
|
|
268 | 290 |
field_new_password: New password |
291 |
field_notes: Notes |
|
292 |
field_onthefly: On-the-fly user creation |
|
293 |
field_parent: Subproject of |
|
294 |
field_parent_description: Parent Description |
|
295 |
field_parent_issue: Parent task |
|
296 |
field_parent_title: Parent page |
|
297 |
field_password: Password |
|
269 | 298 |
field_password_confirmation: Confirmation |
270 |
field_version: Version |
|
271 |
field_type: Type |
|
272 |
field_host: Host |
|
299 |
field_path_to_repository: Path to repository |
|
273 | 300 |
field_port: Port |
274 |
field_account: Account |
|
275 |
field_base_dn: Base DN |
|
276 |
field_attr_login: Login attribute |
|
277 |
field_attr_firstname: Firstname attribute |
|
278 |
field_attr_lastname: Lastname attribute |
|
279 |
field_attr_mail: Email attribute |
|
280 |
field_onthefly: On-the-fly user creation |
|
301 |
field_possible_values: Possible values |
|
302 |
field_principal: Principal |
|
303 |
field_priority: Priority |
|
304 |
field_private_notes: Private notes |
|
305 |
field_project: Project |
|
306 |
field_redirect_existing_links: Redirect existing links |
|
307 |
field_regexp: Regular expression |
|
308 |
field_repository_is_default: Main repository |
|
309 |
field_role: Role |
|
310 |
field_root_directory: Root directory |
|
311 |
field_scm_path_encoding: Path encoding |
|
312 |
field_searchable: Searchable |
|
313 |
field_sharing: Sharing |
|
314 |
field_spent_on: Date |
|
281 | 315 |
field_start_date: Start date |
282 |
field_done_ratio: "% Done" |
|
283 |
field_auth_source: Authentication mode |
|
284 |
field_hide_mail: Hide my email address |
|
285 |
field_comments: Comment |
|
286 |
field_url: URL |
|
287 | 316 |
field_start_page: Start page |
317 |
field_status: Status |
|
318 |
field_subject: Subject |
|
288 | 319 |
field_subproject: Subproject |
289 |
field_hours: Hours |
|
290 |
field_activity: Activity |
|
291 |
field_spent_on: Date |
|
292 |
field_identifier: Identifier |
|
293 |
field_is_filter: Used as a filter |
|
294 |
field_issue_to: Related issue |
|
295 |
field_delay: Delay |
|
296 |
field_assignable: Issues can be assigned to this role |
|
297 |
field_redirect_existing_links: Redirect existing links |
|
298 |
field_estimated_hours: Estimated time |
|
299 |
field_column_names: Columns |
|
320 |
field_summary: Summary |
|
321 |
field_text: Text field |
|
300 | 322 |
field_time_entries: Log time |
301 | 323 |
field_time_zone: Time zone |
302 |
field_searchable: Searchable |
|
303 |
field_default_value: Default value |
|
304 |
field_comments_sorting: Display comments |
|
305 |
field_parent_title: Parent page |
|
306 |
field_editable: Editable |
|
307 |
field_watcher: Watcher |
|
308 |
field_identity_url: OpenID URL |
|
309 |
field_content: Content |
|
310 |
field_group_by: Group results by |
|
311 |
field_sharing: Sharing |
|
312 |
field_parent_issue: Parent task |
|
313 |
field_member_of_group: "Assignee's group" |
|
314 |
field_assigned_to_role: "Assignee's role" |
|
315 |
field_text: Text field |
|
324 |
field_timeout: "Timeout (in seconds)" |
|
325 |
field_title: Title |
|
326 |
field_tracker: Tracker |
|
327 |
field_type: Type |
|
328 |
field_updated_on: Updated |
|
329 |
field_url: URL |
|
330 |
field_user: User |
|
331 |
field_value: Value |
|
332 |
field_version: Version |
|
316 | 333 |
field_visible: Visible |
317 | 334 |
field_warn_on_leaving_unsaved: "Warn me when leaving a page with unsaved text" |
318 |
field_issues_visibility: Issues visibility |
|
319 |
field_is_private: Private |
|
320 |
field_commit_logs_encoding: Commit messages encoding |
|
321 |
field_scm_path_encoding: Path encoding |
|
322 |
field_path_to_repository: Path to repository |
|
323 |
field_root_directory: Root directory |
|
324 |
field_cvsroot: CVSROOT |
|
325 |
field_cvs_module: Module |
|
326 |
field_repository_is_default: Main repository |
|
327 |
field_multiple: Multiple values |
|
328 |
field_auth_source_ldap_filter: LDAP filter |
|
329 |
field_core_fields: Standard fields |
|
330 |
field_timeout: "Timeout (in seconds)" |
|
331 |
field_board_parent: Parent forum |
|
332 |
field_private_notes: Private notes |
|
333 |
field_inherit_members: Inherit members |
|
334 |
field_generate_password: Generate password |
|
335 |
field_watcher: Watcher |
|
335 | 336 | |
336 |
setting_app_title: Application title
|
|
337 |
setting_activity_days_default: Days displayed on project activity
|
|
337 | 338 |
setting_app_subtitle: Application subtitle |
338 |
setting_welcome_text: Welcome text |
|
339 |
setting_default_language: Default language |
|
340 |
setting_login_required: Authentication required |
|
341 |
setting_self_registration: Self-registration |
|
339 |
setting_app_title: Application title |
|
342 | 340 |
setting_attachment_max_size: Maximum attachment size |
343 |
setting_issues_export_limit: Issues export limit |
|
344 |
setting_mail_from: Emission email address |
|
345 |
setting_bcc_recipients: Blind carbon copy recipients (bcc) |
|
346 |
setting_plain_text_mail: Plain text mail (no HTML) |
|
347 |
setting_host_name: Host name and path |
|
348 |
setting_text_formatting: Text formatting |
|
349 |
setting_wiki_compression: Wiki history compression |
|
350 |
setting_feeds_limit: Maximum number of items in Atom feeds |
|
351 |
setting_default_projects_public: New projects are public by default |
|
352 | 341 |
setting_autofetch_changesets: Fetch commits automatically |
353 |
setting_sys_api_enabled: Enable WS for repository management |
|
354 |
setting_commit_ref_keywords: Referencing keywords |
|
355 |
setting_commit_fix_keywords: Fixing keywords |
|
356 | 342 |
setting_autologin: Autologin |
357 |
setting_date_format: Date format |
|
358 |
setting_time_format: Time format |
|
343 |
setting_bcc_recipients: Blind carbon copy recipients (bcc) |
|
344 |
setting_cache_formatted_text: Cache formatted text |
|
345 |
setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed |
|
346 |
setting_commit_fix_keywords: Fixing keywords |
|
347 |
setting_commit_logtime_activity_id: Activity for logged time |
|
348 |
setting_commit_logtime_enabled: Enable time logging |
|
349 |
setting_commit_ref_keywords: Referencing keywords |
|
359 | 350 |
setting_cross_project_issue_relations: Allow cross-project issue relations |
360 | 351 |
setting_cross_project_subtasks: Allow cross-project subtasks |
361 |
setting_issue_list_default_columns: Default columns displayed on the issue list
|
|
362 |
setting_repositories_encodings: Attachments and repositories encodings
|
|
363 |
setting_emails_header: Email header
|
|
364 |
setting_emails_footer: Email footer
|
|
365 |
setting_protocol: Protocol
|
|
366 |
setting_per_page_options: Objects per page options
|
|
367 |
setting_user_format: Users display format
|
|
368 |
setting_activity_days_default: Days displayed on project activity
|
|
352 |
setting_date_format: Date format
|
|
353 |
setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues
|
|
354 |
setting_default_language: Default language
|
|
355 |
setting_default_notification_option: Default notification option
|
|
356 |
setting_default_projects_modules: Default enabled modules for new projects
|
|
357 |
setting_default_projects_public: New projects are public by default
|
|
358 |
setting_default_projects_tracker_ids: Default trackers for new projects
|
|
359 |
setting_diff_max_lines_displayed: Maximum number of diff lines displayed
|
|
369 | 360 |
setting_display_subprojects_issues: Display subprojects issues on main projects by default |
361 |
setting_emails_footer: Email footer |
|
362 |
setting_emails_header: Email header |
|
370 | 363 |
setting_enabled_scm: Enabled SCM |
371 |
setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" |
|
372 |
setting_mail_handler_api_enabled: Enable WS for incoming emails |
|
373 |
setting_mail_handler_api_key: API key |
|
374 |
setting_sequential_project_identifiers: Generate sequential project identifiers |
|
375 |
setting_gravatar_enabled: Use Gravatar user icons |
|
376 |
setting_gravatar_default: Default Gravatar image |
|
377 |
setting_diff_max_lines_displayed: Maximum number of diff lines displayed |
|
364 |
setting_feeds_limit: Maximum number of items in Atom feeds |
|
378 | 365 |
setting_file_max_size_displayed: Maximum size of text files displayed inline |
379 |
setting_repository_log_display_limit: Maximum number of revisions displayed on file log |
|
380 |
setting_openid: Allow OpenID login and registration |
|
381 |
setting_password_min_length: Minimum password length |
|
382 |
setting_new_project_user_role_id: Role given to a non-admin user who creates a project |
|
383 |
setting_default_projects_modules: Default enabled modules for new projects |
|
366 |
setting_gantt_items_limit: Maximum number of items displayed on the gantt chart |
|
367 |
setting_gravatar_default: Default Gravatar image |
|
368 |
setting_gravatar_enabled: Use Gravatar user icons |
|
369 |
setting_host_name: Host name and path |
|
384 | 370 |
setting_issue_done_ratio: Calculate the issue done ratio with |
385 | 371 |
setting_issue_done_ratio_issue_field: Use the issue field |
386 | 372 |
setting_issue_done_ratio_issue_status: Use the issue status |
387 |
setting_start_of_week: Start calendars on |
|
388 |
setting_rest_api_enabled: Enable REST web service |
|
389 |
setting_cache_formatted_text: Cache formatted text |
|
390 |
setting_default_notification_option: Default notification option |
|
391 |
setting_commit_logtime_enabled: Enable time logging |
|
392 |
setting_commit_logtime_activity_id: Activity for logged time |
|
393 |
setting_gantt_items_limit: Maximum number of items displayed on the gantt chart |
|
394 | 373 |
setting_issue_group_assignment: Allow issue assignment to groups |
395 |
setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues |
|
396 |
setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed |
|
397 |
setting_unsubscribe: Allow users to delete their own account |
|
374 |
setting_issue_list_default_columns: Default columns displayed on the issue list |
|
375 |
setting_issues_export_limit: Issues export limit |
|
376 |
setting_jsonp_enabled: Enable JSONP support |
|
377 |
setting_login_required: Authentication required |
|
378 |
setting_mail_from: Emission email address |
|
379 |
setting_mail_handler_api_enabled: Enable WS for incoming emails |
|
380 |
setting_mail_handler_api_key: API key |
|
381 |
setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" |
|
382 |
setting_new_project_user_role_id: Role given to a non-admin user who creates a project |
|
383 |
setting_non_working_week_days: Non-working days |
|
384 |
setting_openid: Allow OpenID login and registration |
|
385 |
setting_parent_issue_description: Allow display of parent issue description |
|
386 |
setting_password_min_length: Minimum password length |
|
387 |
setting_per_page_options: Objects per page options |
|
388 |
setting_plain_text_mail: Plain text mail (no HTML) |
|
389 |
setting_protocol: Protocol |
|
390 |
setting_repositories_encodings: Attachments and repositories encodings |
|
391 |
setting_repository_log_display_limit: Maximum number of revisions displayed on file log |
|
392 |
setting_rest_api_enabled: Enable REST web service |
|
393 |
setting_self_registration: Self-registration |
|
394 |
setting_sequential_project_identifiers: Generate sequential project identifiers |
|
398 | 395 |
setting_session_lifetime: Session maximum lifetime |
399 | 396 |
setting_session_timeout: Session inactivity timeout |
397 |
setting_start_of_week: Start calendars on |
|
398 |
setting_sys_api_enabled: Enable WS for repository management |
|
399 |
setting_text_formatting: Text formatting |
|
400 | 400 |
setting_thumbnails_enabled: Display attachment thumbnails |
401 | 401 |
setting_thumbnails_size: Thumbnails size (in pixels) |
402 |
setting_non_working_week_days: Non-working days |
|
403 |
setting_jsonp_enabled: Enable JSONP support |
|
404 |
setting_default_projects_tracker_ids: Default trackers for new projects |
|
402 |
setting_time_format: Time format |
|
403 |
setting_unsubscribe: Allow users to delete their own account |
|
404 |
setting_user_format: Users display format |
|
405 |
setting_welcome_text: Welcome text |
|
406 |
setting_wiki_compression: Wiki history compression |
|
405 | 407 | |
406 | 408 |
permission_add_project: Create project |
407 | 409 |
permission_add_subprojects: Create subprojects |
config/settings.yml | ||
---|---|---|
136 | 136 |
# Enables subtasks to be in other projects |
137 | 137 |
cross_project_subtasks: |
138 | 138 |
default: 'tree' |
139 |
parent_issue_description: |
|
140 |
default: 0 |
|
139 | 141 |
issue_group_assignment: |
140 | 142 |
default: 0 |
141 | 143 |
default_issue_start_date_to_creation_date: |
public/stylesheets/application.css | ||
---|---|---|
331 | 331 |
div.issue .next-prev-links {color:#999;} |
332 | 332 |
div.issue table.attributes th {width:22%;} |
333 | 333 |
div.issue table.attributes td {width:28%;} |
334 |
div.issue div.parent_description p.label_parent_description{padding-left: 16px; background: url(../images/arrow_collapsed.png) no-repeat; cursor:pointer; } |
|
335 |
div.issue div.parent_description p.label_parent_description.expanded{padding-left: 16px; background: url(../images/arrow_expanded.png) no-repeat; cursor:pointer; } |
|
336 |
div.issue div.parent_description div.wiki{display:none;} |
|
337 |
div.issue div.parent_description.expanded div.wiki{display:block;} |
|
334 | 338 | |
335 | 339 |
#issue_tree table.issues, #relations table.issues { border: 0; } |
336 | 340 |
#issue_tree td.checkbox, #relations td.checkbox {display:none;} |