()
| 60 | |
| 61 | // Is there a way to assign the same gettext comment to multiple strings...? |
| 62 | static getItems() { |
| 63 | // clang-format off |
| 64 | return [ |
| 65 | { |
| 66 | names: [ |
| 67 | // Translators: The tutorial menu allows selecting triplets such as "Smelly |
| 68 | // Chocolate Muffin". This is one of the first words. The three words are directly |
| 69 | // appended to each other; therefore the trailing space is important. You can also |
| 70 | // use hyphens if appropriate. |
| 71 | _('Cold '), |
| 72 | // Translators: The tutorial menu allows selecting triplets such as "Smelly |
| 73 | // Chocolate Muffin". This is one of the first words. The three words are directly |
| 74 | // appended to each other; therefore the trailing space is important. You can also |
| 75 | // use hyphens if appropriate. |
| 76 | _('Hot '), |
| 77 | // Translators: The tutorial menu allows selecting triplets such as "Smelly |
| 78 | // Chocolate Muffin". This is one of the first words. The three words are directly |
| 79 | // appended to each other; therefore the trailing space is important. You can also |
| 80 | // use hyphens if appropriate. |
| 81 | _('Wet '), |
| 82 | // Translators: The tutorial menu allows selecting triplets such as "Smelly |
| 83 | // Chocolate Muffin". This is one of the first words. The three words are directly |
| 84 | // appended to each other; therefore the trailing space is important. You can also |
| 85 | // use hyphens if appropriate. |
| 86 | _('Deadly '), |
| 87 | // Translators: The tutorial menu allows selecting triplets such as "Smelly |
| 88 | // Chocolate Muffin". This is one of the first words. The three words are directly |
| 89 | // appended to each other; therefore the trailing space is important. You can also |
| 90 | // use hyphens if appropriate. |
| 91 | _('Smelly '), |
| 92 | // Translators: The tutorial menu allows selecting triplets such as "Smelly |
| 93 | // Chocolate Muffin". This is one of the first words. The three words are directly |
| 94 | // appended to each other; therefore the trailing space is important. You can also |
| 95 | // use hyphens if appropriate. |
| 96 | _('Vegan ') |
| 97 | ], |
| 98 | icons: [ |
| 99 | 'flypie-cold-symbolic-#68c', 'flypie-hot-symbolic-#b42', |
| 100 | 'flypie-wet-symbolic-#349', 'flypie-deadly-symbolic-#523', |
| 101 | 'flypie-smelly-symbolic-#aa5', 'flypie-vegan-symbolic-#4a4' |
| 102 | ] |
| 103 | }, |
| 104 | { |
| 105 | names: [ |
| 106 | // Translators: The tutorial menu allows selecting triplets such as "Smelly |
| 107 | // Chocolate Muffin". This is one of the middle words. The three words are |
| 108 | // directly appended to each other; therefore the trailing space is important. You |
| 109 | // can also use hyphens if appropriate. |
| 110 | _('Chocolate '), |
| 111 | // Translators: The tutorial menu allows selecting triplets such as "Smelly |
| 112 | // Chocolate Muffin". This is one of the middle words. The three words are |
| 113 | // directly appended to each other; therefore the trailing space is important. You |
| 114 | // can also use hyphens if appropriate. |
| 115 | _('Cherry '), |
| 116 | // Translators: The tutorial menu allows selecting triplets such as "Smelly |
| 117 | // Chocolate Muffin". This is one of the middle words. The three words are |
| 118 | // directly appended to each other; therefore the trailing space is important. You |
| 119 | // can also use hyphens if appropriate. |
no outgoing calls
no test coverage detected