Google翻訳でApple HIGとMaterialDesignを和訳してみるマン

このアカウントはひたすらガイドラインをGoogle翻訳して書き控えとくだけのものです。誤訳多いと思われます。誤訳の指摘とかもらえたら有り難いです。

Settings

https://developer.apple.com/design/human-interface-guidelines/ios/app-architecture/settings/

Settings

セッティング

Some apps may need to provide a way to make setup or configuration choices, but most apps can avoid or delay doing so. Successful apps work well for most people right away, while also offering some convenient ways to adjust the experience. When you design your app to function the way most people expect, you decrease the need for settings.

一部のアプリでは、設定操作や状態の選択を要求する必要があるかもしれませんが、ほとんどのアプリでそのようなことを避けるか遅らせることができます。 成功したアプリは大部分の人にとって素早く適切に動くと同時に、体験を最適化する便利な方法を提供します。 多くの人が期待するようにアプリケーションを設計すると、設定操作の必要性が減ります。

 

Infer what you can from the system. If you need information about the user, device, or environment, query the system for it whenever possible instead of asking the user. For example, instead of asking someone to enter their zip code so you can present local options, ask permission to use their current location.

あなたがシステムからできることを推測してください。 ユーザー、デバイス、または環境に関する情報が必要な場合は、ユーザーに問い合わせるのではなく、可能な限りシステムに問い合わせます。 たとえば、地域情報を提示できるように郵便番号を入力するように依頼するのではなく、現在地を使用する許可を求めます。

Thoughtfully prioritize configuration options within your app. Your app’s main screen is a good place for options that are essential or that change frequently. Secondary screens are better for options that change only occasionally.

アプリ内の設定オプションを慎重に優先順位付けします。 アプリのメイン画面は、必須であるか頻繁に変更されるオプションに適しています。 セカンダリ画面は、時々のみ変更されるオプションに適しています。

Expose infrequently changed configuration options in Settings. The Settings app is a central location for making configuration changes throughout the system, but people must leave your app to get there. It’s far more convenient to adjust settings directly within your app. If you must provide settings that rarely require change, see Implementing an iOS Settings Bundle in Preferences and Settings Programming Guide for developer guidance.

まれに変更される設定項目は、Settingsに提示します。Settingsはシステム全体の設定を変更するための中心的な場所ですが、人々はSettingsにアクセスするためにはアプリ自体から離れる必要があります。 アプリ内で直接設定を調整する方がはるかに便利です。 変更頻度が低い設定を提供する必要がある場合は、「デベロッパーガイダンス」の「設定と設定のプログラミングガイド」の「iOS設定バンドルの実装」を参照してください。

Provide shortcuts to Settings when appropriate. If your app includes text that directs users to Settings, such as “Go to Settings > MyApp > Privacy > Location Services,” provide a button that opens that location automatically. For developer guidance, see openSettingsURLString in UIApplication.

適切なタイミングで、設定へのショートカットを提示します。 アプリに「設定> MyApp>プライバシー>位置情報サービス」などのユーザーを設定に誘導するテキストが含まれている場合は、その場所を自動的に開くボタンを用意します。 開発者向けのガイダンスについては、UIApplicationのopenSettingsURLStringを参照してください。

 

(最終更新日:2018.09.11)