1   package com.atlassian.core.i18n;
2   
3   /**
4    * Minimal interface for an i18nBean
5    */
6   public interface I18nTextProvider
7   {
8       String getText(String key);
9   
10      String getText(String key, Object[] args);
11  }