blob: 39e70b0d6acfcab932f87232f0a3b06881073c5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
---
title: default_locale
slug: Mozilla/Add-ons/WebExtensions/manifest.json/default_locale
tags:
- Add-ons
- Extensions
- WebExtensions
translation_of: Mozilla/Add-ons/WebExtensions/manifest.json/default_locale
---
<div>{{AddonSidebar}}</div>
<table class="fullwidth-table standard-table">
<tbody>
<tr>
<th scope="row" style="width: 30%;">型</th>
<td><code>String</code></td>
</tr>
<tr>
<th scope="row">必須</th>
<td>条件次第: _locales サブディレクトリがある場合は必要で、そうでない場合は不要。</td>
</tr>
<tr>
<th scope="row">例</th>
<td>
<pre class="brush: json">
"default_locale": "en"</pre>
</td>
</tr>
</tbody>
</table>
<p>このキーは拡張機能が _locales ディレクトリを含んでいる場合は必要で、そうでない場合は不要です。これは _locales のサブディレクトリを識別し、このサブディレクトリは拡張機能の既定の文字列を探すために使用されます。</p>
<p><a href="/ja/Add-ons/WebExtensions/Internationalization">国際化</a>を見てください。</p>
<h2 id="Example" name="Example">例</h2>
<pre class="brush: json no-line-numbers language-json"><code class="language-json"><span class="key token">"default_locale":</span> <span class="string token">"en"</span></code></pre>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザ実装状況</h2>
<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
<p>{{Compat("webextensions.manifest.default_locale")}}</p>
|