Feature #3057
closedAllow custom my_page blocks to define drop-down names
0%
Description
I have a plugin that adds additional blocks to the my_page page. The only problem I have here is that I can't name the blocks beyond their file names, whereas core blocks define their localized names:
BLOCKS = { 'issuesassignedtome' => :label_assigned_to_me_issues,
             'issuesreportedbyme' => :label_reported_issues,
             'issueswatched' => :label_watched_issues,
             'news' => :label_news_latest,
             'calendar' => :label_calendar,
             'documents' => :label_document_plural,
             'timelog' => :label_spent_time
           }.merge(Redmine::Views::MyPage::Block.additional_blocks).freeze
	This request is necessary in order to localize the plugin.
       Updated by Jean-Philippe Lang over 16 years ago
      Updated by Jean-Philippe Lang over 16 years ago
      
    
    Actually, you can add a key in your locales that matches the partial name, eg:
_my_partial.rhtml => uses 'my_partial' translation key if availableMaybe we could use a prefix for these translations in locales, eg: 'my.blocks.my_partial' or something.
What do you think?
       Updated by Brad Beattie over 16 years ago
      Updated by Brad Beattie over 16 years ago
      
    
    Jean-Philippe Lang wrote:
Actually, you can add a key in your locales that matches the partial name, eg:
_my_partial.rhtml => uses 'my_partial' translation key if available
Maybe we could use a prefix for these translations in locales, eg:
'my.blocks.my_partial'or something.
What do you think?
Hrm. A prefix would be nice as it would help avoid any unintended overlap. Not necessary, but nice.
       Updated by Jean-Philippe Lang over 16 years ago
      Updated by Jean-Philippe Lang over 16 years ago
      
    
    - Status changed from New to Resolved
- Target version set to 0.9.0
- Resolution set to Fixed
Committed in r2659.
Default scope is 'my.blocks', so you can have:
my:
  blocks:
    block_name: Localized block name
	or (if not found):
block_name: Localized block name
       Updated by Jean-Philippe Lang almost 16 years ago
      Updated by Jean-Philippe Lang almost 16 years ago
      
    
    - Status changed from Resolved to Closed