spelling: traditional

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 15:50:23 -05:00
parent e53dc17016
commit 120c7e248c
4 changed files with 4 additions and 4 deletions

View file

@ -102,7 +102,7 @@ struct GTextNode {
//! adjusts the bottom-right margin, causing extra space to be between this node and nodes to the
//! 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
//! increased by `a`, a certain length.
//!

View file

@ -145,7 +145,7 @@ static void prv_update_prf_info_text_layers_text(BTPairingUIData *data) {
{ "Associare?", font_key_default }, // Italian
{ "Emparelhar?", font_key_default }, // Portuguese
{ "ペアリング", font_key_japanese }, // Japanese
{ "配对", font_key_default }, // Chinese (tradditional?)
{ "配对", font_key_default }, // Chinese (traditional?)
{ "配對", font_key_default } // Chinese (simplified?)
};

View file

@ -31,7 +31,7 @@ typedef enum {
//! 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.
//! 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
//! 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.

View file

@ -23,7 +23,7 @@
/*
* 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
* 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
* 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