mirror of
https://github.com/google/pebble.git
synced 2025-04-30 07:21:39 -04:00
spelling: traditional
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
parent
e53dc17016
commit
120c7e248c
4 changed files with 4 additions and 4 deletions
|
@ -102,7 +102,7 @@ struct GTextNode {
|
||||||
//! adjusts the bottom-right margin, causing extra space to be between this node and nodes to the
|
//! adjusts the bottom-right margin, causing extra space to be between this node and nodes to the
|
||||||
//! bottom and/or right.
|
//! bottom and/or right.
|
||||||
//!
|
//!
|
||||||
//! Used in-conjunction with offset, many of the normal layout position behavior in tradditional
|
//! Used in-conjunction with offset, many of the normal layout position behavior in traditional
|
||||||
//! systems can be achieved. Below are diagrams of a node (denoted with Xs) with its boundary
|
//! systems can be achieved. Below are diagrams of a node (denoted with Xs) with its boundary
|
||||||
//! increased by `a`, a certain length.
|
//! increased by `a`, a certain length.
|
||||||
//!
|
//!
|
||||||
|
|
|
@ -145,7 +145,7 @@ static void prv_update_prf_info_text_layers_text(BTPairingUIData *data) {
|
||||||
{ "Associare?", font_key_default }, // Italian
|
{ "Associare?", font_key_default }, // Italian
|
||||||
{ "Emparelhar?", font_key_default }, // Portuguese
|
{ "Emparelhar?", font_key_default }, // Portuguese
|
||||||
{ "ペアリング", font_key_japanese }, // Japanese
|
{ "ペアリング", font_key_japanese }, // Japanese
|
||||||
{ "配对", font_key_default }, // Chinese (tradditional?)
|
{ "配对", font_key_default }, // Chinese (traditional?)
|
||||||
{ "配對", font_key_default } // Chinese (simplified?)
|
{ "配對", font_key_default } // Chinese (simplified?)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ typedef enum {
|
||||||
|
|
||||||
//! LayoutLayer is a type of Layer that is used to display templated 3.0 content
|
//! LayoutLayer is a type of Layer that is used to display templated 3.0 content
|
||||||
//! including \ref TimelineItem (pins, reminders, notifications) as well as AppFaces.
|
//! including \ref TimelineItem (pins, reminders, notifications) as well as AppFaces.
|
||||||
//! LayoutLayers depart from tradditional Layers in a few meaningful way.
|
//! LayoutLayers depart from traditional Layers in a few meaningful way.
|
||||||
//! 1) LayoutLayers are modulated by a "mode", which is the context in which the LayoutLayer
|
//! 1) LayoutLayers are modulated by a "mode", which is the context in which the LayoutLayer
|
||||||
//! is displayed. Examples of modes are the "card" mode which displays detailed pin info
|
//! is displayed. Examples of modes are the "card" mode which displays detailed pin info
|
||||||
//! and the "minimized" mode which is used to display a "toast" like mode of a pin.
|
//! and the "minimized" mode which is used to display a "toast" like mode of a pin.
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
/*
|
/*
|
||||||
* Generally, an mbuf is a header for a buffer which adds some useful functionality with regards to
|
* Generally, an mbuf is a header for a buffer which adds some useful functionality with regards to
|
||||||
* grouping multiple distinct buffers together into a single packet. They are primarily used for
|
* grouping multiple distinct buffers together into a single packet. They are primarily used for
|
||||||
* networking. As you go down a tradditional network stack, headers need to be added to the data.
|
* networking. As you go down a traditional network stack, headers need to be added to the data.
|
||||||
* Rather than having to allocate and copy every time a new header needs to be added, or forcing the
|
* Rather than having to allocate and copy every time a new header needs to be added, or forcing the
|
||||||
* upper layer to leave room for the header, mbufs allows for buffers to be chained together into an
|
* upper layer to leave room for the header, mbufs allows for buffers to be chained together into an
|
||||||
* mbuf chain. With mbufs, as you go down the stack, you simply add the headers as new mbufs at the
|
* mbuf chain. With mbufs, as you go down the stack, you simply add the headers as new mbufs at the
|
||||||
|
|
Loading…
Add table
Reference in a new issue