View Javadoc
1   /**
2    * Copyright (c) 2012-2022, jcabi.com
3    * All rights reserved.
4    *
5    * Redistribution and use in source and binary forms, with or without
6    * modification, are permitted provided that the following conditions
7    * are met: 1) Redistributions of source code must retain the above
8    * copyright notice, this list of conditions and the following
9    * disclaimer. 2) Redistributions in binary form must reproduce the above
10   * copyright notice, this list of conditions and the following
11   * disclaimer in the documentation and/or other materials provided
12   * with the distribution. 3) Neither the name of the jcabi.com nor
13   * the names of its contributors may be used to endorse or promote
14   * products derived from this software without specific prior written
15   * permission.
16   *
17   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18   * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
19   * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20   * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21   * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
22   * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23   * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24   * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25   * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26   * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
28   * OF THE POSSIBILITY OF SUCH DAMAGE.
29   */
30  package com.jcabi.ssl.maven.plugin;
31  
32  import java.util.HashMap;
33  import java.util.Locale;
34  import java.util.Map;
35  
36  /**
37   * Translates word yes to different languages.
38   * @author Georgy Vlasov (wlasowegor@gmail.com)
39   * @version $Id: 030444883abc78719f5ead665f07e2b3fa4f963e $
40   * @since 0.12
41   * @checkstyle MultipleStringLiteralsCheck (100 lines)
42   */
43  public final class Yes {
44      /**
45       * Map from 2-letter language codes to translations of word yes into that
46       * language.
47       */
48      private final transient Map<String, String> translations;
49  
50      /**
51       * Public ctor.
52       */
53      public Yes() {
54          this.translations = new HashMap<String, String>();
55          this.translations.put("en", "yes");
56          this.translations.put("de", "ja");
57          this.translations.put("fr", "oui");
58          this.translations.put("ru", "да");
59          this.translations.put("es", "sí");
60          this.translations.put("ua", "так");
61          this.translations.put("jp", "はい");
62      }
63  
64      /**
65       * Translates word yes to a language.
66       * @param locale Locate specifying the language.
67       * @return Word yes translated to a language.
68       */
69      public String translate(final Locale locale) {
70          final String language = locale.getLanguage();
71          final String translation = this.translations.get(language);
72          if (translation == null) {
73              throw new IllegalArgumentException(
74                  String.format(
75                      new StringBuilder()
76                          .append("Language %s is not supported, you can create ")
77                          .append("an issue on Github and we'll fix it")
78                          .toString(),
79                      language
80                  )
81              );
82          }
83          return translation;
84      }
85  }