all repos

anpi @ 2122b1be1ed91cb8a550a8dc7769f20305662943

yaml to anki importer
18 files changed, 13611 insertions(+), 454 deletions(-)
repurpose of the tool
Author: Olexandr Smirnov olexsmir@gmail.com
Committed at: 2026-05-28 21:29:48 +0300
Authored at: 2025-08-11 15:25:54 +0300
Change ID: tklwtksynupooyulnlnrksmkqnvmqmmv
Parent: b372e68
D .golangci.yml
···
        1
        
        -version: "2"

      
        2
        
        -run:

      
        3
        
        -  concurrency: 8

      
        4
        
        -  issues-exit-code: 1

      
        5
        
        -  tests: true

      
        6
        
        -linters:

      
        7
        
        -  default: none

      
        8
        
        -  enable:

      
        9
        
        -    - asasalint

      
        10
        
        -    - asciicheck

      
        11
        
        -    - bidichk

      
        12
        
        -    - copyloopvar

      
        13
        
        -    - cyclop

      
        14
        
        -    - decorder

      
        15
        
        -    - dupl

      
        16
        
        -    - durationcheck

      
        17
        
        -    - err113

      
        18
        
        -    - errcheck

      
        19
        
        -    - errname

      
        20
        
        -    - errorlint

      
        21
        
        -    - exhaustive

      
        22
        
        -    - fatcontext

      
        23
        
        -    - forbidigo

      
        24
        
        -    - funlen

      
        25
        
        -    - gocheckcompilerdirectives

      
        26
        
        -    - gochecknoglobals

      
        27
        
        -    - gochecknoinits

      
        28
        
        -    - gochecksumtype

      
        29
        
        -    - gocognit

      
        30
        
        -    - goconst

      
        31
        
        -    - gocritic

      
        32
        
        -    - gocyclo

      
        33
        
        -    - godot

      
        34
        
        -    - goprintffuncname

      
        35
        
        -    - gosec

      
        36
        
        -    - govet

      
        37
        
        -    - inamedparam

      
        38
        
        -    - ineffassign

      
        39
        
        -    - interfacebloat

      
        40
        
        -    - lll

      
        41
        
        -    - loggercheck

      
        42
        
        -    - makezero

      
        43
        
        -    - mirror

      
        44
        
        -    - mnd

      
        45
        
        -    - musttag

      
        46
        
        -    - nakedret

      
        47
        
        -    - nestif

      
        48
        
        -    - nilerr

      
        49
        
        -    - nilnil

      
        50
        
        -    - noctx

      
        51
        
        -    - nolintlint

      
        52
        
        -    - nonamedreturns

      
        53
        
        -    - nosprintfhostport

      
        54
        
        -    - perfsprint

      
        55
        
        -    - prealloc

      
        56
        
        -    - predeclared

      
        57
        
        -    - promlinter

      
        58
        
        -    - reassign

      
        59
        
        -    - revive

      
        60
        
        -    - rowserrcheck

      
        61
        
        -    - sloglint

      
        62
        
        -    - staticcheck

      
        63
        
        -    - testableexamples

      
        64
        
        -    - testifylint

      
        65
        
        -    - testpackage

      
        66
        
        -    - thelper

      
        67
        
        -    - tparallel

      
        68
        
        -    - unconvert

      
        69
        
        -    - unparam

      
        70
        
        -    - unused

      
        71
        
        -    - usestdlibvars

      
        72
        
        -    - wastedassign

      
        73
        
        -    - whitespace

      
        74
        
        -  settings:

      
        75
        
        -    errcheck:

      
        76
        
        -      check-type-assertions: true

      
        77
        
        -      check-blank: true

      
        78
        
        -    funlen:

      
        79
        
        -      ignore-comments: true

      
        80
        
        -    gocognit:

      
        81
        
        -      min-complexity: 15

      
        82
        
        -    gocritic:

      
        83
        
        -      enable-all: true

      
        84
        
        -    gocyclo:

      
        85
        
        -      min-complexity: 15

      
        86
        
        -    govet:

      
        87
        
        -      disable:

      
        88
        
        -        - fieldalignment

      
        89
        
        -      enable-all: true

      
        90
        
        -    interfacebloat:

      
        91
        
        -      max: 3

      
        92
        
        -    nolintlint:

      
        93
        
        -      require-explanation: true

      
        94
        
        -      require-specific: true

      
        95
        
        -      allow-unused: false

      
        96
        
        -    revive:

      
        97
        
        -      confidence: 0.1

      
        98
        
        -      rules:

      
        99
        
        -        - name: exported

      
        100
        
        -          disabled: true

      
        101
        
        -    staticcheck:

      
        102
        
        -      checks:

      
        103
        
        -        - all

      
        104
        
        -    testifylint:

      
        105
        
        -      enable-all: true

      
        106
        
        -  exclusions:

      
        107
        
        -    generated: lax

      
        108
        
        -    rules:

      
        109
        
        -      - linters:

      
        110
        
        -          - gocritic

      
        111
        
        -        source: //noinspection

      
        112
        
        -      - linters:

      
        113
        
        -          - dupl

      
        114
        
        -          - err113

      
        115
        
        -          - funlen

      
        116
        
        -          - gochecknoglobals

      
        117
        
        -          - goconst

      
        118
        
        -          - gosec

      
        119
        
        -          - noctx

      
        120
        
        -          - staticcheck

      
        121
        
        -        path: _test\.go

      
        122
        
        -      - path: (.+)\.go$

      
        123
        
        -        text: Error return value of .((os\.)?std(out|err)\..*|.*Close|.*Flush|os\.Remove(All)?|.*printf?|os\.(Un)?Setenv|.*Rollback). is not checked

      
        124
        
        -      - path: (.+)\.go$

      
        125
        
        -        text: should check returned error before deferring

      
        126
        
        -      - path: (.+)\.go$

      
        127
        
        -        text: (ST1000|ST1003|ST1020|ST1021)

      
        128
        
        -    paths:

      
        129
        
        -      - bin

      
        130
        
        -      - vendor

      
        131
        
        -      - third_party$

      
        132
        
        -      - builtin$

      
        133
        
        -      - examples$

      
        134
        
        -issues:

      
        135
        
        -  max-same-issues: 50

      
        136
        
        -formatters:

      
        137
        
        -  enable:

      
        138
        
        -    - goimports

      
        139
        
        -  exclusions:

      
        140
        
        -    generated: lax

      
        141
        
        -    paths:

      
        142
        
        -      - bin

      
        143
        
        -      - vendor

      
        144
        
        -      - third_party$

      
        145
        
        -      - builtin$

      
        146
        
        -      - examples$

      
D anki/anki.go
···
        1
        
        -package anki

      
        2
        
        -

      
        3
        
        -type AnkiClient struct{}

      
        4
        
        -

      
        5
        
        -func NewAnkiClient() AnkiClient {

      
        6
        
        -	return AnkiClient{}

      
        7
        
        -}

      
        8
        
        -

      
        9
        
        -type ModelFieldNames []string

      
        10
        
        -

      
        11
        
        -type ModelFieldNamesParams struct {

      
        12
        
        -	ModelName string `json:"modelName"`

      
        13
        
        -}

      
        14
        
        -

      
        15
        
        -func (a *AnkiClient) GetModelFieldNames(modelName string) (ModelFieldNames, error) {

      
        16
        
        -	res, err := request[ModelFieldNames]("modelFieldNames", ModelFieldNamesParams{

      
        17
        
        -		ModelName: modelName,

      
        18
        
        -	})

      
        19
        
        -	if err != nil {

      
        20
        
        -		return ModelFieldNames{}, err

      
        21
        
        -	}

      
        22
        
        -

      
        23
        
        -	return res.Result, nil

      
        24
        
        -}

      
        25
        
        -

      
        26
        
        -type DeckNames []string

      
        27
        
        -

      
        28
        
        -func (a *AnkiClient) GetDeckNames() (DeckNames, error) {

      
        29
        
        -	res, err := request[DeckNames]("deckNames", paramsDefault{})

      
        30
        
        -	if err != nil {

      
        31
        
        -		return DeckNames{}, err

      
        32
        
        -	}

      
        33
        
        -

      
        34
        
        -	return res.Result, nil

      
        35
        
        -}

      
        36
        
        -

      
        37
        
        -type (

      
        38
        
        -	NoteID int

      
        39
        
        -	Note   struct {

      
        40
        
        -		DeckName  string            `json:"deckName"`

      
        41
        
        -		ModelName string            `json:"modelName"`

      
        42
        
        -		Fields    map[string]string `json:"fields"`

      
        43
        
        -		Tags      []string          `json:"tags"`

      
        44
        
        -	}

      
        45
        
        -

      
        46
        
        -	internalNote struct {

      
        47
        
        -		Note Note `json:"note"`

      
        48
        
        -	}

      
        49
        
        -)

      
        50
        
        -

      
        51
        
        -func (a *AnkiClient) AddNote(inp Note) (NoteID, error) {

      
        52
        
        -	res, err := request[NoteID]("addNote", internalNote{Note{

      
        53
        
        -		DeckName:  inp.DeckName,

      
        54
        
        -		ModelName: inp.ModelName,

      
        55
        
        -		Fields:    inp.Fields,

      
        56
        
        -		Tags:      inp.Tags,

      
        57
        
        -	}})

      
        58
        
        -	if err != nil {

      
        59
        
        -		return 0, err

      
        60
        
        -	}

      
        61
        
        -

      
        62
        
        -	return res.Result, nil

      
        63
        
        -}

      
D anki/http.go
···
        1
        
        -package anki

      
        2
        
        -

      
        3
        
        -import (

      
        4
        
        -	"bytes"

      
        5
        
        -	"encoding/json"

      
        6
        
        -	"fmt"

      
        7
        
        -	"net/http"

      
        8
        
        -)

      
        9
        
        -

      
        10
        
        -const (

      
        11
        
        -	ankiURL            = "http://localhost:8765"

      
        12
        
        -	ankiConnectVersion = 6

      
        13
        
        -)

      
        14
        
        -

      
        15
        
        -type AnkiResponse[T any] struct {

      
        16
        
        -	Result T      `json:"result,omitempty"`

      
        17
        
        -	Error  string `json:"error,omitempty"`

      
        18
        
        -}

      
        19
        
        -

      
        20
        
        -func (r AnkiResponse[T]) CheckErrors() error {

      
        21
        
        -	if r.Error != "" {

      
        22
        
        -		//nolint:err113 // there's no way to parse those errors so i just return them as they come

      
        23
        
        -		return fmt.Errorf("%s", r.Error)

      
        24
        
        -	}

      
        25
        
        -	return nil

      
        26
        
        -}

      
        27
        
        -

      
        28
        
        -type AnkiRequest[T any] struct {

      
        29
        
        -	Action  string `json:"action"`

      
        30
        
        -	Version int    `json:"version"`

      
        31
        
        -	Params  T      `json:"params"`

      
        32
        
        -}

      
        33
        
        -

      
        34
        
        -type paramsDefault struct{}

      
        35
        
        -

      
        36
        
        -func request[R any, P any](action string, params P) (AnkiResponse[R], error) {

      
        37
        
        -	bodyReq, err := json.Marshal(AnkiRequest[P]{

      
        38
        
        -		Action:  action,

      
        39
        
        -		Version: ankiConnectVersion,

      
        40
        
        -		Params:  params,

      
        41
        
        -	})

      
        42
        
        -	if err != nil {

      
        43
        
        -		return AnkiResponse[R]{}, err

      
        44
        
        -	}

      
        45
        
        -

      
        46
        
        -	//nolint:noctx // there's no need for time out or anything like that at the moment

      
        47
        
        -	req, err := http.NewRequest(http.MethodGet, ankiURL, bytes.NewBuffer(bodyReq))

      
        48
        
        -	if err != nil {

      
        49
        
        -		return AnkiResponse[R]{}, err

      
        50
        
        -	}

      
        51
        
        -

      
        52
        
        -	req.Header.Set("Content-type", "application/json")

      
        53
        
        -

      
        54
        
        -	client := &http.Client{}

      
        55
        
        -	resp, err := client.Do(req)

      
        56
        
        -	if err != nil {

      
        57
        
        -		return AnkiResponse[R]{}, err

      
        58
        
        -	}

      
        59
        
        -

      
        60
        
        -	defer resp.Body.Close()

      
        61
        
        -

      
        62
        
        -	var ankiResp AnkiResponse[R]

      
        63
        
        -	if err := json.NewDecoder(resp.Body).Decode(&ankiResp); err != nil {

      
        64
        
        -		return AnkiResponse[R]{}, err

      
        65
        
        -	}

      
        66
        
        -

      
        67
        
        -	return ankiResp, ankiResp.CheckErrors()

      
        68
        
        -}

      
A cache.go
···
        
        1
        +package main

      
        
        2
        +

      
        
        3
        +import (

      
        
        4
        +	"encoding/json"

      
        
        5
        +	"errors"

      
        
        6
        +	"os"

      
        
        7
        +	"path/filepath"

      
        
        8
        +)

      
        
        9
        +

      
        
        10
        +var ErrNotFound = errors.New("word not found")

      
        
        11
        +

      
        
        12
        +type Cache struct {

      
        
        13
        +	dir string

      
        
        14
        +}

      
        
        15
        +

      
        
        16
        +func NewCache() (*Cache, error) {

      
        
        17
        +	home, err := os.UserHomeDir()

      
        
        18
        +	if err != nil {

      
        
        19
        +		return nil, err

      
        
        20
        +	}

      
        
        21
        +	dir := filepath.Join(home, ".cache", "anpi")

      
        
        22
        +	if err := os.MkdirAll(dir, 0o755); err != nil {

      
        
        23
        +		return nil, err

      
        
        24
        +	}

      
        
        25
        +	return &Cache{dir: dir}, nil

      
        
        26
        +}

      
        
        27
        +

      
        
        28
        +func (c *Cache) path(word string) string {

      
        
        29
        +	return filepath.Join(c.dir, word+".json")

      
        
        30
        +}

      
        
        31
        +

      
        
        32
        +func (c *Cache) notfoundPath(word string) string {

      
        
        33
        +	return filepath.Join(c.dir, word+".notfound")

      
        
        34
        +}

      
        
        35
        +

      
        
        36
        +func (c *Cache) Read(word string) (*Entry, error) {

      
        
        37
        +	if _, err := os.Stat(c.notfoundPath(word)); err == nil {

      
        
        38
        +		return nil, ErrNotFound

      
        
        39
        +	}

      
        
        40
        +	p := c.path(word)

      
        
        41
        +	f, err := os.Open(p)

      
        
        42
        +	if err != nil {

      
        
        43
        +		return nil, err

      
        
        44
        +	}

      
        
        45
        +	defer f.Close() //nolint:errcheck

      
        
        46
        +	var e Entry

      
        
        47
        +	if err := json.NewDecoder(f).Decode(&e); err != nil {

      
        
        48
        +		return nil, err

      
        
        49
        +	}

      
        
        50
        +	return &e, nil

      
        
        51
        +}

      
        
        52
        +

      
        
        53
        +func (c *Cache) Write(word string, e *Entry, found bool) error {

      
        
        54
        +	if !found {

      
        
        55
        +		f, err := os.Create(c.notfoundPath(word))

      
        
        56
        +		if err != nil {

      
        
        57
        +			return err

      
        
        58
        +		}

      
        
        59
        +		return f.Close()

      
        
        60
        +	}

      
        
        61
        +	p := c.path(word)

      
        
        62
        +	f, err := os.Create(p)

      
        
        63
        +	if err != nil {

      
        
        64
        +		return err

      
        
        65
        +	}

      
        
        66
        +	defer f.Close() //nolint:errcheck

      
        
        67
        +	return json.NewEncoder(f).Encode(e)

      
        
        68
        +}

      
        
        69
        +

      
        
        70
        +func (c *Cache) Clear(word string) error {

      
        
        71
        +	_ = os.Remove(c.notfoundPath(word))

      
        
        72
        +	return os.Remove(c.path(word))

      
        
        73
        +}

      
A cache_test.go
···
        
        1
        +package main

      
        
        2
        +

      
        
        3
        +import (

      
        
        4
        +	"errors"

      
        
        5
        +	"testing"

      
        
        6
        +

      
        
        7
        +	"olexsmir.xyz/x/is"

      
        
        8
        +)

      
        
        9
        +

      
        
        10
        +func testCache(t *testing.T) *Cache {

      
        
        11
        +	t.Helper()

      
        
        12
        +	t.Setenv("HOME", t.TempDir())

      
        
        13
        +	c, err := NewCache()

      
        
        14
        +	is.Err(t, err, nil)

      
        
        15
        +	return c

      
        
        16
        +}

      
        
        17
        +

      
        
        18
        +func testEntry() *Entry {

      
        
        19
        +	return &Entry{

      
        
        20
        +		Word: "test",

      
        
        21
        +		POSBlocks: []POSBlock{

      
        
        22
        +			{POS: "noun", IPA: "/test/", Senses: []Sense{{Definition: "a test"}}},

      
        
        23
        +		},

      
        
        24
        +	}

      
        
        25
        +}

      
        
        26
        +

      
        
        27
        +func TestCache_WriteRead(t *testing.T) {

      
        
        28
        +	c := testCache(t)

      
        
        29
        +	entry := testEntry()

      
        
        30
        +	is.Err(t, c.Write("test", entry, true), nil)

      
        
        31
        +

      
        
        32
        +	got, err := c.Read("test")

      
        
        33
        +	is.Err(t, err, nil)

      
        
        34
        +	is.Equal(t, entry.Word, got.Word)

      
        
        35
        +	is.Equal(t, len(entry.POSBlocks), len(got.POSBlocks))

      
        
        36
        +	is.Equal(t, entry.POSBlocks[0].POS, got.POSBlocks[0].POS)

      
        
        37
        +	is.Equal(t, entry.POSBlocks[0].IPA, got.POSBlocks[0].IPA)

      
        
        38
        +	is.Equal(t, entry.POSBlocks[0].Senses[0].Definition, got.POSBlocks[0].Senses[0].Definition)

      
        
        39
        +}

      
        
        40
        +

      
        
        41
        +func TestCache_Read_miss(t *testing.T) {

      
        
        42
        +	c := testCache(t)

      
        
        43
        +	_, err := c.Read("nonexistent")

      
        
        44
        +	is.Err(t, err, "no such file or directory")

      
        
        45
        +}

      
        
        46
        +

      
        
        47
        +func TestCache_Clear(t *testing.T) {

      
        
        48
        +	c := testCache(t)

      
        
        49
        +	is.Err(t, c.Write("test", testEntry(), true), nil)

      
        
        50
        +	is.Err(t, c.Clear("test"), nil)

      
        
        51
        +	_, err := c.Read("test")

      
        
        52
        +	is.Err(t, err, "no such file or directory")

      
        
        53
        +}

      
        
        54
        +

      
        
        55
        +func TestCache_Clear_notFound(t *testing.T) {

      
        
        56
        +	c := testCache(t)

      
        
        57
        +	is.Err(t, c.Write("test", nil, false), nil)

      
        
        58
        +	is.Err(t, c.Clear("test"), "no such file or directory")

      
        
        59
        +	_, err := c.Read("test")

      
        
        60
        +	is.Err(t, err, "no such file or directory")

      
        
        61
        +}

      
        
        62
        +

      
        
        63
        +func TestCache_Clear_missing(t *testing.T) {

      
        
        64
        +	c := testCache(t)

      
        
        65
        +	is.Err(t, c.Clear("nonexistent"), "no such file or directory")

      
        
        66
        +}

      
        
        67
        +

      
        
        68
        +func TestCache_Read_isolationBetweenWords(t *testing.T) {

      
        
        69
        +	c := testCache(t)

      
        
        70
        +	is.Err(t, c.Write("foo", testEntry(), true), nil)

      
        
        71
        +	_, err := c.Read("bar")

      
        
        72
        +	is.Err(t, err, "no such file or directory")

      
        
        73
        +}

      
        
        74
        +

      
        
        75
        +func TestCache_Write_notFound(t *testing.T) {

      
        
        76
        +	c := testCache(t)

      
        
        77
        +	is.Err(t, c.Write("xyz", nil, false), nil)

      
        
        78
        +	_, err := c.Read("xyz")

      
        
        79
        +	is.Equal(t, true, errors.Is(err, ErrNotFound))

      
        
        80
        +}

      
        
        81
        +

      
        
        82
        +func TestCache_Write_notFound_overridesEntry(t *testing.T) {

      
        
        83
        +	c := testCache(t)

      
        
        84
        +	is.Err(t, c.Write("test", testEntry(), true), nil)

      
        
        85
        +	is.Err(t, c.Write("test", nil, false), nil)

      
        
        86
        +	_, err := c.Read("test")

      
        
        87
        +	is.Equal(t, true, errors.Is(err, ErrNotFound))

      
        
        88
        +}

      
        
        89
        +

      
        
        90
        +func TestCache_Write_notFound_isolation(t *testing.T) {

      
        
        91
        +	c := testCache(t)

      
        
        92
        +	is.Err(t, c.Write("foo", nil, false), nil)

      
        
        93
        +	is.Err(t, c.Write("bar", testEntry(), true), nil)

      
        
        94
        +

      
        
        95
        +	_, err := c.Read("foo")

      
        
        96
        +	is.Equal(t, true, errors.Is(err, ErrNotFound))

      
        
        97
        +

      
        
        98
        +	got, err := c.Read("bar")

      
        
        99
        +	is.Err(t, err, nil)

      
        
        100
        +	is.Equal(t, "test", got.Word)

      
        
        101
        +}

      
A cambridge.go
···
        
        1
        +package main

      
        
        2
        +

      
        
        3
        +import (

      
        
        4
        +	"fmt"

      
        
        5
        +	"io"

      
        
        6
        +	"net/http"

      
        
        7
        +	"slices"

      
        
        8
        +	"strings"

      
        
        9
        +

      
        
        10
        +	"golang.org/x/net/html"

      
        
        11
        +)

      
        
        12
        +

      
        
        13
        +const (

      
        
        14
        +	cambridgeURL = "https://dictionary.cambridge.org/dictionary/english/"

      
        
        15
        +	userAgent    = "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"

      
        
        16
        +)

      
        
        17
        +

      
        
        18
        +type CambridgeDictionary struct {

      
        
        19
        +	baseURL string

      
        
        20
        +	ua      string

      
        
        21
        +}

      
        
        22
        +

      
        
        23
        +func NewCambridgeDictionary() *CambridgeDictionary {

      
        
        24
        +	return &CambridgeDictionary{baseURL: cambridgeURL, ua: userAgent}

      
        
        25
        +}

      
        
        26
        +

      
        
        27
        +func (d *CambridgeDictionary) fetch(word string) (io.ReadCloser, error) {

      
        
        28
        +	req, err := http.NewRequest("GET", d.baseURL+strings.ToLower(word), nil)

      
        
        29
        +	if err != nil {

      
        
        30
        +		return nil, err

      
        
        31
        +	}

      
        
        32
        +	req.Header.Set("User-Agent", d.ua)

      
        
        33
        +	resp, err := http.DefaultClient.Do(req)

      
        
        34
        +	if err != nil {

      
        
        35
        +		return nil, err

      
        
        36
        +	}

      
        
        37
        +	if resp.StatusCode != 200 {

      
        
        38
        +		_ = resp.Body.Close()

      
        
        39
        +		return nil, fmt.Errorf("word not found (HTTP %d)", resp.StatusCode)

      
        
        40
        +	}

      
        
        41
        +	return resp.Body, nil

      
        
        42
        +}

      
        
        43
        +

      
        
        44
        +func redirectBase(entry *Entry) string {

      
        
        45
        +	if len(entry.POSBlocks) == 0 || len(entry.POSBlocks[0].Senses) == 0 {

      
        
        46
        +		return ""

      
        
        47
        +	}

      
        
        48
        +	def := strings.Join(strings.Fields(entry.POSBlocks[0].Senses[0].Definition), " ")

      
        
        49
        +	prefixes := []string{

      
        
        50
        +		"past simple of ", "past tense of ", "past participle of ",

      
        
        51
        +		"present participle of ", "third person singular of ", "3rd person singular of ",

      
        
        52
        +	}

      
        
        53
        +	for _, p := range prefixes {

      
        
        54
        +		if i := strings.Index(strings.ToLower(def), p); i >= 0 {

      
        
        55
        +			base := strings.TrimSpace(def[i+len(p):])

      
        
        56
        +			if space := strings.IndexAny(base, " \t\n"); space > 0 {

      
        
        57
        +				base = base[:space]

      
        
        58
        +			}

      
        
        59
        +			return strings.ToLower(base)

      
        
        60
        +		}

      
        
        61
        +	}

      
        
        62
        +	return ""

      
        
        63
        +}

      
        
        64
        +

      
        
        65
        +func (d *CambridgeDictionary) Lookup(word string) (*Entry, error) {

      
        
        66
        +	body, err := d.fetch(word)

      
        
        67
        +	if err != nil {

      
        
        68
        +		return nil, err

      
        
        69
        +	}

      
        
        70
        +	defer body.Close() //nolint:errcheck

      
        
        71
        +	entry, err := d.Scrape(word, body)

      
        
        72
        +	if err != nil {

      
        
        73
        +		return nil, err

      
        
        74
        +	}

      
        
        75
        +	if base := redirectBase(entry); base != "" && base != word {

      
        
        76
        +		redirected, err := d.Lookup(base)

      
        
        77
        +		if err != nil {

      
        
        78
        +			return nil, err

      
        
        79
        +		}

      
        
        80
        +		redirected.Word = word

      
        
        81
        +		redirected.RedirectWord = base

      
        
        82
        +		return redirected, nil

      
        
        83
        +	}

      
        
        84
        +	return entry, nil

      
        
        85
        +}

      
        
        86
        +

      
        
        87
        +func (d *CambridgeDictionary) Scrape(word string, r io.Reader) (*Entry, error) {

      
        
        88
        +	doc, err := html.Parse(r)

      
        
        89
        +	if err != nil {

      
        
        90
        +		return nil, err

      
        
        91
        +	}

      
        
        92
        +

      
        
        93
        +	cald4 := findFirstDescendantWithAttr(doc, "div", "data-id", "cald4")

      
        
        94
        +	if cald4 == nil {

      
        
        95
        +		return nil, fmt.Errorf("word not found")

      
        
        96
        +	}

      
        
        97
        +

      
        
        98
        +	bodies := findAllDescendantsWithClass(cald4, "div", "entry-body__el")

      
        
        99
        +	if len(bodies) == 0 {

      
        
        100
        +		return nil, fmt.Errorf("word not found")

      
        
        101
        +	}

      
        
        102
        +

      
        
        103
        +	var blocks []POSBlock

      
        
        104
        +	for _, body := range bodies {

      
        
        105
        +		blocks = append(blocks, parsePOSBlock(body))

      
        
        106
        +	}

      
        
        107
        +	return &Entry{Word: word, POSBlocks: blocks}, nil

      
        
        108
        +}

      
        
        109
        +

      
        
        110
        +func hasClass(n *html.Node, class string) bool {

      
        
        111
        +	for _, a := range n.Attr {

      
        
        112
        +		if a.Key == "class" {

      
        
        113
        +			if slices.Contains(strings.Fields(a.Val), class) {

      
        
        114
        +				return true

      
        
        115
        +			}

      
        
        116
        +		}

      
        
        117
        +	}

      
        
        118
        +	return false

      
        
        119
        +}

      
        
        120
        +

      
        
        121
        +func textContent(n *html.Node) string {

      
        
        122
        +	var b strings.Builder

      
        
        123
        +	var walk func(*html.Node)

      
        
        124
        +	walk = func(n *html.Node) {

      
        
        125
        +		if n.Type == html.TextNode {

      
        
        126
        +			b.WriteString(n.Data)

      
        
        127
        +		}

      
        
        128
        +		for c := n.FirstChild; c != nil; c = c.NextSibling {

      
        
        129
        +			walk(c)

      
        
        130
        +		}

      
        
        131
        +	}

      
        
        132
        +	walk(n)

      
        
        133
        +	return strings.TrimSpace(b.String())

      
        
        134
        +}

      
        
        135
        +

      
        
        136
        +func findFirstDescendantWithClass(n *html.Node, tag, class string) *html.Node {

      
        
        137
        +	if n.Type == html.ElementNode && n.Data == tag && hasClass(n, class) {

      
        
        138
        +		return n

      
        
        139
        +	}

      
        
        140
        +	for c := n.FirstChild; c != nil; c = c.NextSibling {

      
        
        141
        +		if found := findFirstDescendantWithClass(c, tag, class); found != nil {

      
        
        142
        +			return found

      
        
        143
        +		}

      
        
        144
        +	}

      
        
        145
        +	return nil

      
        
        146
        +}

      
        
        147
        +

      
        
        148
        +func findAllDescendantsWithClass(n *html.Node, tag, class string) []*html.Node {

      
        
        149
        +	var res []*html.Node

      
        
        150
        +	var walk func(*html.Node)

      
        
        151
        +	walk = func(n *html.Node) {

      
        
        152
        +		if n.Type == html.ElementNode && n.Data == tag && hasClass(n, class) {

      
        
        153
        +			res = append(res, n)

      
        
        154
        +			return

      
        
        155
        +		}

      
        
        156
        +		for c := n.FirstChild; c != nil; c = c.NextSibling {

      
        
        157
        +			walk(c)

      
        
        158
        +		}

      
        
        159
        +	}

      
        
        160
        +	walk(n)

      
        
        161
        +	return res

      
        
        162
        +}

      
        
        163
        +

      
        
        164
        +func findFirstDescendantWithAttr(n *html.Node, tag, key, val string) *html.Node {

      
        
        165
        +	if n.Type == html.ElementNode && n.Data == tag {

      
        
        166
        +		for _, a := range n.Attr {

      
        
        167
        +			if a.Key == key && a.Val == val {

      
        
        168
        +				return n

      
        
        169
        +			}

      
        
        170
        +		}

      
        
        171
        +	}

      
        
        172
        +	for c := n.FirstChild; c != nil; c = c.NextSibling {

      
        
        173
        +		if found := findFirstDescendantWithAttr(c, tag, key, val); found != nil {

      
        
        174
        +			return found

      
        
        175
        +		}

      
        
        176
        +	}

      
        
        177
        +	return nil

      
        
        178
        +}

      
        
        179
        +

      
        
        180
        +func parseIPA(ph *html.Node, region string) string {

      
        
        181
        +	el := findFirstDescendantWithClass(ph, "span", region)

      
        
        182
        +	if el == nil {

      
        
        183
        +		return ""

      
        
        184
        +	}

      
        
        185
        +	ipaEl := findFirstDescendantWithClass(el, "span", "ipa")

      
        
        186
        +	if ipaEl == nil {

      
        
        187
        +		return ""

      
        
        188
        +	}

      
        
        189
        +	return textContent(ipaEl)

      
        
        190
        +}

      
        
        191
        +

      
        
        192
        +func parsePOSBlock(body *html.Node) POSBlock {

      
        
        193
        +	ph := findFirstDescendantWithClass(body, "div", "pos-header")

      
        
        194
        +

      
        
        195
        +	pos := ""

      
        
        196
        +	if el := findFirstDescendantWithClass(ph, "span", "pos"); el != nil {

      
        
        197
        +		pos = textContent(el)

      
        
        198
        +	}

      
        
        199
        +

      
        
        200
        +	ipa := parseIPA(ph, "us")

      
        
        201
        +	if ipa == "" {

      
        
        202
        +		ipa = parseIPA(ph, "uk")

      
        
        203
        +	}

      
        
        204
        +

      
        
        205
        +	defBlocks := findAllDescendantsWithClass(body, "div", "def-block")

      
        
        206
        +	var senses []Sense

      
        
        207
        +	for _, db := range defBlocks {

      
        
        208
        +		def := ""

      
        
        209
        +		if el := findFirstDescendantWithClass(db, "div", "def"); el != nil {

      
        
        210
        +			def = strings.TrimRight(textContent(el), ":")

      
        
        211
        +		}

      
        
        212
        +		exampDivs := findAllDescendantsWithClass(db, "div", "examp")

      
        
        213
        +		var exs []string

      
        
        214
        +		for i, ed := range exampDivs {

      
        
        215
        +			if i >= 3 {

      
        
        216
        +				break

      
        
        217
        +			}

      
        
        218
        +			if eg := findFirstDescendantWithClass(ed, "span", "eg"); eg != nil {

      
        
        219
        +				exs = append(exs, textContent(eg))

      
        
        220
        +			}

      
        
        221
        +		}

      
        
        222
        +		senses = append(senses, Sense{Definition: def, Examples: exs})

      
        
        223
        +	}

      
        
        224
        +

      
        
        225
        +	return POSBlock{POS: pos, IPA: ipa, Senses: senses}

      
        
        226
        +}

      
A cambridge_test.go
···
        
        1
        +package main

      
        
        2
        +

      
        
        3
        +import (

      
        
        4
        +	"os"

      
        
        5
        +	"strings"

      
        
        6
        +	"testing"

      
        
        7
        +

      
        
        8
        +	"olexsmir.xyz/x/is"

      
        
        9
        +)

      
        
        10
        +

      
        
        11
        +func TestCambridgeDictionary_Scrape_skip(t *testing.T) {

      
        
        12
        +	f, err := os.Open("testdata/cambridge_skip.html")

      
        
        13
        +	is.Err(t, err, nil)

      
        
        14
        +	defer func() { _ = f.Close() }()

      
        
        15
        +

      
        
        16
        +	dict := NewCambridgeDictionary()

      
        
        17
        +	entry, err := dict.Scrape("skip", f)

      
        
        18
        +	is.Err(t, err, nil)

      
        
        19
        +	is.Equal(t, "skip", entry.Word)

      
        
        20
        +	is.Equal(t, true, len(entry.POSBlocks) > 0)

      
        
        21
        +

      
        
        22
        +	block := entry.POSBlocks[0]

      
        
        23
        +	is.Equal(t, true, block.POS != "")

      
        
        24
        +	is.Equal(t, true, strings.HasPrefix(block.IPA, "sk") || strings.HasPrefix(block.IPA, "/sk"))

      
        
        25
        +

      
        
        26
        +	is.Equal(t, true, len(block.Senses) > 0)

      
        
        27
        +	is.Equal(t, true, block.Senses[0].Definition != "")

      
        
        28
        +

      
        
        29
        +	is.Equal(t, true, len(block.Senses[0].Examples) > 0)

      
        
        30
        +	is.Equal(t, true, strings.Contains(block.Senses[0].Examples[0], "skip"))

      
        
        31
        +}

      
        
        32
        +

      
        
        33
        +func TestCambridgeDictionary_Scrape_hello(t *testing.T) {

      
        
        34
        +	f, err := os.Open("testdata/cambridge_hello.html")

      
        
        35
        +	is.Err(t, err, nil)

      
        
        36
        +	defer func() { _ = f.Close() }()

      
        
        37
        +

      
        
        38
        +	dict := NewCambridgeDictionary()

      
        
        39
        +	entry, err := dict.Scrape("hello", f)

      
        
        40
        +	is.Err(t, err, nil)

      
        
        41
        +	is.Equal(t, "hello", entry.Word)

      
        
        42
        +	is.Equal(t, true, len(entry.POSBlocks) > 0)

      
        
        43
        +

      
        
        44
        +	block := entry.POSBlocks[0]

      
        
        45
        +	is.Equal(t, true, block.POS != "")

      
        
        46
        +	is.Equal(t, true, block.IPA != "")

      
        
        47
        +	is.Equal(t, true, len(block.Senses) > 0)

      
        
        48
        +	is.Equal(t, true, block.Senses[0].Definition != "")

      
        
        49
        +}

      
        
        50
        +

      
        
        51
        +func TestCambridgeDictionary_Scrape_notFound(t *testing.T) {

      
        
        52
        +	f, err := os.Open("testdata/cambridge_notfound.html")

      
        
        53
        +	is.Err(t, err, nil)

      
        
        54
        +	defer func() { _ = f.Close() }()

      
        
        55
        +

      
        
        56
        +	dict := NewCambridgeDictionary()

      
        
        57
        +	_, err = dict.Scrape("asdfghjklzxcvbnm", f)

      
        
        58
        +	is.Err(t, err, "word not found")

      
        
        59
        +}

      
        
        60
        +

      
        
        61
        +func TestCambridgeDictionary_Scrape_skipHasExamples(t *testing.T) {

      
        
        62
        +	f, err := os.Open("testdata/cambridge_skip.html")

      
        
        63
        +	is.Err(t, err, nil)

      
        
        64
        +	defer func() { _ = f.Close() }()

      
        
        65
        +

      
        
        66
        +	dict := NewCambridgeDictionary()

      
        
        67
        +	entry, err := dict.Scrape("skip", f)

      
        
        68
        +	is.Err(t, err, nil)

      
        
        69
        +

      
        
        70
        +	is.Equal(t, true, len(entry.POSBlocks[0].Senses[0].Examples) > 0)

      
        
        71
        +	is.Equal(t, true, len(entry.POSBlocks[0].Senses[0].Examples) <= 3)

      
        
        72
        +}

      
        
        73
        +

      
        
        74
        +func TestCambridgeDictionary_Scrape_helloHasExamples(t *testing.T) {

      
        
        75
        +	f, err := os.Open("testdata/cambridge_hello.html")

      
        
        76
        +	is.Err(t, err, nil)

      
        
        77
        +	defer func() { _ = f.Close() }()

      
        
        78
        +

      
        
        79
        +	dict := NewCambridgeDictionary()

      
        
        80
        +	entry, err := dict.Scrape("hello", f)

      
        
        81
        +	is.Err(t, err, nil)

      
        
        82
        +

      
        
        83
        +	exs := entry.POSBlocks[0].Senses[0].Examples

      
        
        84
        +	is.Equal(t, true, len(exs) > 0)

      
        
        85
        +	is.Equal(t, true, len(exs) <= 3)

      
        
        86
        +}

      
        
        87
        +

      
        
        88
        +func TestCambridgeDictionary_Scrape_helloPOS(t *testing.T) {

      
        
        89
        +	f, err := os.Open("testdata/cambridge_hello.html")

      
        
        90
        +	is.Err(t, err, nil)

      
        
        91
        +	defer func() { _ = f.Close() }()

      
        
        92
        +

      
        
        93
        +	dict := NewCambridgeDictionary()

      
        
        94
        +	entry, err := dict.Scrape("hello", f)

      
        
        95
        +	is.Err(t, err, nil)

      
        
        96
        +

      
        
        97
        +	is.Equal(t, "exclamation", entry.POSBlocks[0].POS)

      
        
        98
        +}

      
        
        99
        +

      
        
        100
        +func TestCambridgeDictionary_Scrape_multiplePOSBlocks(t *testing.T) {

      
        
        101
        +	f, err := os.Open("testdata/cambridge_skip.html")

      
        
        102
        +	is.Err(t, err, nil)

      
        
        103
        +	defer func() { _ = f.Close() }()

      
        
        104
        +

      
        
        105
        +	dict := NewCambridgeDictionary()

      
        
        106
        +	entry, err := dict.Scrape("skip", f)

      
        
        107
        +	is.Err(t, err, nil)

      
        
        108
        +

      
        
        109
        +	is.Equal(t, true, len(entry.POSBlocks) > 1)

      
        
        110
        +}

      
        
        111
        +

      
        
        112
        +func TestCambridgeDictionary_Scrape_multipleSenses(t *testing.T) {

      
        
        113
        +	f, err := os.Open("testdata/cambridge_skip.html")

      
        
        114
        +	is.Err(t, err, nil)

      
        
        115
        +	defer func() { _ = f.Close() }()

      
        
        116
        +

      
        
        117
        +	dict := NewCambridgeDictionary()

      
        
        118
        +	entry, err := dict.Scrape("skip", f)

      
        
        119
        +	is.Err(t, err, nil)

      
        
        120
        +

      
        
        121
        +	is.Equal(t, true, len(entry.POSBlocks[0].Senses) > 1)

      
        
        122
        +}

      
        
        123
        +

      
        
        124
        +func TestCambridgeDictionary_Scrape_usIPA(t *testing.T) {

      
        
        125
        +	f, err := os.Open("testdata/cambridge_skip.html")

      
        
        126
        +	is.Err(t, err, nil)

      
        
        127
        +	defer func() { _ = f.Close() }()

      
        
        128
        +

      
        
        129
        +	dict := NewCambridgeDictionary()

      
        
        130
        +	entry, err := dict.Scrape("skip", f)

      
        
        131
        +	is.Err(t, err, nil)

      
        
        132
        +

      
        
        133
        +	is.Equal(t, true, entry.POSBlocks[0].IPA != "")

      
        
        134
        +}

      
D examples/simple.yml
···
        1
        
        ----

      
        2
        
        -- deck: English

      
        3
        
        -  # "type" refers to the Anki note type, such as "Basic", "Cloze", etc.

      
        4
        
        -  type: Vocab 

      
        5
        
        -  # global tags applied to all notes in this deck

      
        6
        
        -  tags:

      
        7
        
        -  - english::vocab

      
        8
        
        -  - imported

      
        9
        
        -  # field mappings: the keys used in [notes] are mapped to field names in the Anki note type

      
        10
        
        -  # for example, "front" below will populate the "Front" field in Anki

      
        11
        
        -  fields:

      
        12
        
        -    front: Front

      
        13
        
        -    back: Back

      
        14
        
        -  notes:

      
        15
        
        -    - front: The word

      
        16
        
        -      back: The definition

      
        17
        
        -    - front: Another word

      
        18
        
        -      back: Another word definition

      
        19
        
        -      # local tags apply only to this specific note

      
        20
        
        -      tags: [english::example-tag]

      
M go.mod
···
        1
        1
         module github.com/olexsmir/anpi

      
        2
        2
         

      
        3
        
        -go 1.24.2

      
        
        3
        +go 1.26.2

      
        4
        4
         

      
        5
        5
         require (

      
        6
        
        -	github.com/alecthomas/kong v1.10.0

      
        7
        
        -	github.com/gomarkdown/markdown v0.0.0-20250311123330-531bef5e742b

      
        8
        
        -	gopkg.in/yaml.v3 v3.0.1

      
        
        6
        +	golang.org/x/net v0.55.0

      
        
        7
        +	olexsmir.xyz/x v0.2.0

      
        9
        8
         )

      
M go.sum
···
        1
        
        -github.com/alecthomas/assert/v2 v2.11.0 h1:2Q9r3ki8+JYXvGsDyBXwH3LcJ+WK5D0gc5E8vS6K3D0=

      
        2
        
        -github.com/alecthomas/assert/v2 v2.11.0/go.mod h1:Bze95FyfUr7x34QZrjL+XP+0qgp/zg8yS+TtBj1WA3k=

      
        3
        
        -github.com/alecthomas/kong v1.10.0 h1:8K4rGDpT7Iu+jEXCIJUeKqvpwZHbsFRoebLbnzlmrpw=

      
        4
        
        -github.com/alecthomas/kong v1.10.0/go.mod h1:p2vqieVMeTAnaC83txKtXe8FLke2X07aruPWXyMPQrU=

      
        5
        
        -github.com/alecthomas/repr v0.4.0 h1:GhI2A8MACjfegCPVq9f1FLvIBS+DrQ2KQBFZP1iFzXc=

      
        6
        
        -github.com/alecthomas/repr v0.4.0/go.mod h1:Fr0507jx4eOXV7AlPV6AVZLYrLIuIeSOWtW57eE/O/4=

      
        7
        
        -github.com/gomarkdown/markdown v0.0.0-20250311123330-531bef5e742b h1:EY/KpStFl60qA17CptGXhwfZ+k1sFNJIUNR8DdbcuUk=

      
        8
        
        -github.com/gomarkdown/markdown v0.0.0-20250311123330-531bef5e742b/go.mod h1:JDGcbDT52eL4fju3sZ4TeHGsQwhG9nbDV21aMyhwPoA=

      
        9
        
        -github.com/hexops/gotextdiff v1.0.3 h1:gitA9+qJrrTCsiCl7+kh75nPqQt1cx4ZkudSTLoUqJM=

      
        10
        
        -github.com/hexops/gotextdiff v1.0.3/go.mod h1:pSWU5MAI3yDq+fZBTazCSJysOMbxWL1BSow5/V2vxeg=

      
        11
        
        -gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=

      
        12
        
        -gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

      
        13
        
        -gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=

      
        14
        
        -gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

      
        
        1
        +golang.org/x/net v0.55.0 h1:bcvxaJn3e1U6InsFWt1JUq1aSjnRxLzT2rtD2KfkDF8=

      
        
        2
        +golang.org/x/net v0.55.0/go.mod h1:L5U2KuzuOe1lY7Z+aWVIKK6qEeJXnXV9yzGA+WCHJww=

      
        
        3
        +olexsmir.xyz/x v0.2.0 h1:F1Wyt8J49pKawPKAdrlOk8rnm0vNYb/Ax/N2FsO2EUs=

      
        
        4
        +olexsmir.xyz/x v0.2.0/go.mod h1:MNHD3lrnOpxNKG7je8/dKgtZg5V8zPiow+U0QISz+Yc=

      
M main.go
···
        1
        1
         package main

      
        2
        2
         

      
        3
        3
         import (

      
        
        4
        +	"bufio"

      
        
        5
        +	"errors"

      
        
        6
        +	"flag"

      
        4
        7
         	"fmt"

      
        5
        
        -	"log/slog"

      
        6
        8
         	"os"

      
        7
        
        -	"path/filepath"

      
        8
        9
         	"strings"

      
        9
        
        -

      
        10
        
        -	"github.com/alecthomas/kong"

      
        11
        
        -	"github.com/gomarkdown/markdown"

      
        12
        
        -	"github.com/gomarkdown/markdown/html"

      
        13
        
        -	mdParser "github.com/gomarkdown/markdown/parser"

      
        14
        
        -	"github.com/olexsmir/anpi/anki"

      
        15
        
        -	"github.com/olexsmir/anpi/parser"

      
        16
        10
         )

      
        17
        11
         

      
        18
        
        -//nolint:gochecknoglobals // comment to make linter happy

      
        19
        
        -var cli struct {

      
        20
        
        -	File string `help:"path to import file" name:"file" type:"path"`

      
        
        12
        +type Sense struct {

      
        
        13
        +	Definition string

      
        
        14
        +	Examples   []string

      
        21
        15
         }

      
        22
        16
         

      
        23
        
        -func main() {

      
        24
        
        -	_ = kong.Parse(&cli)

      
        25
        
        -	if err := run(cli.File); err != nil {

      
        26
        
        -		fmt.Fprintf(os.Stderr, "error: %v\n", err)

      
        27
        
        -		os.Exit(1)

      
        28
        
        -	}

      
        
        17
        +type POSBlock struct {

      
        
        18
        +	POS    string

      
        
        19
        +	IPA    string

      
        
        20
        +	Senses []Sense

      
        29
        21
         }

      
        30
        22
         

      
        31
        
        -func run(fpath string) error {

      
        32
        
        -	ac := anki.NewAnkiClient()

      
        
        23
        +type Entry struct {

      
        
        24
        +	Word         string

      
        
        25
        +	RedirectWord string

      
        
        26
        +	POSBlocks    []POSBlock

      
        
        27
        +}

      
        33
        28
         

      
        34
        
        -	f, err := os.ReadFile(filepath.Clean(fpath))

      
        35
        
        -	if err != nil {

      
        36
        
        -		return err

      
        37
        
        -	}

      
        
        29
        +func isPiped() bool {

      
        
        30
        +	fi, _ := os.Stdin.Stat()

      
        
        31
        +	return (fi.Mode() & os.ModeCharDevice) == 0

      
        
        32
        +}

      
        38
        33
         

      
        39
        
        -	data, err := parser.Parse(f)

      
        40
        
        -	if err != nil {

      
        41
        
        -		return err

      
        
        34
        +func readStdinWord() (string, error) {

      
        
        35
        +	s := bufio.NewScanner(os.Stdin)

      
        
        36
        +	if s.Scan() {

      
        
        37
        +		return strings.TrimSpace(s.Text()), nil

      
        42
        38
         	}

      
        
        39
        +	return "", s.Err()

      
        
        40
        +}

      
        43
        41
         

      
        44
        
        -	for _, deck := range data {

      
        45
        
        -		for _, note := range deck.Notes {

      
        46
        
        -			fields := make(map[string]string)

      
        47
        
        -			for k, v := range note.Fields {

      
        48
        
        -				fields[deck.FieldLookUp(k)] = fromMarkdown(v)

      
        49
        
        -			}

      
        
        42
        +func main() {

      
        
        43
        +	all := flag.Bool("all", false, "print all senses to stderr")

      
        
        44
        +	aFlag := flag.Bool("a", false, "shorthand for --all")

      
        
        45
        +	pos := flag.String("pos", "", "filter by part of speech")

      
        
        46
        +	clearCacheFlag := flag.Bool("clear-cache", false, "clear cache for word")

      
        50
        47
         

      
        51
        
        -			slog.Info("gotten fields", "fields", fields)

      
        
        48
        +	flag.Parse()

      
        52
        49
         

      
        53
        
        -			tags := mergeTags(deck.Tags, note.Tags)

      
        54
        
        -			nid, err := ac.AddNote(anki.Note{

      
        55
        
        -				DeckName:  deck.Deck,

      
        56
        
        -				ModelName: deck.Type,

      
        57
        
        -				Fields:    fields,

      
        58
        
        -				Tags:      tags,

      
        59
        
        -			})

      
        60
        
        -			if err != nil {

      
        61
        
        -				return err

      
        62
        
        -			}

      
        
        50
        +	args := flag.Args()

      
        63
        51
         

      
        64
        
        -			slog.Info("note added", "id", nid, "fields", fields)

      
        
        52
        +	var word string

      
        
        53
        +	switch {

      
        
        54
        +	case len(args) > 0:

      
        
        55
        +		word = args[0]

      
        
        56
        +	case isPiped():

      
        
        57
        +		var err error

      
        
        58
        +		word, err = readStdinWord()

      
        
        59
        +		if err != nil {

      
        
        60
        +			fmt.Fprintf(os.Stderr, "anpi: %v\n", err)

      
        
        61
        +			os.Exit(1)

      
        
        62
        +		}

      
        
        63
        +		if word == "" {

      
        
        64
        +			fmt.Fprintln(os.Stderr, "usage: anpi [flags] <word>")

      
        
        65
        +			os.Exit(1)

      
        65
        66
         		}

      
        
        67
        +	default:

      
        
        68
        +		fmt.Fprintln(os.Stderr, "usage: anpi [flags] <word>")

      
        
        69
        +		os.Exit(1)

      
        66
        70
         	}

      
        67
        71
         

      
        68
        
        -	return nil

      
        69
        
        -}

      
        
        72
        +	if len(args) > 1 {

      
        
        73
        +		for _, arg := range args[1:] {

      
        
        74
        +			if arg == "--all" || arg == "-a" {

      
        
        75
        +				*all = true

      
        
        76
        +			}

      
        
        77
        +			if arg == "--clear-cache" {

      
        
        78
        +				*clearCacheFlag = true

      
        
        79
        +			}

      
        
        80
        +		}

      
        
        81
        +	}

      
        70
        82
         

      
        71
        
        -func mergeTags(global, local []string) []string {

      
        72
        
        -	unique := make(map[string]struct{})

      
        
        83
        +	if *all || *aFlag {

      
        
        84
        +		*all = true

      
        
        85
        +	}

      
        73
        86
         

      
        74
        
        -	for _, tag := range global {

      
        75
        
        -		unique[tag] = struct{}{}

      
        
        87
        +	cache, err := NewCache()

      
        
        88
        +	if err != nil {

      
        
        89
        +		fmt.Fprintln(os.Stderr, err)

      
        
        90
        +		os.Exit(1)

      
        76
        91
         	}

      
        77
        
        -	for _, tag := range local {

      
        78
        
        -		unique[tag] = struct{}{}

      
        
        92
        +

      
        
        93
        +	if *clearCacheFlag {

      
        
        94
        +		_ = cache.Clear(word)

      
        79
        95
         	}

      
        80
        96
         

      
        81
        
        -	result := make([]string, 0, len(unique))

      
        82
        
        -	for tag := range unique {

      
        83
        
        -		result = append(result, tag)

      
        
        97
        +	entry, err := cache.Read(word)

      
        
        98
        +	if errors.Is(err, ErrNotFound) {

      
        
        99
        +		_, _ = fmt.Fprintf(os.Stderr, "anpi: %v\n", err)

      
        
        100
        +		os.Exit(1)

      
        
        101
        +	}

      
        
        102
        +	if err != nil {

      
        
        103
        +		dict := NewCambridgeDictionary()

      
        
        104
        +		entry, err = dict.Lookup(word)

      
        
        105
        +		if err != nil {

      
        
        106
        +			if werr := cache.Write(word, nil, false); werr != nil {

      
        
        107
        +				fmt.Fprintf(os.Stderr, "cache write error: %v\n", werr)

      
        
        108
        +			}

      
        
        109
        +			_, _ = fmt.Fprintf(os.Stderr, "anpi: %v\n", err)

      
        
        110
        +			os.Exit(1)

      
        
        111
        +		}

      
        
        112
        +		if err := cache.Write(word, entry, true); err != nil {

      
        
        113
        +			fmt.Fprintf(os.Stderr, "cache write error: %v\n", err)

      
        
        114
        +		}

      
        84
        115
         	}

      
        85
        116
         

      
        86
        
        -	return result

      
        87
        
        -}

      
        
        117
        +	if *pos != "" {

      
        
        118
        +		var filtered []POSBlock

      
        
        119
        +		for _, b := range entry.POSBlocks {

      
        
        120
        +			if strings.EqualFold(b.POS, *pos) {

      
        
        121
        +				filtered = append(filtered, b)

      
        
        122
        +			}

      
        
        123
        +		}

      
        
        124
        +		if len(filtered) == 0 {

      
        
        125
        +			_, _ = fmt.Fprintf(os.Stderr, "warning: no %q sense found, showing all\n", *pos)

      
        
        126
        +		} else {

      
        
        127
        +			entry.POSBlocks = filtered

      
        
        128
        +		}

      
        
        129
        +	}

      
        88
        130
         

      
        89
        
        -func fromMarkdown(inp string) string {

      
        90
        
        -	htmlFlags := html.CommonFlags | html.HrefTargetBlank

      
        91
        
        -	opts := html.RendererOptions{Flags: htmlFlags}

      
        
        131
        +	if *all {

      
        
        132
        +		writeAll(entry, os.Stderr)

      
        
        133
        +		return

      
        
        134
        +	}

      
        92
        135
         

      
        93
        
        -	p := mdParser.New()

      
        94
        
        -	doc := p.Parse([]byte(inp))

      
        95
        
        -

      
        96
        
        -	str := string(markdown.Render(doc, html.NewRenderer(opts)))

      
        97
        
        -	str = strings.ReplaceAll(str, "<p>", "")

      
        98
        
        -	str = strings.ReplaceAll(str, "</p>", "")

      
        99
        
        -	str = strings.TrimSuffix(str, "\n")

      
        100
        
        -

      
        101
        
        -	return str

      
        
        136
        +	fmt.Print(toTSV(entry))

      
        102
        137
         }

      
A output.go
···
        
        1
        +package main

      
        
        2
        +

      
        
        3
        +import (

      
        
        4
        +	"fmt"

      
        
        5
        +	"io"

      
        
        6
        +	"regexp"

      
        
        7
        +	"strings"

      
        
        8
        +)

      
        
        9
        +

      
        
        10
        +func toTSV(entry *Entry) string {

      
        
        11
        +	if len(entry.POSBlocks) == 0 || len(entry.POSBlocks[0].Senses) == 0 {

      
        
        12
        +		return ""

      
        
        13
        +	}

      
        
        14
        +	block := entry.POSBlocks[0]

      
        
        15
        +	sense := block.Senses[0]

      
        
        16
        +

      
        
        17
        +	col1 := ""

      
        
        18
        +	if len(sense.Examples) > 0 {

      
        
        19
        +		col1 = boldWord(sense.Examples[0], entry.Word, entry.RedirectWord)

      
        
        20
        +	} else {

      
        
        21
        +		col1 = fmt.Sprintf("<b>%s</b>", entry.Word)

      
        
        22
        +	}

      
        
        23
        +	col2 := sense.Definition

      
        
        24
        +	col3 := block.IPA

      
        
        25
        +	if col3 != "" && !strings.HasPrefix(col3, "/") {

      
        
        26
        +		col3 = "/" + col3 + "/"

      
        
        27
        +	}

      
        
        28
        +	return fmt.Sprintf("%s\t%s\t%s", col1, col2, col3)

      
        
        29
        +}

      
        
        30
        +

      
        
        31
        +func boldWord(s, word string, extra ...string) string {

      
        
        32
        +	words := append([]string{word}, extra...)

      
        
        33
        +	seen := map[string]bool{}

      
        
        34
        +	for _, w := range words {

      
        
        35
        +		if w == "" || seen[w] {

      
        
        36
        +			continue

      
        
        37
        +		}

      
        
        38
        +		seen[w] = true

      
        
        39
        +		stem := w

      
        
        40
        +		for _, suffix := range []string{"ing", "ed", "es", "d", "s"} {

      
        
        41
        +			if len(w) > len(suffix) && strings.HasSuffix(w, suffix) {

      
        
        42
        +				stem = strings.TrimSuffix(w, suffix)

      
        
        43
        +				break

      
        
        44
        +			}

      
        
        45
        +		}

      
        
        46
        +		if len(stem) < 3 {

      
        
        47
        +			stem = w

      
        
        48
        +		}

      
        
        49
        +		re := regexp.MustCompile(`(?i)\b` + regexp.QuoteMeta(stem) + `\w*\b`)

      
        
        50
        +		if result := re.ReplaceAllString(s, `<b>$0</b>`); result != s {

      
        
        51
        +			return result

      
        
        52
        +		}

      
        
        53
        +	}

      
        
        54
        +	return s

      
        
        55
        +}

      
        
        56
        +

      
        
        57
        +func writeAll(entry *Entry, w io.Writer) {

      
        
        58
        +	for pi, block := range entry.POSBlocks {

      
        
        59
        +		if pi > 0 {

      
        
        60
        +			_, _ = fmt.Fprintln(w)

      
        
        61
        +		}

      
        
        62
        +		_, _ = fmt.Fprintf(w, "[%s] /%s/\n", block.POS, block.IPA)

      
        
        63
        +		for si, sense := range block.Senses {

      
        
        64
        +			if si > 0 {

      
        
        65
        +				_, _ = fmt.Fprintln(w)

      
        
        66
        +			}

      
        
        67
        +			_, _ = fmt.Fprintf(w, "  %d. %s\n", si+1, sense.Definition)

      
        
        68
        +			for _, ex := range sense.Examples {

      
        
        69
        +				_, _ = fmt.Fprintf(w, "     - %s\n", ex)

      
        
        70
        +			}

      
        
        71
        +		}

      
        
        72
        +	}

      
        
        73
        +}

      
A output_test.go
···
        
        1
        +package main

      
        
        2
        +

      
        
        3
        +import (

      
        
        4
        +	"bytes"

      
        
        5
        +	"strings"

      
        
        6
        +	"testing"

      
        
        7
        +

      
        
        8
        +	"olexsmir.xyz/x/is"

      
        
        9
        +)

      
        
        10
        +

      
        
        11
        +func TestToTSV_withExample(t *testing.T) {

      
        
        12
        +	entry := &Entry{

      
        
        13
        +		Word: "skip",

      
        
        14
        +		POSBlocks: []POSBlock{

      
        
        15
        +			{

      
        
        16
        +				POS: "verb",

      
        
        17
        +				IPA: "skɪp",

      
        
        18
        +				Senses: []Sense{

      
        
        19
        +					{

      
        
        20
        +						Definition: "to move lightly and quickly",

      
        
        21
        +						Examples:   []string{"she loves to skip down the hall"},

      
        
        22
        +					},

      
        
        23
        +				},

      
        
        24
        +			},

      
        
        25
        +		},

      
        
        26
        +	}

      
        
        27
        +	is.Equal(t, "she loves to <b>skip</b> down the hall\tto move lightly and quickly\t/skɪp/", toTSV(entry))

      
        
        28
        +}

      
        
        29
        +

      
        
        30
        +func TestToTSV_withoutExample(t *testing.T) {

      
        
        31
        +	entry := &Entry{

      
        
        32
        +		Word: "hello",

      
        
        33
        +		POSBlocks: []POSBlock{

      
        
        34
        +			{

      
        
        35
        +				POS: "exclamation",

      
        
        36
        +				IPA: "/heˈləʊ/",

      
        
        37
        +				Senses: []Sense{

      
        
        38
        +					{

      
        
        39
        +						Definition: "used when meeting someone",

      
        
        40
        +					},

      
        
        41
        +				},

      
        
        42
        +			},

      
        
        43
        +		},

      
        
        44
        +	}

      
        
        45
        +	is.Equal(t, "<b>hello</b>\tused when meeting someone\t/heˈləʊ/", toTSV(entry))

      
        
        46
        +

      
        
        47
        +	is.Equal(t, "", toTSV(&Entry{}))

      
        
        48
        +

      
        
        49
        +	is.Equal(t, "", toTSV(&Entry{POSBlocks: []POSBlock{{}}}))

      
        
        50
        +}

      
        
        51
        +

      
        
        52
        +func TestToTSV_ipaWrapping(t *testing.T) {

      
        
        53
        +	entry := &Entry{

      
        
        54
        +		Word: "test",

      
        
        55
        +		POSBlocks: []POSBlock{

      
        
        56
        +			{

      
        
        57
        +				IPA: "/test/",

      
        
        58
        +				Senses: []Sense{

      
        
        59
        +					{Definition: "a test"},

      
        
        60
        +				},

      
        
        61
        +			},

      
        
        62
        +		},

      
        
        63
        +	}

      
        
        64
        +	is.Equal(t, "<b>test</b>\ta test\t/test/", toTSV(entry))

      
        
        65
        +}

      
        
        66
        +

      
        
        67
        +func TestToTSV_usIPA(t *testing.T) {

      
        
        68
        +	entry := &Entry{

      
        
        69
        +		Word: "water",

      
        
        70
        +		POSBlocks: []POSBlock{

      
        
        71
        +			{

      
        
        72
        +				IPA: "ˈwɑː.t̬ɚ",

      
        
        73
        +				Senses: []Sense{

      
        
        74
        +					{Definition: "a clear liquid"},

      
        
        75
        +				},

      
        
        76
        +			},

      
        
        77
        +		},

      
        
        78
        +	}

      
        
        79
        +	is.Equal(t, "<b>water</b>\ta clear liquid\t/ˈwɑː.t̬ɚ/", toTSV(entry))

      
        
        80
        +}

      
        
        81
        +

      
        
        82
        +func TestBoldWord_caseInsensitive(t *testing.T) {

      
        
        83
        +	is.Equal(t, "she loves to <b>skip</b> down", boldWord("she loves to skip down", "skip"))

      
        
        84
        +}

      
        
        85
        +

      
        
        86
        +func TestBoldWord_inflectedExample(t *testing.T) {

      
        
        87
        +	is.Equal(t, "she <b>skipped</b> down", boldWord("she skipped down", "skip"))

      
        
        88
        +}

      
        
        89
        +

      
        
        90
        +func TestBoldWord_mixedCase(t *testing.T) {

      
        
        91
        +	is.Equal(t, "<b>Hello</b> there", boldWord("Hello there", "hello"))

      
        
        92
        +}

      
        
        93
        +

      
        
        94
        +func TestBoldWord_noMatch(t *testing.T) {

      
        
        95
        +	is.Equal(t, "just passing through", boldWord("just passing through", "skip"))

      
        
        96
        +}

      
        
        97
        +

      
        
        98
        +func TestBoldWord_notSubstring(t *testing.T) {

      
        
        99
        +	is.Equal(t, "<b>skipping</b> class", boldWord("skipping class", "skip"))

      
        
        100
        +}

      
        
        101
        +

      
        
        102
        +func TestBoldWord_matchesAllInstances(t *testing.T) {

      
        
        103
        +	is.Equal(t, "<b>wait</b> <b>wait</b> <b>wait</b>", boldWord("wait wait wait", "wait"))

      
        
        104
        +}

      
        
        105
        +

      
        
        106
        +func TestBoldWord_notSubstringOfLargerWord(t *testing.T) {

      
        
        107
        +	is.Equal(t, "<b>waiter</b>", boldWord("waiter", "wait"))

      
        
        108
        +}

      
        
        109
        +

      
        
        110
        +func TestBoldWord_inflectedLookup(t *testing.T) {

      
        
        111
        +	is.Equal(t, "A suspect has been <b>detained</b> by the police", boldWord("A suspect has been detained by the police", "detaining"))

      
        
        112
        +	is.Equal(t, "she <b>skipped</b> down the hall", boldWord("she skipped down the hall", "skipping"))

      
        
        113
        +	is.Equal(t, "he <b>passes</b> the ball", boldWord("he passes the ball", "passing"))

      
        
        114
        +	is.Equal(t, "she <b>liked</b> it", boldWord("she liked it", "liking"))

      
        
        115
        +	is.Equal(t, "he <b>walks</b> fast", boldWord("he walks fast", "walking"))

      
        
        116
        +	is.Equal(t, "we <b>loved</b> it", boldWord("we loved it", "loving"))

      
        
        117
        +}

      
        
        118
        +

      
        
        119
        +func TestWriteAll(t *testing.T) {

      
        
        120
        +	entry := &Entry{

      
        
        121
        +		Word: "skip",

      
        
        122
        +		POSBlocks: []POSBlock{

      
        
        123
        +			{

      
        
        124
        +				POS: "verb",

      
        
        125
        +				IPA: "skɪp",

      
        
        126
        +				Senses: []Sense{

      
        
        127
        +					{Definition: "move with quick light steps", Examples: []string{"she skipped down the path", "skip over the puddle"}},

      
        
        128
        +					{Definition: "omit or pass over", Examples: []string{"skip the boring parts"}},

      
        
        129
        +				},

      
        
        130
        +			},

      
        
        131
        +			{

      
        
        132
        +				POS: "noun",

      
        
        133
        +				IPA: "skɪp",

      
        
        134
        +				Senses: []Sense{

      
        
        135
        +					{Definition: "a light bouncing movement", Examples: []string{"a skip of excitement"}},

      
        
        136
        +				},

      
        
        137
        +			},

      
        
        138
        +		},

      
        
        139
        +	}

      
        
        140
        +

      
        
        141
        +	var buf bytes.Buffer

      
        
        142
        +	writeAll(entry, &buf)

      
        
        143
        +

      
        
        144
        +	got := buf.String()

      
        
        145
        +	is.Equal(t, true, strings.Contains(got, "[verb] /skɪp/"))

      
        
        146
        +	is.Equal(t, true, strings.Contains(got, "[noun] /skɪp/"))

      
        
        147
        +	is.Equal(t, true, strings.Contains(got, "1. move with quick light steps"))

      
        
        148
        +	is.Equal(t, true, strings.Contains(got, "2. omit or pass over"))

      
        
        149
        +	is.Equal(t, true, strings.Contains(got, "   - she skipped down the path"))

      
        
        150
        +	is.Equal(t, true, strings.Contains(got, "   - skip over the puddle"))

      
        
        151
        +	is.Equal(t, true, strings.Contains(got, "   - skip the boring parts"))

      
        
        152
        +	is.Equal(t, true, strings.Contains(got, "1. a light bouncing movement"))

      
        
        153
        +	is.Equal(t, true, strings.Contains(got, "   - a skip of excitement"))

      
        
        154
        +}

      
        
        155
        +

      
        
        156
        +func TestWriteAll_emptyEntry(t *testing.T) {

      
        
        157
        +	var buf bytes.Buffer

      
        
        158
        +	writeAll(&Entry{}, &buf)

      
        
        159
        +	is.Equal(t, "", buf.String())

      
        
        160
        +}

      
        
        161
        +

      
        
        162
        +func TestWriteAll_noSenses(t *testing.T) {

      
        
        163
        +	var buf bytes.Buffer

      
        
        164
        +	writeAll(&Entry{POSBlocks: []POSBlock{{POS: "verb", IPA: "skɪp"}}}, &buf)

      
        
        165
        +	is.Equal(t, "[verb] /skɪp/\n", buf.String())

      
        
        166
        +}

      
        
        167
        +

      
        
        168
        +func TestWriteAll_separatesBlocksWithBlankLine(t *testing.T) {

      
        
        169
        +	entry := &Entry{

      
        
        170
        +		Word: "test",

      
        
        171
        +		POSBlocks: []POSBlock{

      
        
        172
        +			{POS: "verb", IPA: "v", Senses: []Sense{{Definition: "def1"}}},

      
        
        173
        +			{POS: "noun", IPA: "n", Senses: []Sense{{Definition: "def2"}}},

      
        
        174
        +		},

      
        
        175
        +	}

      
        
        176
        +	var buf bytes.Buffer

      
        
        177
        +	writeAll(entry, &buf)

      
        
        178
        +	t.Logf("got:\n%s\n", buf.String())

      
        
        179
        +	is.Equal(t, true, strings.Contains(buf.String(), "[verb] /v/\n  1. def1\n\n[noun] /n/"))

      
        
        180
        +}

      
D parser/parser.go
···
        1
        
        -package parser

      
        2
        
        -

      
        3
        
        -import (

      
        4
        
        -	"errors"

      
        5
        
        -

      
        6
        
        -	"gopkg.in/yaml.v3"

      
        7
        
        -)

      
        8
        
        -

      
        9
        
        -type DeckImport struct {

      
        10
        
        -	Deck   string            `yaml:"deck"`

      
        11
        
        -	Type   string            `yaml:"type"`

      
        12
        
        -	Tags   []string          `yaml:"tags"`

      
        13
        
        -	Fields map[string]string `yaml:"fields"`

      
        14
        
        -	Notes  []Note            `yaml:"notes"`

      
        15
        
        -}

      
        16
        
        -

      
        17
        
        -func (d *DeckImport) FieldLookUp(field string) string {

      
        18
        
        -	// TODO: use ok notation here

      
        19
        
        -

      
        20
        
        -	val := d.Fields[field]

      
        21
        
        -	return val

      
        22
        
        -}

      
        23
        
        -

      
        24
        
        -func (d *DeckImport) Validate() error {

      
        25
        
        -	return nil

      
        26
        
        -}

      
        27
        
        -

      
        28
        
        -type Note struct {

      
        29
        
        -	Fields map[string]string

      
        30
        
        -	Tags   []string

      
        31
        
        -}

      
        32
        
        -

      
        33
        
        -func (n *Note) UnmarshalYAML(value *yaml.Node) error {

      
        34
        
        -	var raw map[string]any

      
        35
        
        -	if err := value.Decode(&raw); err != nil {

      
        36
        
        -		return err

      
        37
        
        -	}

      
        38
        
        -

      
        39
        
        -	n.Fields = make(map[string]string)

      
        40
        
        -	for k, v := range raw {

      
        41
        
        -		if k == "tags" {

      
        42
        
        -			if tags, ok := v.([]string); ok {

      
        43
        
        -				n.Tags = append(n.Tags, tags...)

      
        44
        
        -			}

      
        45
        
        -		}

      
        46
        
        -

      
        47
        
        -		if str, ok := v.(string); ok {

      
        48
        
        -			n.Fields[k] = str

      
        49
        
        -		}

      
        50
        
        -	}

      
        51
        
        -

      
        52
        
        -	return nil

      
        53
        
        -}

      
        54
        
        -

      
        55
        
        -var ErrInvalidFileFormat = errors.New("invalid file format")

      
        56
        
        -

      
        57
        
        -func Parse(inp []byte) ([]DeckImport, error) {

      
        58
        
        -	var listRes []DeckImport

      
        59
        
        -	if err := yaml.Unmarshal(inp, &listRes); err == nil {

      
        60
        
        -		return listRes, nil

      
        61
        
        -	}

      
        62
        
        -

      
        63
        
        -	var single DeckImport

      
        64
        
        -	if err := yaml.Unmarshal(inp, &single); err == nil {

      
        65
        
        -		return []DeckImport{single}, nil

      
        66
        
        -	}

      
        67
        
        -

      
        68
        
        -	return nil, ErrInvalidFileFormat

      
        69
        
        -}

      
A readme
···
        
        1
        +anpi

      
        
        2
        +----

      
        
        3
        +

      
        
        4
        +Lookup word definitions from cli.

      
        
        5
        +

      
        
        6
        +    anpi <word>

      
        
        7
        +    anpi <word> --all # will show all definitions and more examples

      
A testdata/cambridge_hello.html
···
        
        1
        +<!doctype html>

      
        
        2
        +<html lang="en" >

      
        
        3
        +

      
        
        4
        +<head>

      
        
        5
        +    <title>HELLO | English meaning - Cambridge Dictionary</title>

      
        
        6
        +    <meta charset="utf-8">

      
        
        7
        +    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

      
        
        8
        +    <meta name="description" content="HELLO definition: 1. used when meeting or greeting someone:  2. something that is said at the beginning of a phone&hellip;. Learn more.">

      
        
        9
        +    <meta name="keywords" content="hello definition, dictionary, english, british, american, business, british english, thesaurus, define hello, hello meaning, what is hello, spelling, conjugation, audio pronunciation, free, online, english.">

      
        
        10
        +    <meta http-equiv="X-UA-Compatible" content="IE=edge">

      
        
        11
        +    <meta name='viewport' content="width=device-width,minimum-scale=1,initial-scale=1">

      
        
        12
        +    <meta name="google" content="notranslate">

      
        
        13
        +            

      
        
        14
        +        

      
        
        15
        +    

      
        
        16
        +                

      
        
        17
        +                <script async src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="1be0fc8f-627a-4f3a-a13f-a4d11e467d2a"></script>

      
        
        18
        +    

      
        
        19
        +

      
        
        20
        +        

      
        
        21
        +                    

      
        
        22
        +        <meta property="og:url" content="https://dictionary.cambridge.org/dictionary/english/hello" />

      
        
        23
        +

      
        
        24
        +                                    <link rel="canonical" href="https://dictionary.cambridge.org/dictionary/english/hello" />

      
        
        25
        +                                                                                                    <link rel="alternate" hreflang="en" href="https://dictionary.cambridge.org/dictionary/english/hello"/>

      
        
        26
        +                         <link rel="alternate" hreflang="en-GB" href="https://dictionary.cambridge.org/dictionary/english/hello"/>                                                                                 <link rel="alternate" hreflang="en-US" href="https://dictionary.cambridge.org/us/dictionary/english/hello"/>

      
        
        27
        +                                                                    <link rel="alternate" hreflang="en-MX" href="https://dictionary.cambridge.org/us/dictionary/english/hello"/>

      
        
        28
        +                                                                    <link rel="alternate" hreflang="en-PH" href="https://dictionary.cambridge.org/us/dictionary/english/hello"/>

      
        
        29
        +                                                                    <link rel="alternate" hreflang="en-BR" href="https://dictionary.cambridge.org/us/dictionary/english/hello"/>

      
        
        30
        +                                                                    <link rel="alternate" hreflang="en-CO" href="https://dictionary.cambridge.org/us/dictionary/english/hello"/>

      
        
        31
        +                                                                                                        <link rel="alternate" hreflang="es" href="https://dictionary.cambridge.org/es/diccionario/ingles/hello"/>

      
        
        32
        +                                                                    <link rel="alternate" hreflang="es-ES" href="https://dictionary.cambridge.org/es/diccionario/ingles/hello"/>

      
        
        33
        +                                                                                                        <link rel="alternate" hreflang="pt" href="https://dictionary.cambridge.org/pt/dicionario/ingles/hello"/>

      
        
        34
        +                                                                    <link rel="alternate" hreflang="pt-BR" href="https://dictionary.cambridge.org/pt/dicionario/ingles/hello"/>

      
        
        35
        +                                                                                                        <link rel="alternate" hreflang="zh-Hans" href="https://dictionary.cambridge.org/zhs/%E8%AF%8D%E5%85%B8/%E8%8B%B1%E8%AF%AD/hello"/>

      
        
        36
        +                                                                                                        <link rel="alternate" hreflang="zh-Hant" href="https://dictionary.cambridge.org/zht/%E8%A9%9E%E5%85%B8/%E8%8B%B1%E8%AA%9E/hello"/>

      
        
        37
        +                                                                                                        <link rel="alternate" hreflang="da" href="https://dictionary.cambridge.org/da/ordbog/engelsk/hello"/>

      
        
        38
        +                                                                                                        <link rel="alternate" hreflang="de" href="https://dictionary.cambridge.org/de/worterbuch/englisch/hello"/>

      
        
        39
        +                                                                                                        <link rel="alternate" hreflang="fr" href="https://dictionary.cambridge.org/fr/dictionnaire/anglais/hello"/>

      
        
        40
        +                                                                                                        <link rel="alternate" hreflang="it" href="https://dictionary.cambridge.org/it/dizionario/inglese/hello"/>

      
        
        41
        +                                                                                                        <link rel="alternate" hreflang="nl" href="https://dictionary.cambridge.org/nl/woordenboek/engels/hello"/>

      
        
        42
        +                                                                                                        <link rel="alternate" hreflang="no" href="https://dictionary.cambridge.org/no/ordbok/engelsk/hello"/>

      
        
        43
        +                                                                                                        <link rel="alternate" hreflang="pl" href="https://dictionary.cambridge.org/pl/dictionary/english/hello"/>

      
        
        44
        +                                                                                                        <link rel="alternate" hreflang="ru" href="https://dictionary.cambridge.org/ru/%D1%81%D0%BB%D0%BE%D0%B2%D0%B0%D1%80%D1%8C/%D0%B0%D0%BD%D0%B3%D0%BB%D0%B8%D0%B9%D1%81%D0%BA%D0%B8%D0%B9/hello"/>

      
        
        45
        +                                                                                                        <link rel="alternate" hreflang="tr" href="https://dictionary.cambridge.org/tr/s%C3%B6zl%C3%BCk/ingilizce/hello"/>

      
        
        46
        +                                                                                                        <link rel="alternate" hreflang="vi" href="https://dictionary.cambridge.org/vi/dictionary/english/hello"/>

      
        
        47
        +                                                                                                        <link rel="alternate" hreflang="sv" href="https://dictionary.cambridge.org/sv/ordbok/engelska/hello"/>

      
        
        48
        +                                                                                                        <link rel="alternate" hreflang="uk" href="https://dictionary.cambridge.org/uk/dictionary/english/hello"/>

      
        
        49
        +                                                                                                        <link rel="alternate" hreflang="ja" href="https://dictionary.cambridge.org/ja/dictionary/english/hello"/>

      
        
        50
        +                                                                                                        <link rel="alternate" hreflang="ko" href="https://dictionary.cambridge.org/ko/%EC%82%AC%EC%A0%84/%EC%98%81%EC%96%B4/hello"/>

      
        
        51
        +                                                                                                        <link rel="alternate" hreflang="gu" href="https://dictionary.cambridge.org/gu/dictionary/english/hello"/>

      
        
        52
        +                                                                                                        <link rel="alternate" hreflang="ta" href="https://dictionary.cambridge.org/ta/dictionary/english/hello"/>

      
        
        53
        +                                                                                                        <link rel="alternate" hreflang="te" href="https://dictionary.cambridge.org/te/dictionary/english/hello"/>

      
        
        54
        +                                                                                                        <link rel="alternate" hreflang="bn" href="https://dictionary.cambridge.org/bn/dictionary/english/hello"/>

      
        
        55
        +                                                                                                        <link rel="alternate" hreflang="mr" href="https://dictionary.cambridge.org/mr/dictionary/english/hello"/>

      
        
        56
        +                                                                                                        <link rel="alternate" hreflang="hi" href="https://dictionary.cambridge.org/hi/%E0%A4%B6%E0%A4%AC%E0%A5%8D%E0%A4%A6%E0%A4%95%E0%A5%8B%E0%A4%B6/%E0%A4%85%E0%A4%82%E0%A4%97%E0%A5%8D%E0%A4%B0%E0%A5%87%E0%A4%9C%E0%A4%BC%E0%A5%80/hello"/>

      
        
        57
        +                                                                        

      
        
        58
        +                                    

      
        
        59
        +    

      
        
        60
        +            

      
        
        61
        +        

      
        
        62
        +        

      
        
        63
        +        

      
        
        64
        +        <meta name="google-site-verification" content="lg0qcRkaLtMeKJcXsOLoptzK-2MIRJzuEtiYHZf_O2Y">

      
        
        65
        +    <link rel="shortcut icon" type="image/x-icon" href="https://dictionary.cambridge.org/external/images/favicon.ico?version=6.0.78">

      
        
        66
        +    <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="Cambridge Dict">

      
        
        67
        +    <link rel="apple-touch-icon-precomposed" type="image/x-icon" href="https://dictionary.cambridge.org/external/images/apple-touch-icon-precomposed.png?version=6.0.78">

      
        
        68
        +    <link rel="preload" href="/external/fonts/cdoicons.woff?version=6.0.78" as="font" crossorigin>

      
        
        69
        +    <meta property="og:title" content="hello">

      
        
        70
        +    <meta property="og:description" content="1. used when meeting or greeting someone:  2. something that is said at the&hellip;">

      
        
        71
        +    <meta property="og:image" content="https://dictionary.cambridge.org/external/images/og-image.png">

      
        
        72
        +    <meta property="og:type" content="article">

      
        
        73
        +    <meta property="fb:app_id" content="118775618133878">

      
        
        74
        +    <meta property="twitter:card" content="summary">

      
        
        75
        +    <meta property="twitter:site" content="@CambridgeWords">

      
        
        76
        +                  <link rel="preconnect" href="https://cdn.polarbyte.com">

      
        
        77
        +        <link rel="preconnect" href="https://securepubads.g.doubleclick.net">

      
        
        78
        +        <link rel="preconnect" href="https://ib.adnxs.com">

      
        
        79
        +        <link rel="preconnect" href="https://bidder.criteo.com">

      
        
        80
        +        <link rel="preconnect" href="https://as-sec.casalemedia.com">

      
        
        81
        +        <link rel="preconnect" href="https://idm-d.openx.net">

      
        
        82
        +        <link rel="preconnect" href="https://hbopenbid.pubmatic.com">

      
        
        83
        +        <link rel="preconnect" href="https://fastlane.rubiconproject.com">

      
        
        84
        +        <link rel="preconnect" href="https://ap.lijit.com">

      
        
        85
        +        <link rel="preconnect" href="https://tlx.3lift.com">

      
        
        86
        +        <link rel="preconnect" href="https://script.4dex.io">

      
        
        87
        +        <link rel="preconnect" href="https://a.teads.tv">

      
        
        88
        +

      
        
        89
        +        <script defer type="text/javascript" src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>

      
        
        90
        +        <script defer type="text/javascript" src="https://cdn.polarbyte.com/idm/cdo/pb.min.js"></script>

      
        
        91
        +            <link rel="preload" href="https://www.googletagmanager.com/gtag/js?id=G-L9GCR21SZ7" as="script">

      
        
        92
        +      <link href="/common.css?version=6.0.78" rel="stylesheet" type="text/css">

      
        
        93
        +                    

      
        
        94
        +        <script async src="https://cdn.ampproject.org/lts/v0.js"></script>

      
        
        95
        +        <script async custom-element="amp-bind" src="https://cdn.ampproject.org/lts/v0/amp-bind-0.1.js"></script>

      
        
        96
        +            <script async custom-element="amp-form" src="https://cdn.ampproject.org/lts/v0/amp-form-0.1.js"></script>

      
        
        97
        +            <script async rel="preload" custom-element="amp-sidebar" src="https://cdn.ampproject.org/lts/v0/amp-sidebar-0.1.js"></script>

      
        
        98
        +    <script defer custom-element="amp-accordion" src="https://cdn.ampproject.org/lts/v0/amp-accordion-0.1.js"></script>

      
        
        99
        +    <script async custom-element="amp-list" src="https://cdn.ampproject.org/lts/v0/amp-list-0.1.js"></script>

      
        
        100
        +    <script async custom-template="amp-mustache" src="https://cdn.ampproject.org/lts/v0/amp-mustache-0.2.js"></script>

      
        
        101
        +    <script async custom-element="amp-access" src="https://cdn.ampproject.org/lts/v0/amp-access-0.1.js"></script>

      
        
        102
        +    <script async custom-element="amp-user-notification" src="https://cdn.ampproject.org/lts/v0/amp-user-notification-0.1.js"></script>

      
        
        103
        +                    <script async custom-element="amp-audio" src="https://cdn.ampproject.org/lts/v0/amp-audio-0.1.js"></script>

      
        
        104
        +                        

      
        
        105
        +    <script type="text/javascript" src="/autocomplete.js?version=6.0.78"></script>

      
        
        106
        +

      
        
        107
        +    

      
        
        108
        +    

      
        
        109
        +    

      
        
        110
        +                                        

      
        
        111
        +                                            <script type='text/javascript'>

      
        
        112
        +function readCookie(name) {

      
        
        113
        +    var nameEQ = name + "=";

      
        
        114
        +    var ca = document.cookie.split(';');

      
        
        115
        +    for ( var i = 0; i < ca.length; i++) {

      
        
        116
        +        var c = ca[i];

      
        
        117
        +        while (c.charAt(0) == ' ')

      
        
        118
        +            c = c.substring(1, c.length);

      
        
        119
        +        if (c.indexOf(nameEQ) == 0)

      
        
        120
        +            return c.substring(nameEQ.length, c.length);

      
        
        121
        +    }

      
        
        122
        +    return null;

      
        
        123
        +}

      
        
        124
        +

      
        
        125
        +var pl_did = readCookie("pl_did");

      
        
        126
        +var pl_p = localStorage.pl;

      
        
        127
        +</script>                            <script type='text/javascript'>

      
        
        128
        +    //<![CDATA[

      
        
        129
        +        var iaw = iaw || {};

      
        
        130
        +        iaw.que = iaw.que || [];

      
        
        131
        +        iaw.cmd = iaw.cmd || [];

      
        
        132
        +        iaw.que.push(function() {

      
        
        133
        +            iaw.setPageLabels([ "lcp", "resp", "wprod" ]);

      
        
        134
        +            iaw.setPageLayout("default_moreslots");

      
        
        135
        +

      
        
        136
        +            var pageCriteria = { "pc": "dictionary", "pt": "english-no-exs", "sfr": "cdo_dict_english", "ptl": "entry-lcp", "dc": "english", "ei": "hello", "c": [ "people_society_religion", "arts_entertainment_media" ], "t": "communication", "l": "en", "tc": "resp" };

      
        
        137
        +            if(pl_p) pageCriteria.alc_pr = pl_p.split(",");

      
        
        138
        +            pageCriteria.iaw_rv = "1";

      
        
        139
        +

      
        
        140
        +            iaw.setPageCriteria(pageCriteria);

      
        
        141
        +

      
        
        142
        +            iaw.setCountry("UA");

      
        
        143
        +

      
        
        144
        +                                    

      
        
        145
        +             iaw.setExtraAdSlots([ "ad_btmslot" ]); 

      
        
        146
        +                    });

      
        
        147
        +

      
        
        148
        +                iaw.getRewardedAdDailyLimit = function() {

      
        
        149
        +            if(typeof iaw.getRewardedAdDailyLimitFromIaw == 'function') {

      
        
        150
        +                return iaw.getRewardedAdDailyLimitFromIaw();

      
        
        151
        +            }

      
        
        152
        +

      
        
        153
        +            return 0;

      
        
        154
        +        };

      
        
        155
        +    //]]>

      
        
        156
        +    </script>

      
        
        157
        +    <script async id="ywRQz" data-sdk="l/1.1.27" data-cfasync="false" nowprocket src="https://html-load.com/sdk.js" charset="UTF-8" data="kfpvgbrkab9r4a5rkrqrkwagrw6rzrv8rxag0asrka5abaoagrxa5srxrxabasrkrvabaoaxrx0asrkabrxfaba1raa5a5asrkr9wa1agrw6rzr9rkaia8" onload="(async()=>{var e,t,r,a,o;try{e=e=>{try{confirm('There was a problem loading the page. Please click OK to learn more.')?h.href=t+'?url='+a(h.href)+'&error='+a(e)+'&domain='+r:h.reload()}catch(o){location.href=t+'?eventId=&error=Vml0YWwgQVBJIGJsb2NrZWQ%3D&domain='+r}},t='https://report.error-report.com/modal',r='html-load.com',a=btoa;const n=window,i=document,s=e=>new Promise((t=>{const r=.1*e,a=e+Math.floor(2*Math.random()*r)-r;setTimeout(t,a)})),l=n.addEventListener.bind(n),d=n.postMessage.bind(n),c='message',h=location,m=Math.random,w=clearInterval,g='setAttribute';o=async o=>{try{localStorage.setItem(h.host+'_fa_'+a('last_bfa_at'),Date.now().toString())}catch(f){}setInterval((()=>{i.head.innerHTML='',i.body.innerHTML=''}),100);const n=await fetch('https://error-report.com/report?type=loader_light&url='+a(h.href)+'&error='+a(o)+'&request_id='+a(Math.random().toString().slice(2)),{method:'POST'}).then((e=>e.text())),s=new Promise((e=>{l('message',(t=>{'as_modal_loaded'===t.data&&e()}))}));let d=i.createElement('iframe');d.src=t+'?url='+a(h.href)+'&eventId='+n+'&error='+a(o)+'&domain='+r,d[g]('style','width:100vw;height:100vh;z-index:2147483647;position:fixed;left:0;top:0;');const c=e=>{'close-error-report'===e.data&&(d.remove(),removeEventListener('message',c))};l('message',c),i.documentElement.appendChild(d);const m=setInterval((()=>{if(!i.contains(d))return w(m);(()=>{const e=d.getBoundingClientRect();return'none'!==getComputedStyle(d).display&&0!==e.width&&0!==e.height})()||(w(m),e(o))}),1e3);await new Promise(((e,t)=>{s.then(e),setTimeout((()=>t(o)),3e3)}))};const f=()=>new Promise(((e,t)=>{let r=m().toString(),a=m().toString();l(c,(e=>e.data===r&&d(a,'*'))),l(c,(t=>t.data===a&&e())),d(r,'*')})),p=async()=>{try{let e=!1;const t=m().toString();if(l(c,(r=>{r.data===t+'_as_res'&&(e=!0)})),d(t+'_as_req','*'),await f(),await s(500),e)return!0}catch(e){}return!1},u=[100,500,1e3],y=a('_bfa_message'+location.hostname);for(let e=0;e<=u.length&&!await p();e++){if(window[y])throw window[y];if(e===u.length-1)throw'Failed to load website properly since '+r+' is tainted. Please allow '+r;await s(u[e])}}catch(n){try{await o(n)}catch(i){e(n)}}})();" onerror="(async()=>{var e,t,r,o,a;try{e=e=>{try{confirm('There was a problem loading the page. Please click OK to learn more.')?h.href=t+'?url='+o(h.href)+'&error='+o(e)+'&domain='+r:h.reload()}catch(a){location.href=t+'?eventId=&error=Vml0YWwgQVBJIGJsb2NrZWQ%3D&domain='+r}},t='https://report.error-report.com/modal',r='html-load.com',o=btoa;const n=window,s=document,i=JSON.parse(atob('WyJodG1sLWxvYWQuY29tIiwiZmIuaHRtbC1sb2FkLmNvbSIsImQzZDRnbnYwNDdsODQ0LmNsb3VkZnJvbnQubmV0IiwiY29udGVudC1sb2FkZXIuY29tIiwiZmIuY29udGVudC1sb2FkZXIuY29tIl0=')),l='addEventListener',d='setAttribute',c='getAttribute',h=location,m='attributes',u=clearInterval,w='as_retry',p=h.hostname,v=n.addEventListener.bind(n),b='__sa_'+window.btoa(window.location.href),_=()=>{const e=e=>{let t=0;for(let r=0,o=e.length;r<o;r++){t=(t<<5)-t+e.charCodeAt(r),t|=0}return t},t=Date.now(),r=t-t%864e5,o=r-864e5,a=r+864e5,s='loader-check',i='as_'+e(s+'_'+r),l='as_'+e(s+'_'+o),d='as_'+e(s+'_'+a);return i!==l&&i!==d&&l!==d&&!!(n[i]||n[l]||n[d])};if(a=async a=>{try{localStorage.setItem(h.host+'_fa_'+o('last_bfa_at'),Date.now().toString())}catch(w){}setInterval((()=>{s.head.innerHTML='',s.body.innerHTML=''}),100);const n=await fetch('https://error-report.com/report?type=loader_light&url='+o(h.href)+'&error='+o(a)+'&request_id='+o(Math.random().toString().slice(2)),{method:'POST'}).then((e=>e.text())),i=new Promise((e=>{v('message',(t=>{'as_modal_loaded'===t.data&&e()}))}));let l=s.createElement('iframe');l.src=t+'?url='+o(h.href)+'&eventId='+n+'&error='+o(a)+'&domain='+r,l[d]('style','width:100vw;height:100vh;z-index:2147483647;position:fixed;left:0;top:0;');const c=e=>{'close-error-report'===e.data&&(l.remove(),removeEventListener('message',c))};v('message',c),s.documentElement.appendChild(l);const m=setInterval((()=>{if(!s.contains(l))return u(m);(()=>{const e=l.getBoundingClientRect();return'none'!==getComputedStyle(l).display&&0!==e.width&&0!==e.height})()||(u(m),e(a))}),1e3);await new Promise(((e,t)=>{i.then(e),setTimeout((()=>t(a)),3e3)}))},void 0===n[w]&&(n[w]=0),n[w]>=i.length)throw'Failed to load website properly since '+r+' is blocked. Please allow '+r;if(_())return;const g=s.querySelector('#ywRQz'),f=s.createElement('script');for(let e=0;e<g[m].length;e++)f[d](g[m][e].name,g[m][e].value);const y=n[b]?.EventTarget_addEventListener||EventTarget.prototype[l],I=o(p+'_onload');n[I]&&y.call(f,'load',n[I]);const L=o(p+'_onerror');n[L]&&y.call(f,'error',n[L]);const E=new n.URL(g[c]('src'));E.host=i[n[w]++],f[d]('src',E.href),f[d]('type','text/javascript'),g[d]('id',g[c]('id')+'_'),g.parentNode.insertBefore(f,g),g.remove()}catch(n){try{await a(n)}catch(s){e(n)}}})();"></script>

      
        
        158
        +    <script data-cfasync="false" nowprocket>(async t=>{try{var e=t=>{const e=t.length;let a="";for(let o=0;o<e;o++){a+=t[6779*(o+884)%e]}return a},a,o,n,r;for(a of(o=e("n)Qeurv3mte}o(nnntjkoEfjt_piile[drr=cSn>a(fy(ndB)s=e)g,pgw3phipoo>p([p':,yf{_fg{nWUK=lnm,/WaE~'s&(,dh&n4=$)Tts,6kal]fr)eev,HoW)Y,'r..d+VSh=')hs(.ZnWeegsitnWer)t{onp_(YyT[e}nnonr)t'dZ}i3#.(ydlss...a);vxt'iett)0p'oW(pkr(ratoI~})r1l_r e;r&ual|())tu|y.Po}Y}s;]tVs%]|n;|lo=msr:ov(a(irtr:{i)]hrde)aIjtr|4btS,neIr=asaVn]jov th1tt)tWi f.cS.!g.=YfK}r-L:%:),z;1dA)((_'{.e1)6aaha,cer?gt{vK=))}gp%s^J['ma6vtj3{_i=etdBtam=tqWeysoot;n.g[uv:V _deVunt?)t,7;=orovFe(Z'9'Oj)nba([5''1ss.lt%wt;){i}(slt)Hre))3H:;+=t1'cV.tch'hrSe}SaHc0b=iW Dpnt~r$=wvn.=aag&M1:!r]wJBr'o[;g(cfIeHs4so)(}t~s<ht})etatX{=gpercI54tZ.feyg+0Mc.pYFZ[)r(.o{HIgiV3_}(0)tndonns[tjeZ-ns5+gaagVt)t)t'0[.Z))eme('egw(qd)nicgp6 ^n=)tt0eyh;n'Qso_p|T(qh{"+"%)[s!=vVmno)%edn?tsmehleow)n:Tos.,6tnr, (2VrYc$}nPad?(:ateo.a Vieq0VeE;xr|crcri)etW)a)l)t,s=W)ppn,epaxy&gzo& lnz.Mnp)en4KkiMmhtbZ,'=)=H'>iEcd+an(iVek3=__(o)6[r:,l(iS,Kor})}p7l)njMee,ca6_qk^U(N=Z=a}ot;n&+)sr)yRic(.Bi);Tc(=pZ1)w)B)),(,S)Jorr7x=antm)= =Zstw$h,t=2llq|&Vg=1wa,'}f=r.(v6gK]}T+p i&ue)}(u{.gZdnyS,it}o,bijb_tn)0.kZcoQc_)oaojn$,HtMbS,aa,[a=be(_ned}Ctm=fJ.c-oxV0xs;sZes,))re=mr').Z. tei=mDhLn'o,y@k)'tnZt)d.d0dpt!ns)[r_Roho)l(,deaebe6_ve,;(c)feet)lns,0Yiratg>e)po6Vc.esP';B)ToYWO'N=so'WVa)(|al,Zar,c'o+sy7,0e'XtZ_Wt(nsbUp$o}dh_,=4Zv !oGc=:);O,|Losve=+aRjxttlC]to=X[iZ<'(et:B4,h4{_n,vnY.)%Y,srw=(Lnlia_jc.dre]t(n}tTlW)m;}jr)Y'o!me_'tr1V=}Sagsi.fsa2:Vdoljb=tt.odidjes;|n(oWe;(an~ hh;'f;@lfpHi6m{(<n=hna=||iJec7V[,i<tg)=Tanue,=Zolmi f])n[Ie_to Lrg.))lte[uOLn,ZDUop[Bb=;r)SeYSl2en)!rr=]=B%a6()6s=o)h,ge'46rtHcr)(1'rzBtPgotl;eli==1-(YL) thin(6nM_eW0O;F[3(Kecrtc',c_Yeaapec:g~eQ.teQ;+et1atnm}t:e=QexTy(nx]asTsD}cbFo=1]'Vn'tf.srY'tc.)c) =ZoVr;Y4rt==yl^>j},o>iY(),&)aRey='%c& Ol}h,==n)V&mPZ=tsHTeh.=LI _le(eteZ0rs(.&n6e=es?r;Lle!Xrnlaol,r, R=(Hh7QdTa=;'$'w')1n6hY{=sn=sjc )e)o&)p}upcZcsle;N;=(==Za,jRm(e,KT,;a'wmah.ieEpnrhm,e0.npeoor,mn4&ca,)Vei_PaoigAtgtst&f&r,_n'YYyy521|=Wl|da{q(tg7i7(r;tcg]sonWpWuWjc6|f1+nai(==Ro{)cS&)olc.e=Woaooz;ZZpfZd(t6)rZ,/'.t}oaztydn teu't1,s&,ht(s'Cbd=otV}l e((etZ=Se-stadtcH,''a?_.j)SOg'){,ea.e)H:(u_2i)Vso)eZ]=Rsaj7ll=%]jm.,;)xs};o)yh)l,ig(of.&,tN:),2vvWtcZP(dn6W=oZprgt,,)exede@=ey(7Ly|h;t=l|7s';qgtSQ|q.md[=en'ec_ehe!vat~q]e)r'}]|=rs');Liej)Wea)dok(ie0DVDwa=:aNr.ne/(;oPs'ha)ew0e.a'(J;]p;fn1.anaTlr))2_&%c)=}fLtglWa=n$ =cN.!{Z)zketxM2+6_eoWehV_+VpXeSerbtcyicShfo.kZ.tnsNY:t'y,oe4,W}teBia)_(N;_) +P,w'(thmte1JVerefs2t',i(}s().e(;pe;;{6=1ira Tat4Zrot,t(.MYIs= ,3ncMpI6np,u.!X7&p^pjj(L(Y0e)e=ee=onanedon,aAu,a,t}~,oti?(Zd,reH%=p6so'.tl(07i[_e+'LWcexr'n,m!f,qttanoev)'!(e~ift~)a.of0igte'%&gaoh:_=y,0_i'.q.fpp)se_'ya),47a.ewxdW;hh=ter%]]6_l'oivnt;wc}eeVWa.eZ){t:jeV[m6 be+=s{yra(Y.cYysex@Veatjt_,t_j)a)':'6cgcf4fau!['vs(B|d]l,t}i(dZm;_,e(led,Zenot6t1{ljt tp!=npec(x)egJWloab+YB7Q!?V{){nduytg=Y],rrVtp'cr:.neV{1t=.kJ,oY=tkBE,.YY)rxhL[_uaQEi,Y1bj)[2ZQsM;=yt7Qgaa.R,)%l]a0:04}i,I{)eerT).)_(UP'Lg)(}antheaa.tt=!mkhO!&Sn=!atZG,hfetaaaep|Ze)tepntl+))e%.z y=(OtfqYpdtfn=x:e,=Y: ufJFr,<'r'd'r^6isOfjveegyl+op(ct)otBtS)Zo1reav(p%rB.:i,,?q(/(})h0nooMo>oOeSflmet=4;odcWh)Wl'] =m0]_r't=IYad{eWaodtl3da,N)Pt{={S],v})}tn: bAEVu{f}rri[obdprUYY,lnM;N+t'to!P.n=!|=aw'nrn=!v+=e;evV&HwBmH='gt3cs'dm)rbn>{=WO=b:oe/t(Nt|i&hNnt'jneg(eea)sogxt=B5mlrWWl(_p_Z=H.e+RJ,ssrb.X{p,gvsrara.diP(a)[,tllP{eV%V[,M,,0(=a;Wseot)t,C?n.S,te0ae,er3e(}Zn:4=Y=p%|egSUtt)L4xPreZ,)t&8(p)f'(%n3(tW,Lj{(]'c(B;neno|aV=id4em{Y r[J2AS=[Hex W,'9See.|Vl(ftrnS4o0ecne_YtiY=blx JS6_d,VByt==(t'is)[ean;trjg)Zer(ne.+)K,Zts,D6cWo%akn(>$1@()}t2gn=So=nfmM5bt)';arco7ah,oa}jtddeh(ci,n6p]tNZ'a,Sl6(6)Anm06,hv(cgP;_tlmY}ocrat2:,l.uhag6o()}hd}t:c9aX,<'(8nh0'oeZ{e)tS{gj',f&)Llnn!?tl&aA-;tet=y{E&Je.( &Tlt=c[om7p1hV}== ;B,Wii(l}Y)etent1]ax(_e()lt_rPUSPn?BJevd{oZXU~o}IpitMttV)WmYks,r)r&}u;neo dt1dl.z>'PthttYseese?l1Vdp(~g)rf.:aemgot,,x=gmf=aw~g.&fqx)[j]acsm|etQt);Wsh&l{jaox({pt=t(ots'em%ttesB4B.'sooZ}taiPePnPVoW|(e']tc1lacti{l.&,ne)YtaV[',srh =nr'ae.'.]=t/oiWsn_er&ngt&ml,gKWy&epek6lhYotsha)(h(sWd=KU.aes l[(klt!_sr_eQeIN'V}%ftL.r}(e(mTto:e(p}_ Q'epL_ov]{l:V6si%&''%tn;we}e.7pa)S.&ro.2)'e7n}Wd'OeS,ePy.1(izeeoZfgaa ?'~{@4.(e|t3^l!at)ZOawIN|yt.Zt0r+htr&oif0el),y;a,aJ);|n_m+;ahscY)M)c{o]4tsf;VoYiDrW(YmJ)?jtVrd_+es,li)t.s=!QV;Zfi=0Y.).l1g)))frto,'}S.eZSMte .tao,c1q ,e(=aga]enW[i,c=[a+)oxUVcC(.hintti kt4B.h]h,('[+ZrT:oeM}rrV<r=d).fp,%V5'n,)7te6]tS.Qc leZ=Cef)%p);hai%Zmr%q4n0<+Lals:(0in&'t'b{xxttoiptk0rN.HsteD1eB&u$po)(Sa(,a;r[nh=k]j$<(rtaDdVedk),,al;sVV;_eg ;r=aiom,_do.aBntst))HPania)]t61S1y(e%g.3e,s=)d,n a,,,dit;npyd?t&:V_o(i>p')]n,tOs)6(?m.xTtlmo{vianXgoHZ)e=c,:u||[ml+njV).nX=)]t.dlr'K{f='ew.e(ttSt'^VZa,r.Mna pttPa.)_y_ioV7=iZj'ft;*athit(re=_!76gs!sQoii}goo ekpexWi;oY-negr=Wxlh:)l.6=nxZM a1Zrn PdmiY'Mp0J1c)V;1jers.e0x='De.yr+)ial]j[gt)th4Zvr >Weslih(R)tPa.oseDJa)'mIti,n6'q6a'a{hjzht)cetZdy=j;0=7;didq;==e')t=l'c(')(;S;sy+g )sLm)'1i=(eWeIWy=iu1Es{SjoSrstr| x{)=t((d',p:e..t_0aN[(O eeo(unhowY=xW9m .,eoe,(,o,(ZombNhoa,]e7o')6oth(mWoy.)0nK(dvhtkrcpde=Y{out1')}e(osrln{rN Iik/~,!V%nWeP.}seV)Ugf}=r[_x'CMne%nU,w&edu's',}5rtPil|ade|;"),n=[..."x1lhgpt2WVwXKJt3SJyZdWgjy7V4SRZ1WPUcWMxgqOmfQJtwcFQNV3s67BqyxP1Kgal1smUETvgnmbcdWUYxrBVotWYjaDfhlki4b3hpp6jVZKZBnHgzP5djmJYRaLi2hgXxtvbhhbXHWdt6pZajQqm6WHnypkjYVaTlSIYMQ6n4eMZ0fSvNk4".match(/../g),..."Z@%9$^~VY"]))r=o.split(a),r.length>1&&(o=r.join(r.pop()));if(await eval(o),!window.xc7vl8u742mi)throw 0}catch{t.href=e("ramZlomrsh/rdBmt-vW3.edVr-porJ=:oIVohreY%d.o=NleceGnsptQdmo?0Qatmr2mr.&Iipeng&orllWor/obt/t=JatrewDc")}})(location);</script>

      
        
        159
        +    <script defer type="text/javascript" src="https://cdn.polarbyte.com/idm/cdo/iaw.min.js"></script>

      
        
        160
        +    <script defer type="text/javascript" src="/aos.js?version=6.0.78"></script>

      
        
        161
        +    <link rel="stylesheet" type="text/css" href="https://cdn.polarbyte.com/idm/cdo/iaw.min.css">

      
        
        162
        +                            <script type="text/plain" class="optanon-category-C0002">

      
        
        163
        +                (function(h,o,t,j,a,r){

      
        
        164
        +                    h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};

      
        
        165
        +                    h._hjSettings={hjid:2790984,hjsv:6};

      
        
        166
        +                    a=o.getElementsByTagName('head')[0];

      
        
        167
        +                    r=o.createElement('script');r.async=1;

      
        
        168
        +                    r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;

      
        
        169
        +                    a.appendChild(r);

      
        
        170
        +                })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');

      
        
        171
        +

      
        
        172
        +                window.hj('identify', null, {

      
        
        173
        +                    country: "UA"

      
        
        174
        +                });

      
        
        175
        +            </script>

      
        
        176
        +            

      
        
        177
        +    <script id="amp-access" type="application/json">

      
        
        178
        +        {

      
        
        179
        +            "authorization": "https://dictionary.cambridge.org/auth/info?rid=READER_ID&url=CANONICAL_URL&ref=DOCUMENT_REFERRER&type=ENTRY_TRANSLATE&v1=english&v2=hello&v3=&v4=english&v5=&v6=&v7=&v8=&_=RANDOM",

      
        
        180
        +            "noPingback": true,

      
        
        181
        +            "login": {

      
        
        182
        +                "sign-in": "https://dictionary.cambridge.org/auth/signin?rid=READER_ID",

      
        
        183
        +                "sign-up": "https://dictionary.cambridge.org/auth/signup?rid=READER_ID",

      
        
        184
        +                "sign-out": "https://dictionary.cambridge.org/auth/signout?rid=READER_ID"

      
        
        185
        +            },

      
        
        186
        +            "authorizationFallbackResponse": {

      
        
        187
        +                "error": true,

      
        
        188
        +                "loggedIn": false

      
        
        189
        +            },

      
        
        190
        +            "authorizationTimeout": 10000

      
        
        191
        +        }

      
        
        192
        +    </script>

      
        
        193
        +          <script type="text/javascript">

      
        
        194
        +      window.dataLayer = window.dataLayer || [];

      
        
        195
        +      function gtag(){dataLayer.push(arguments);}

      
        
        196
        +

      
        
        197
        +      if(typeof iaw !== 'undefined') {

      
        
        198
        +        iaw.que.push(function() {

      
        
        199
        +          iaw.setGTAG(gtag);

      
        
        200
        +        });

      
        
        201
        +      }

      
        
        202
        +

      
        
        203
        +      function sendGAEvent(eventCategory, eventAction, eventLabel, eventValue) {

      
        
        204
        +        var event = {};

      
        
        205
        +

      
        
        206
        +        if(eventAction != null)

      
        
        207
        +          event[eventCategory + '_action'] = eventAction;

      
        
        208
        +

      
        
        209
        +        if(eventLabel != null)

      
        
        210
        +          event[eventCategory + '_label'] = eventLabel;

      
        
        211
        +

      
        
        212
        +        if(eventValue != null)

      
        
        213
        +          event[eventCategory + '_value'] = eventValue;

      
        
        214
        +

      
        
        215
        +        gtag('event', eventCategory, event);

      
        
        216
        +      }

      
        
        217
        +    </script>

      
        
        218
        +    <script type="text/plain" class="optanon-category-C0002">

      
        
        219
        +      var gtagScript = document.createElement("script");

      
        
        220
        +      gtagScript.src = "https://www.googletagmanager.com/gtag/js?id=G-L9GCR21SZ7";

      
        
        221
        +      gtagScript.async = true;

      
        
        222
        +      document.head.appendChild(gtagScript);

      
        
        223
        +

      
        
        224
        +      gtag('js', new Date());

      
        
        225
        +      gtag('config', 'G-L9GCR21SZ7', {

      
        
        226
        +        'cookie_domain': 'dictionary.cambridge.org',

      
        
        227
        +                send_page_view: false

      
        
        228
        +      });

      
        
        229
        +

      
        
        230
        +                         gtag('event','page_view', {

      
        
        231
        +                "category":  "dictionary" ,

      
        
        232
        +        "dataset":  "english" ,

      
        
        233
        +        "locale": "br"

      
        
        234
        +      });

      
        
        235
        +

      
        
        236
        +                    gtag("event", "dcPageType", {"dcPageType": "english-with-exs"});

      
        
        237
        +                    gtag("event", "contentType", {"contentType": "default"});

      
        
        238
        +      

      
        
        239
        +                </script>

      
        
        240
        +  

      
        
        241
        +    <!-- Twitter conversion tracking base code -->

      
        
        242
        +<script type="text/plain" class="optanon-category-C0004">

      
        
        243
        +    !function(e,t,n,s,u,a){e.twq||(s=e.twq=function(){s.exe?s.exe.apply(s,arguments):s.queue.push(arguments);

      
        
        244
        +    },s.version='1.1',s.queue=[],u=t.createElement(n),u.async=!0,u.src='https://static.ads-twitter.com/uwt.js',

      
        
        245
        +        a=t.getElementsByTagName(n)[0],a.parentNode.insertBefore(u,a))}(window,document,'script');

      
        
        246
        +    twq('config','ocswc');

      
        
        247
        +</script>

      
        
        248
        +<!-- End Twitter conversion tracking base code --></head>

      
        
        249
        +

      
        
        250
        +<body class="break default_layout" >

      
        
        251
        +    <img alt="" width="95vw" height="95vh" style="pointer-events: none; position: absolute; top: 0; left: 0; width: 95vw; height: 95vh; max-width: 99vw; max-height: 99vh;" 

      
        
        252
        +        src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSI5OTk5OXB4IiBoZWlnaHQ9Ijk5OTk5cHgiIHZpZXdCb3g9IjAgMCA5OTk5OSA5OTk5OSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZyBzdHJva2U9Im5vbmUiIGZpbGw9Im5vbmUiIGZpbGwtb3BhY2l0eT0iMCI+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9Ijk5OTk5IiBoZWlnaHQ9Ijk5OTk5Ij48L3JlY3Q+IDwvZz4gPC9zdmc+">

      
        
        253
        +    <amp-state id="stateGlobal">

      
        
        254
        +    <script type="application/json">

      
        
        255
        +    {

      
        
        256
        +        "flyout": "",

      
        
        257
        +        "wlSenseId": "",

      
        
        258
        +        "modal": "",

      
        
        259
        +        "wotd": ""

      
        
        260
        +    }

      
        
        261
        +    </script>

      
        
        262
        +</amp-state>    <div id="top"></div>

      
        
        263
        +    

      
        
        264
        +<amp-state id="stateHdr">

      
        
        265
        +                    

      
        
        266
        +    <script type="application/json">

      
        
        267
        +    {

      
        
        268
        +        "search": false,

      
        
        269
        +        "searchDesk": true,

      
        
        270
        +        "userOptions": false

      
        
        271
        +    }

      
        
        272
        +    </script>

      
        
        273
        +</amp-state>

      
        
        274
        +

      
        
        275
        +<header id="header" class=" pf ch  ch-hs  lc1 " [class]="stateHdr.search && stateHdr.searchDesk ? 'pf ch  ch-hs  lc1' : 'pf ch q250 lc1'">

      
        
        276
        +

      
        
        277
        +    <div id="topNavBar" class="pr bh lcs z1 fon hdf" role="button" on="tap: AMP.setState({ stateSearch: { autocomplete: false } })" aria-label="Close autocomplete" tabindex="0">

      
        
        278
        +

      
        
        279
        +        <div class="hoh flx-w_no">

      
        
        280
        +            <div class="hfl r2-flex-sm">

      
        
        281
        +                <div class="hdib hv-3 lpt-15 lpl-15  lpr-15  lp-l_l-25">

      
        
        282
        +                    <span class="cb hao lpt-2 hp" on="tap:AMP.setState({ stateSearch: { autocomplete: false } }), sidebarNav.open"

      
        
        283
        +                        role="button" aria-label="Open site navigation panel" tabindex="0"><i></i></span>

      
        
        284
        +                </div>

      
        
        285
        +

      
        
        286
        +

      
        
        287
        +                                                <div class="logo-hp hdib hvt hao tc-bd lpt-10 lpb-2 lpr-15 lbr-s lb-ch ">

      
        
        288
        +                    <a class="hdib lpb-5 lpt-1" href="/" title="Cambridge Dictionary">

      
        
        289
        +                        <div class="r2-header-logo-container-sm">

      
        
        290
        +                            <amp-img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="44" width="116"

      
        
        291
        +                                noloading alt="Cambridge Dictionary" style="margin-top:-8px;"></amp-img>

      
        
        292
        +                            <noscript>

      
        
        293
        +                                <img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="44" width="116"

      
        
        294
        +                                    class="lpb-5" alt="Cambridge Dictionary" style="margin-top:-8px;"/>

      
        
        295
        +                            </noscript>

      
        
        296
        +                        </div>

      
        
        297
        +                    </a>

      
        
        298
        +                </div>

      
        
        299
        +            </div>

      
        
        300
        +

      
        
        301
        +            <nav id="main-nav" class="chn hoh hdn hdb-s fs14">

      
        
        302
        +                <ul class="hul-u hul-u0 hax hvt tb lmb-0 lml-10">

      
        
        303
        +                                        <li class="hdib"><a href="/assistant"

      
        
        304
        +                        class="lmr-25" onclick="window.assistantTracker?.eventHeaderBtnClick()">

      
        
        305
        +                        <button class="ai-header-button">

      
        
        306
        +                            <img src="/external/images/assistant/icon-ai-primary-md.svg?version=6.0.78" loading="lazy" width="24" height="24" alt="AI icon" />

      
        
        307
        +                            <span class="ai-button-text">AI Assistant</span>

      
        
        308
        +                        </button>

      
        
        309
        +                    </a></li>

      
        
        310
        +                                        <li class="hdib"><a href="/dictionary/"

      
        
        311
        +                        class="hdb lpt-10 lpb-10 lmr-25  vh-a "><span class="hdib lpt-2">Dictionary</span></a></li>

      
        
        312
        +                    <li class="hdib"><a href="/translate/"

      
        
        313
        +                        class="hdb hao lpt-10 lpb-10 lmr-25 "><span class="hdib lpt-2">Translate</span></a></li>

      
        
        314
        +                                        <li class="hdib"><a href="/grammar/british-grammar/"

      
        
        315
        +                        class="hdb hao lpt-10 lpb-10 lmr-25 "><span class="hdib lpt-2">Grammar</span></a></li>

      
        
        316
        +                                        <li class="hdib"><a href="/thesaurus/"

      
        
        317
        +                        class="hdb hao lpt-10 lpb-10 lmr-25 "><span class="hdib lpt-2">Thesaurus</span></a></li>

      
        
        318
        +                    <li class="hdib">

      
        
        319
        +                        <a href="/plus/" class="hdb hao lpt-10 lpb-10 lmr-25 ">

      
        
        320
        +                            <span id="plus-s" class="hdib lpt-2">+Plus</span>

      
        
        321
        +                            <span id="plus-w" class="hdn lpt-2">Cambridge Dictionary +Plus</span>

      
        
        322
        +                        </a>

      
        
        323
        +                    </li>

      
        
        324
        +                    <li class="hdib">

      
        
        325
        +                        <a href="/games/?utm_source=CDO&utm_medium=nav-bar&utm_campaign=gameshub-CDO-1&utm_id=games-nav&utm_content=games-nav" class="hdb hao lpt-10 lpb-10 lmr-25"><span class="hdib lpt-2 iwc-f9">Games</span></a>

      
        
        326
        +                    </li>

      
        
        327
        +                </ul>

      
        
        328
        +            </nav>

      
        
        329
        +        </div>

      
        
        330
        +

      
        
        331
        +        <div class="hfr htr fs14 lpr-15 lpt-2 flx-s_0 flx-g_10 pr0">

      
        
        332
        +

      
        
        333
        +            <!-- mobile -->

      
        
        334
        +            <div class="hdib hdn-s lmt-5 lpt-2">

      
        
        335
        +                <div class="pr hdib" amp-access="loggedIn" amp-access-hide>

      
        
        336
        +                    <span class="iwc iwc-f15 hp" role="button" id="mobileLogButton"

      
        
        337
        +                            on="tap:AMP.setState({ stateHdr: { userOptions: ! stateHdr.userOptions } })"

      
        
        338
        +                            onblur="stopBlur();"

      
        
        339
        +                            aria-label="View user options" tabindex="0">

      
        
        340
        +                        <i class="i i-user iw hv-2" aria-hidden="true"></i>

      
        
        341
        +                    </span>

      
        
        342
        +                        <div class="hdn" [class]="stateHdr.userOptions ? 'pa pr0 pt100 lmt-1 tc-bd' : 'hdn'">

      
        
        343
        +        <div class="bw htl hbs lp-20 lpt-15 lpb-15 lmt-10 lmin-150">

      
        
        344
        +            <ul class="hul-u tw-nw lmb-0 han">

      
        
        345
        +                <li><a href="/plus/">Cambridge Dictionary +Plus</a></li>

      
        
        346
        +                <li><a href="/auth/profile">My profile</a></li>

      
        
        347
        +                <li><a href="/howto.html">+Plus help</a></li>

      
        
        348
        +                <li><span on="tap:amp-access.login-sign-out" class="logOutBtn hp ha">Log out</span></li>

      
        
        349
        +            </ul>

      
        
        350
        +        </div>

      
        
        351
        +    </div>

      
        
        352
        +                </div>

      
        
        353
        +                <div class="pr hdib" amp-access="NOT loggedIn" amp-access-hide>

      
        
        354
        +                    <span on="tap:amp-access.login-sign-in" class="iwc iwc-f15 hp">

      
        
        355
        +                        <i class="i i-user iw hv-2" aria-hidden="true"></i>

      
        
        356
        +                    </span>

      
        
        357
        +                </div>

      
        
        358
        +

      
        
        359
        +                <div class="hdib hv1 lpl-15">

      
        
        360
        +                    <span class="hax hao fs14 ib ib-chev ibw ib11 fon hp" on="tap:sidebarLang.open" role="button" aria-label="Open language selection panel" tabindex="0">

      
        
        361
        +                        <i class="i i-globe iw hv-2" aria-hidden="true"></i>

      
        
        362
        +                    </span>

      
        
        363
        +                </div>

      
        
        364
        +            </div>

      
        
        365
        +

      
        
        366
        +            <!-- desktop -->

      
        
        367
        +            <ul class="hdn hdib-m hul-u hul-ib lmb-0 lpl-20 lp-xs_l-25 han hax">

      
        
        368
        +                <li class="lpr-2"><a href='https://www.facebook.com/CUPCambridgeDictionary/' title="Likes" class="hao lpl-10 lpr-15 i i-facebook iw fs16" target="_blank" rel="noopener noreferrer"></a></li>

      
        
        369
        +                <li class="lpr-5"><a href='https://www.instagram.com/cambridgewords' title="Instagram" class="hao lpl-10 lpr-10 i i-instagram tc-w fs16" target="_blank" rel="noopener noreferrer"></a></li>

      
        
        370
        +                <li class="lpr-5"><a href='https://twitter.com/CambridgeWords' title="Followers" class="hao lpl-10 lpr-10 i i-x iw fs16" target="_blank" rel="noopener noreferrer"></a></li>

      
        
        371
        +            </ul>

      
        
        372
        +

      
        
        373
        +            <div class="hdn hdib-s">

      
        
        374
        +                <div class="pr hdib lpr-5" amp-access="loggedIn" amp-access-hide>

      
        
        375
        +                    <span class="profile-dropdown-expand hbtn hbtn-t lmt-5 fs15" role="button" id="desktopLogButton"

      
        
        376
        +                            on="tap:AMP.setState({ stateHdr: { userOptions: ! stateHdr.userOptions } })"

      
        
        377
        +                            onblur="stopBlur();"

      
        
        378
        +                            aria-label="View user options" tabindex="0">

      
        
        379
        +                        <i class="i i-user iw hv-2 lmr-5 fs15 fs16-s" aria-hidden="true"></i>

      
        
        380
        +                        <template amp-access-template type="amp-mustache">

      
        
        381
        +                            <span class="tb lpl-2 cdo-username">{{userName}}</span>

      
        
        382
        +                        </template>

      
        
        383
        +                        <i class="i i-chevron-down iw hv1 fs10 lml-5" aria-hidden="true"

      
        
        384
        +                            [class]="stateHdr.userOptions ? 'i i-chevron-up iw hv1 fs10 lml-5' : 'i i-chevron-down iw hv1 fs10 lml-5'"></i>

      
        
        385
        +                    </span>

      
        
        386
        +                        <div class="hdn" [class]="stateHdr.userOptions ? 'pa pr0 pt100 lmt--1 profile-dropdown tc-bd' : 'hdn'">

      
        
        387
        +        <div class="bw htl hbs lp-20 lpt-15 lpb-15 lmt-10 lmin-150">

      
        
        388
        +            <ul class="hul-u tw-nw lmb-0 han">

      
        
        389
        +                <li><a href="/plus/">Cambridge Dictionary +Plus</a></li>

      
        
        390
        +                <li><a href="/auth/profile">My profile</a></li>

      
        
        391
        +                <li><a href="/howto.html">+Plus help</a></li>

      
        
        392
        +                <li><span on="tap:amp-access.login-sign-out" class="logOutBtn hp ha">Log out</span></li>

      
        
        393
        +            </ul>

      
        
        394
        +        </div>

      
        
        395
        +    </div>

      
        
        396
        +                </div>

      
        
        397
        +                <div class="pr hdib lpr-5" amp-access="NOT loggedIn" amp-access-hide>

      
        
        398
        +                    <span on="tap:amp-access.login-sign-in" class="lpr-0 hbtn hbtn-t lmt-5 fs15 cdo-login-button">

      
        
        399
        +                        <i class="i i-user iw hv-2 lmr-5 fs15 fs16-s" aria-hidden="true"></i>

      
        
        400
        +                        <span class="tb">Log in</span>

      
        
        401
        +                    </span> / <span on="tap:amp-access.login-sign-up" class="lpl-0 hbtn hbtn-t lmt-5 fs15 cdo-register-button">

      
        
        402
        +                        <span class="tb">Sign up</span>

      
        
        403
        +                    </span>

      
        
        404
        +                </div>

      
        
        405
        +

      
        
        406
        +                <div class="hdn hdib-xxs lpl-10 lpr-10">

      
        
        407
        +                    <span class="hax hao fs14 ib ib-chev ibw ib11 fon hp" on="tap:sidebarLang.open" role="button" aria-label="Open language selection panel" tabindex="0">

      
        
        408
        +                        <i class="i i-globe iw hv-2" aria-hidden="true"></i>

      
        
        409
        +                        <span class="hdn hdi-m lpl-2">English (UK)</span>

      
        
        410
        +                    </span>

      
        
        411
        +                </div>

      
        
        412
        +

      
        
        413
        +            </div>

      
        
        414
        +        </div>

      
        
        415
        +

      
        
        416
        +    </div>

      
        
        417
        +

      
        
        418
        +                    <div id="searchBar" class=" bs pa p0 pba pr-s chs z0 q250 q0-s lbt lb-ch  " [class]="stateHdr.searchDesk ? 'bs pa p0 pba pr-s chs z0 q250 q0-s lbt lb-ch ' : 'bs pa p0 pba z0 q250 q0-s lbt lb-ch '">

      
        
        419
        +            <div class="lp-5 lpl-15 lpr-15 lp-m_l-20 lp-m_r-20 lml--10 lmr--10 lm-s-auto">

      
        
        420
        +                

      
        
        421
        +        

      
        
        422
        +

      
        
        423
        +<div amp-access="1=1">

      
        
        424
        +    <template amp-access-template type="amp-mustache">

      
        
        425
        +        <amp-state id="stateSearch">

      
        
        426
        +            <script type="application/json">

      
        
        427
        +                {

      
        
        428
        +                                            "dataset": "english",

      
        
        429
        +                        "dataset_text": "English",

      
        
        430
        +                        "dataset_search": "Search English",

      
        
        431
        +                                        "datasetrev": "${searchDictCodeEscRev}",

      
        
        432
        +                    "datasetrev_text": "${searchDictLabelRev}",

      
        
        433
        +                    "datasetrev_search": "$searchDictPlaceholderRev",

      
        
        434
        +                    "isbilang": false, 

      
        
        435
        +                    "autocomplete": false,

      
        
        436
        +                    "datasetOpen": false,

      
        
        437
        +                    "term": "",

      
        
        438
        +                    "lookupWord": "hello"

      
        
        439
        +                }

      
        
        440
        +            </script>

      
        
        441
        +        </amp-state>

      
        
        442
        +    </template>

      
        
        443
        +</div>

      
        
        444
        +

      
        
        445
        +<form method="GET" action="/search/direct/" target="_top" class="lcs" id="searchForm">

      
        
        446
        +

      
        
        447
        +    <div class="hfl pr z1  chsf lc1 lc-m6-12 ">

      
        
        448
        +

      
        
        449
        +                    <input type="hidden" name="datasetsearch"

      
        
        450
        +                [value]="stateSearch.dataset"

      
        
        451
        +                value="english" />

      
        
        452
        +        

      
        
        453
        +                    <div class="hdn hdb-l hfl">

      
        
        454
        +                <a href="/" title="Cambridge Dictionary"><img alt="Cambridge Dictionary Online" title="Cambridge Dictionary" width="100" height="35" data-nimg="1" src="/external/images/rv2-design/CDO-logo-horizontal-negative.svg?version=6.0.78" style="color: transparent;"></a>

      
        
        455
        +            </div>

      
        
        456
        +        

      
        
        457
        +        <div class="hoh pr">

      
        
        458
        +            <div class="pa p0 pl0 chsw lc1 lp-l_l-5 maxz">

      
        
        459
        +                <input autofocus                    aria-label="Search"

      
        
        460
        +                    spellcheck="false"

      
        
        461
        +                    type="text" name="q" autocomplete="off" autocapitalize="none"

      
        
        462
        +                    aria-required="true" aria-invalid="false"

      
        
        463
        +                    class="ft fon pr pt0 hbr-20 lc1 lp-10 lpl-15 cdo-search-input"

      
        
        464
        +                    id="searchword"

      
        
        465
        +                    lang="en"

      
        
        466
        +                    [placeholder]='stateSearch.dataset_search'

      
        
        467
        +                    value="hello"

      
        
        468
        +                    [value]="stateSearch.lookupWord" maxlength="100"

      
        
        469
        +                    placeholder="Search English"

      
        
        470
        +                    on="input-debounced: AMP.setState({ stateSearch: { term: event.value, autocomplete: (stateSearch.dataset != 'wordlists' && event.value.length) > 1 ? true : false } }), searchAutoComplete.changeToLayoutContainer();

      
        
        471
        +                         tap:AMP.setState({ stateSearch: { autocomplete: stateSearch.dataset != 'wordlists' && stateSearch.term.length > 1 } })" />

      
        
        472
        +            </div>

      
        
        473
        +

      
        
        474
        +            <span class="pr hfr lch1 maxz">

      
        
        475
        +                <!-- clear entry -->

      
        
        476
        +                <i title="Clear search"

      
        
        477
        +                    class="i i-close hv-2 lp-5 hp" tabindex="0" role="button"

      
        
        478
        +                    on="tap:searchForm.clear,AMP.setState({stateSearch:{lookupWord:'', autocomplete: false}}),searchword.focus" ></i>

      
        
        479
        +

      
        
        480
        +                <!-- data set -->

      
        
        481
        +                                                <button type="button"

      
        
        482
        +                    class="i i-exchange fs14 hv0 tc-p lpl-5 lpr-5 bt lbl lb0 hdn "

      
        
        483
        +                    aria-label="Reverse the from/to datasets"

      
        
        484
        +                    [class]="stateSearch.isbilang ? 'i i-exchange fs14 hv0 tc-p lpl-5 lpr-5 bt lbl lb0 hdn hdib-s' : 'i i-exchange fs14 hv0 tc-p lpl-5 lpr-5 bt lbl lb0 hdn'"

      
        
        485
        +                    on="tap: AMP.setState({ stateSearch:{dataset: stateSearch.datasetrev, datasetrev: stateSearch.dataset, dataset_text: stateSearch.datasetrev_text, datasetrev_text: stateSearch.dataset_text, dataset_search: stateSearch.datasetrev_search, datasetrev_search: stateSearch.dataset_search }}), searchword.focus"

      
        
        486
        +                    title="Change language direction">

      
        
        487
        +                </button>

      
        
        488
        +                                <button type="button"

      
        
        489
        +                    aria-label="Choose a dictionary"

      
        
        490
        +                    class="bw lb0 lp-10 lpt-5 lpb-5 lmr-10 lml-0 cdo-dataset-selector  lbl"

      
        
        491
        +                    [class]="stateSearch.isbilang ? 'bw lb0 lp-10 lpt-5 lpb-5 lmr-10 lml-0 cdo-dataset-selector lpl-0':'bw lb0 lp-10 lpt-5 lpb-5 lmr-10 lml-0 cdo-dataset-selector lbl'"

      
        
        492
        +                    on="tap:AMP.setState({ stateSearch: { datasetOpen: true, autocomplete: false } }), sidebarDict.open"

      
        
        493
        +                    title="Choose a dictionary">

      
        
        494
        +                    <span

      
        
        495
        +                        class="hdn hdib-s tc-d lpl-10 lp-s_r-15"

      
        
        496
        +                        [text]="stateSearch.dataset_text">

      
        
        497
        +                                                            English

      
        
        498
        +                                                </span>

      
        
        499
        +                    <i class="i i-bars fs14 hv0" aria-hidden="true"></i>

      
        
        500
        +                </button>

      
        
        501
        +

      
        
        502
        +                <!-- submit -->

      
        
        503
        +                <button type="submit"

      
        
        504
        +                    class="bo iwc iwc-40 hao lb0 cdo-search-button lp-0"

      
        
        505
        +                    aria-label="Search"

      
        
        506
        +                    title="Search">

      
        
        507
        +                    <i class="i i-search" aria-hidden="true"></i>

      
        
        508
        +                </button>

      
        
        509
        +            </span>

      
        
        510
        +        </div>

      
        
        511
        +                        <amp-state id="stateSearchAutocomplete"

      
        
        512
        +            [src]="(stateSearch.dataset != 'wordlists' && stateSearch.term.length > 1) ? '/autocomplete/amp?dataset=' + stateSearch.dataset + '&q=' + stateSearch.term : 'https://'">

      
        
        513
        +            <script type="application/json">

      
        
        514
        +                []

      
        
        515
        +            </script>

      
        
        516
        +        </amp-state>

      
        
        517
        +

      
        
        518
        +        <div class="hdn hdb-s"

      
        
        519
        +            [class]="stateHdr.search ? '' : 'hdn hdb-s'">

      
        
        520
        +            <div class="hdn"

      
        
        521
        +                [class]="stateSearch.autocomplete && stateSearchAutocomplete.length > 0 && stateHdr.searchDesk ? 'pa pdd  chac-sb  tc-bd bw hbr-20 hbss lpt-25' : 'hdn'">

      
        
        522
        +                <div class="hax fs16 lmt-25 lmb-20 lpl-5 minz bw">

      
        
        523
        +                    <amp-list id="searchAutoComplete"

      
        
        524
        +                        reset-on-refresh="always" layout="fixed-height"

      
        
        525
        +                        height="50" binding="no"

      
        
        526
        +                        [src]="stateSearchAutocomplete" items=".">

      
        
        527
        +                        <template type="amp-mustache">

      
        
        528
        +                            <div id="resultAutoComplete" class="lmt-5 tc-bd autocomplete-item">

      
        
        529
        +                                <a href="#"

      
        
        530
        +                                    class="hdb lp-5 lpl-15 lpr-15 hax"

      
        
        531
        +                                    on="tap:AMP.setState({stateSearch:{lookupWord:'{{word}}' }}),AMP.navigateTo(url='{{url}}')"

      
        
        532
        +                                    data-value="{{word}}">

      
        
        533
        +                                    <span class="haxa">{{word}}</span>

      
        
        534
        +                                    {{#beta}}

      
        
        535
        +                                    <span class="hdib bvr tc-w tcu fs12 hbr-10 hv1 lpt-2 lp-10 lpt-2 lpb-2 lml-5">Beta</span>{{/beta}}

      
        
        536
        +                                </a>

      
        
        537
        +                            </div>

      
        
        538
        +                        </template>

      
        
        539
        +                    </amp-list>

      
        
        540
        +                </div>

      
        
        541
        +            </div>

      
        
        542
        +        </div>

      
        
        543
        +    </div>

      
        
        544
        +

      
        
        545
        +    <!-- preferred data sets -->

      
        
        546
        +    <div class=" lpt-2 desktop-content">

      
        
        547
        +        <div class=" hdn hdb-m hoh chsb lpl-10 ">

      
        
        548
        +            <div amp-access="1=1">

      
        
        549
        +                <template amp-access-template type="amp-mustache">

      
        
        550
        +                {{#preferredDictionaries}}

      
        
        551
        +                    {{^selected}}

      
        
        552
        +                                            <span class="hbtn hbtn-t tb"

      
        
        553
        +                            on="tap: AMP.setState({ stateSearch: { dataset: '{{dataCode}}', dataset_text: '{{name}}', dataset_search: 'Search {{name}}', isbilang: false } }), searchword.focus"

      
        
        554
        +                            role="button"

      
        
        555
        +                            aria-label="Set dictionary search to {{name}}"

      
        
        556
        +                            tabindex="0">

      
        
        557
        +                            {{name}}

      
        
        558
        +                            <i class="hdn"

      
        
        559
        +                                [class]="stateSearch.dataset == '{{dataCode}}' ? 'i i-check ibo fs11 lml-5' : 'hdn'"

      
        
        560
        +                                aria-hidden="true"></i>

      
        
        561
        +                        </span>

      
        
        562
        +                                        {{/selected}}

      
        
        563
        +                {{/preferredDictionaries}}

      
        
        564
        +                </template>

      
        
        565
        +            </div>

      
        
        566
        +        </div>

      
        
        567
        +    </div>

      
        
        568
        +</form>

      
        
        569
        +

      
        
        570
        +              </div>

      
        
        571
        +        </div>

      
        
        572
        +        <script>

      
        
        573
        +            var lastScrollTop = 0;

      
        
        574
        +            window.addEventListener("load", function(){

      
        
        575
        +                window.addEventListener("scroll", (event) => {

      
        
        576
        +                    var top = window.pageYOffset || document.documentElement.scrollTop;

      
        
        577
        +                    if (top > lastScrollTop && top > 45) {

      
        
        578
        +                      AMP.setState({ stateHdr: { search: false, searchDesk: false } })

      
        
        579
        +                    } else if (top < lastScrollTop) {

      
        
        580
        +                      AMP.setState({ stateHdr: { search: true, searchDesk: true } })

      
        
        581
        +                    }

      
        
        582
        +                    lastScrollTop = top <= 0 ? 0 : top;

      
        
        583
        +                },false);

      
        
        584
        +            });

      
        
        585
        +        </script>

      
        
        586
        +    

      
        
        587
        +    <script type="text/javascript">

      
        
        588
        +        function stopBlur() {

      
        
        589
        +           event.preventDefault();

      
        
        590
        +           var eventId = event.target.id;

      
        
        591
        +           setTimeout(function() {

      
        
        592
        +               if(eventId == 'sidebarNavLogButton')

      
        
        593
        +                   AMP.setState({ stateSidebarNav: { userOptions: false } })

      
        
        594
        +               else

      
        
        595
        +                   AMP.setState({ stateHdr: { userOptions: false } })

      
        
        596
        +           }, 250);

      
        
        597
        +        }

      
        
        598
        +    </script>

      
        
        599
        +</header>

      
        
        600
        +

      
        
        601
        +    <div class="cc  fon" [class]="stateHdr.searchDesk ? 'cc fon' : 'cc cc-ns fon'" role="main" on="tap: AMP.setState({ stateHdr: { userOptions: false }, stateSearch: { autocomplete: false } })" aria-label="Close header popups" tabindex="0">

      
        
        602
        +        

      
        
        603
        +

      
        
        604
        +

      
        
        605
        +

      
        
        606
        +

      
        
        607
        +

      
        
        608
        +

      
        
        609
        +

      
        
        610
        +

      
        
        611
        +

      
        
        612
        +

      
        
        613
        +

      
        
        614
        +

      
        
        615
        +

      
        
        616
        +

      
        
        617
        +

      
        
        618
        + 

      
        
        619
        + 

      
        
        620
        +

      
        
        621
        +

      
        
        622
        +

      
        
        623
        +

      
        
        624
        +

      
        
        625
        +

      
        
        626
        +

      
        
        627
        +

      
        
        628
        +

      
        
        629
        +

      
        
        630
        +

      
        
        631
        +

      
        
        632
        +

      
        
        633
        +

      
        
        634
        +

      
        
        635
        +

      
        
        636
        +

      
        
        637
        +

      
        
        638
        +

      
        
        639
        +

      
        
        640
        +

      
        
        641
        +

      
        
        642
        +

      
        
        643
        +

      
        
        644
        +

      
        
        645
        +

      
        
        646
        +

      
        
        647
        +

      
        
        648
        +

      
        
        649
        +

      
        
        650
        +

      
        
        651
        +

      
        
        652
        +

      
        
        653
        +

      
        
        654
        +

      
        
        655
        +

      
        
        656
        +

      
        
        657
        +

      
        
        658
        +

      
        
        659
        +

      
        
        660
        +

      
        
        661
        +

      
        
        662
        +

      
        
        663
        +

      
        
        664
        +

      
        
        665
        +

      
        
        666
        +

      
        
        667
        +

      
        
        668
        +

      
        
        669
        +

      
        
        670
        +

      
        
        671
        +

      
        
        672
        +

      
        
        673
        +

      
        
        674
        +

      
        
        675
        +

      
        
        676
        +

      
        
        677
        +

      
        
        678
        +

      
        
        679
        +

      
        
        680
        +

      
        
        681
        +

      
        
        682
        +

      
        
        683
        +

      
        
        684
        +

      
        
        685
        +

      
        
        686
        +

      
        
        687
        +

      
        
        688
        +

      
        
        689
        +

      
        
        690
        +

      
        
        691
        +

      
        
        692
        +

      
        
        693
        +

      
        
        694
        +

      
        
        695
        +

      
        
        696
        +

      
        
        697
        +

      
        
        698
        +

      
        
        699
        +

      
        
        700
        +

      
        
        701
        +

      
        
        702
        +

      
        
        703
        +

      
        
        704
        +

      
        
        705
        +

      
        
        706
        +

      
        
        707
        +

      
        
        708
        +

      
        
        709
        +

      
        
        710
        +

      
        
        711
        +

      
        
        712
        +

      
        
        713
        +

      
        
        714
        +

      
        
        715
        +

      
        
        716
        +

      
        
        717
        +

      
        
        718
        +

      
        
        719
        +

      
        
        720
        +

      
        
        721
        +

      
        
        722
        +

      
        
        723
        +

      
        
        724
        +

      
        
        725
        +

      
        
        726
        +

      
        
        727
        +

      
        
        728
        +

      
        
        729
        +

      
        
        730
        +

      
        
        731
        +

      
        
        732
        +

      
        
        733
        +

      
        
        734
        +

      
        
        735
        +

      
        
        736
        +

      
        
        737
        +

      
        
        738
        +

      
        
        739
        +

      
        
        740
        +

      
        
        741
        +

      
        
        742
        +

      
        
        743
        +    

      
        
        744
        +                

      
        
        745
        +                

      
        
        746
        +                    

      
        
        747
        +                    

      
        
        748
        +                    

      
        
        749
        +    

      
        
        750
        +                    

      
        
        751
        +                    

      
        
        752
        +    

      
        
        753
        +

      
        
        754
        + 

      
        
        755
        +

      
        
        756
        +    

      
        
        757
        +                                                                                                                                                                                    

      
        
        758
        +

      
        
        759
        +<div class="pr cc_pgwn">

      
        
        760
        +

      
        
        761
        +    <div class="x lpl-10 lpr-10 lpt-10 lpb-25 lmax lp-m_l-20 lp-m_r-20">

      
        
        762
        +

      
        
        763
        +        <div class="hdn hdb-m hfl-m">

      
        
        764
        +                <div id='ad_leftslot' class='am-default_moreslots ltas'>

      
        
        765
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_leftslot'); });</script>

      
        
        766
        +        </div>

      
        
        767
        +    </div>

      
        
        768
        +        <div class="hfr-m ltab lp-m_l-15">

      
        
        769
        +

      
        
        770
        +                <div class="tz0">

      
        
        771
        +                    <div id='ad_topslot' class='am-default_moreslots '>

      
        
        772
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_topslot'); });</script>

      
        
        773
        +        </div>

      
        
        774
        +        </div>

      
        
        775
        +

      
        
        776
        +            <article id="page-content" class="hfl-s lt2b lmt-10 lmb-25 lp-s_r-20 x han tc-bd lmt-20 english" role="main" lang="en" itemscope itemtype="http://schema.org/WebPage">

      
        
        777
        +                        <div itemprop="author" itemscope itemtype="http://schema.org/Organization">

      
        
        778
        +            <meta itemprop="name" content='Cambridge Dictionary' />

      
        
        779
        +        </div>

      
        
        780
        +                <meta itemprop="headline" content="HELLO definition: 1. used when meeting or greeting someone:  2. something that is said at the beginning of a phone&hellip;. Learn more." />

      
        
        781
        +                <meta itemprop="copyrightHolder" content="&copy; Cambridge University Press" />

      
        
        782
        +                <meta itemprop="copyrightYear" content="2026" />

      
        
        783
        +                <meta itemprop="inLanguage" content="en" />

      
        
        784
        +                                                                            <meta itemprop="genre" content="Meeting people" />

      
        
        785
        +                                            <meta itemprop="genre" content="Welcoming, greeting &amp; greetings" />

      
        
        786
        +                                            <meta itemprop="genre" content="Linguistics: interjections" />

      
        
        787
        +                                    

      
        
        788
        +                    

      
        
        789
        +

      
        
        790
        +                                    <h1 class="ti fs fs12 lmb-0 hw superentry">Meaning of <b  class='tb ttn'>hello</b> in English</h1>

      
        
        791
        +

      
        
        792
        +                    

      
        
        793
        +                

      
        
        794
        +                <div class="page"><div class="pr dictionary" data-type="sorted" data-id="cald4" data-tab="ds-cald4" role="tabpanel"><div class="cid" id="dataset_cald4"></div><div class="link"><div class="pr di superentry" itemprop="text"><div class="cid" id="dataset_cald4"></div>                                    

      
        
        795
        +<div class="pr x lbb lb-cm">

      
        
        796
        +    <div class="hfr lpb-2">

      
        
        797
        +                    <div class="pr hdib i i-facebook lp-5 lmr-10">

      
        
        798
        +            <a class="pa p0" onclick="sendGAEvent('share_this_entry', 'facebook')" target="_blank" rel="noopener" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fdictionary.cambridge.org%2Fdictionary%2Fenglish%2Fhello&t=" title="Share on Facebook"></a>

      
        
        799
        +        </div>

      
        
        800
        +        <div class="pr hdib i i-x lp-5 lmr-10">

      
        
        801
        +            <a class="pa p0" onclick="sendGAEvent('share_this_entry', 'twitter')" target="_blank" rel="noopener" href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fdictionary.cambridge.org%2Fdictionary%2Fenglish%2Fhello&text=" title="Share on X"></a>

      
        
        802
        +        </div>

      
        
        803
        +        </div>

      
        
        804
        +</div>

      
        
        805
        +            <div class="di-body"><div class="entry"><div class="entry-body"> <div class="pr entry-body__el"><div class="cid" id="cald4-1"></div><div class="pos-header dpos-h"><div class="di-title"><span class="headword hdb tw-bw dhw dpos-h_hw "><span class="hw dhw">hello</span></span></div><div class="posgram dpos-g hdib lmr-5"><span class="pos dpos" title="A word or phrase that you say loudly or suddenly to express strong feelings.">exclamation</span>, <span class="pos dpos" title="A word that refers to a person, place, idea, event or thing.">noun</span></div> <div  ></div><span class="uk dpron-i "><span class="region dreg">uk</span><span class="daud">                    

      
        
        806
        +    <audio class="hdn" preload="none" id="audio1" controlsList="nodownload">

      
        
        807
        +        <div class="hdib" fallback>

      
        
        808
        +            <p>Your browser doesn't support HTML5 audio</p>

      
        
        809
        +        </div>

      
        
        810
        +        <source type="audio/mpeg" src="/media/english/uk_pron/u/ukh/ukhef/ukheft_029.mp3"/>

      
        
        811
        +        <source type="audio/ogg" src="/media/english/uk_pron_ogg/u/ukh/ukhef/ukheft_029.ogg"/>

      
        
        812
        +    </audio>

      
        
        813
        +        <div title="Listen to the British English pronunciation" class="i i-volume-up c_aud htc hdib hp hv-1 fon tcu tc-bd lmr-10 lpt-3 fs20 hv-3" onclick="audio1.load(); audio1.play();" role="button" tabindex="0"></div>

      
        
        814
        +</span><span class="pron dpron">/<span class="ipa dipa lpr-2 lpl-1">heˈləʊ</span>/</span></span> <span class="us dpron-i "><span class="region dreg">us</span><span class="daud">                    

      
        
        815
        +    <audio class="hdn" preload="none" id="audio2" controlsList="nodownload">

      
        
        816
        +        <div class="hdib" fallback>

      
        
        817
        +            <p>Your browser doesn't support HTML5 audio</p>

      
        
        818
        +        </div>

      
        
        819
        +        <source type="audio/mpeg" src="/media/english/us_pron/h/hel/hello/hello.mp3"/>

      
        
        820
        +        <source type="audio/ogg" src="/media/english/us_pron_ogg/h/hel/hello/hello.ogg"/>

      
        
        821
        +    </audio>

      
        
        822
        +        <div title="Listen to the American English pronunciation" class="i i-volume-up c_aud htc hdib hp hv-1 fon tcu tc-bd lmr-10 lpt-3 fs20 hv-3" onclick="audio2.load(); audio2.play();" role="button" tabindex="0"></div>

      
        
        823
        +</span><span class="pron dpron">/<span class="ipa dipa lpr-2 lpl-1">heˈloʊ</span>/</span></span><div class="lmt--5" ></div> <span class="var dvar">(<span class="lab dlab">also mainly <span class="region dregion">UK</span> </span><span class="v dv lmr-0">hallo</span>)</span>; <span class="var dvar">(<span class="v dv lmr-0">hullo</span>)</span></div><div class="pos-body">

      
        
        824
        +

      
        
        825
        +                                                        <div class="pr dsense dsense-noh"><div class="cid" id="cald4-1-1"></div> <div class="sense-body dsense_b"><div class="def-block ddef_block " data-wl-senseid="ID_00015081_01">

      
        
        826
        +                        <div class="dwl hax">

      
        
        827
        +                            

      
        
        828
        +         

      
        
        829
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        830
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'ID_00015081_01', wotd: '    hello

      
        
        831
        +' } }), sidebarWordList.open">

      
        
        832
        +            <span class='tb fs10 hvm'>Add to word list</span>

      
        
        833
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        834
        +        </a>

      
        
        835
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        836
        +                on="tap:amp-access.login-sign-in">

      
        
        837
        +            <span class='tb fs10 hvm'>Add to word list</span>

      
        
        838
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        839
        +        </a>

      
        
        840
        +        </div>

      
        
        841
        +                <div class="ddef_h"><span class="def-info ddef-info"><span class="epp-xref dxref A1">A1</span> </span><div class="def ddef_d db">used when <a class="query" href="https://dictionary.cambridge.org/dictionary/english/meeting" title="meeting" rel="">meeting</a> or <a class="query" href="https://dictionary.cambridge.org/dictionary/english/greeting" title="greeting" rel="">greeting</a> someone: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="eg deg">Hello, Paul. I haven't <a class="query" href="https://dictionary.cambridge.org/dictionary/english/seen" title="seen" rel="">seen</a> you for <a class="query" href="https://dictionary.cambridge.org/dictionary/english/ages" title="ages" rel="">ages</a>.</span></div><div class="examp dexamp"> <span class="eg deg">I <a class="query" href="https://dictionary.cambridge.org/dictionary/english/know" title="know" rel="">know</a> her <a class="query" href="https://dictionary.cambridge.org/dictionary/english/vague" title="vaguely" rel="">vaguely</a> - we've <a class="query" href="https://dictionary.cambridge.org/dictionary/english/exchange" title="exchanged" rel="">exchanged</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/hello" title="hellos" rel="">hellos</a> a few <a class="query" href="https://dictionary.cambridge.org/dictionary/english/times" title="times" rel="">times</a>.</span></div><div class="examp dexamp"><a class="lu dlu" href="https://dictionary.cambridge.org/dictionary/english/say-hello" title="say hello" rel="">say hello</a> <span class="eg deg">I just <a class="query" href="https://dictionary.cambridge.org/dictionary/english/thought" title="thought" rel="">thought</a> I'd <a class="query" href="https://dictionary.cambridge.org/dictionary/english/call" title="call" rel="">call</a> by and say hello.</span></div><div class="examp dexamp"><span class="lu dlu">a big hello</span> <span class="eg deg">And a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/big" title="big" rel="">big</a> hello <span class="gloss dgloss">(= <a class="query" href="https://dictionary.cambridge.org/dictionary/english/welcome" title="welcome" rel="">welcome</a>)</span> to all the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/parent" title="parents" rel="">parents</a> who've come to <a class="query" href="https://dictionary.cambridge.org/dictionary/english/see" title="see" rel="">see</a> the show.</span></div> </div></div><div class="def-block ddef_block " data-wl-senseid="ID_00015081_02">

      
        
        842
        +                        <div class="dwl hax">

      
        
        843
        +                            

      
        
        844
        +         

      
        
        845
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        846
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'ID_00015081_02', wotd: '    hello

      
        
        847
        +' } }), sidebarWordList.open">

      
        
        848
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        849
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        850
        +        </a>

      
        
        851
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        852
        +                on="tap:amp-access.login-sign-in">

      
        
        853
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        854
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        855
        +        </a>

      
        
        856
        +        </div>

      
        
        857
        +                <div class="ddef_h"><span class="def-info ddef-info"><span class="epp-xref dxref A1">A1</span> </span><div class="def ddef_d db">something that is said at the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/beginning" title="beginning" rel="">beginning</a> of a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/phone" title="phone" rel="">phone</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/conversation" title="conversation" rel="">conversation</a>: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="eg deg">"Hello, I'd like some <a class="query" href="https://dictionary.cambridge.org/dictionary/english/information" title="information" rel="">information</a> about <a class="query" href="https://dictionary.cambridge.org/dictionary/english/flight" title="flights" rel="">flights</a> to the US, <a class="query" href="https://dictionary.cambridge.org/dictionary/english/please" title="please" rel="">please</a>."</span></div> </div></div><div class="def-block ddef_block " data-wl-senseid="ID_00015081_03">

      
        
        858
        +                        <div class="dwl hax">

      
        
        859
        +                            

      
        
        860
        +         

      
        
        861
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        862
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'ID_00015081_03', wotd: '    hello

      
        
        863
        +' } }), sidebarWordList.open">

      
        
        864
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        865
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        866
        +        </a>

      
        
        867
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        868
        +                on="tap:amp-access.login-sign-in">

      
        
        869
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        870
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        871
        +        </a>

      
        
        872
        +        </div>

      
        
        873
        +                <div class="ddef_h"><span class="def-info ddef-info">  </span><div class="def ddef_d db">something that is said to <a class="query" href="https://dictionary.cambridge.org/dictionary/english/attract" title="attract" rel="">attract</a> someone's <a class="query" href="https://dictionary.cambridge.org/dictionary/english/attention" title="attention" rel="">attention</a>: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="eg deg">The <a class="query" href="https://dictionary.cambridge.org/dictionary/english/front" title="front" rel="">front</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/door" title="door" rel="">door</a> was <a class="query" href="https://dictionary.cambridge.org/dictionary/english/open" title="open" rel="">open</a> so she <a class="query" href="https://dictionary.cambridge.org/dictionary/english/walk" title="walked" rel="">walked</a> inside and called out, "Hello! Is there anybody in?"</span></div> </div></div><div class="def-block ddef_block " data-wl-senseid="ID_00015081_04">

      
        
        874
        +                        <div class="dwl hax">

      
        
        875
        +                            

      
        
        876
        +         

      
        
        877
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        878
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'ID_00015081_04', wotd: '    hello

      
        
        879
        +' } }), sidebarWordList.open">

      
        
        880
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        881
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        882
        +        </a>

      
        
        883
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        884
        +                on="tap:amp-access.login-sign-in">

      
        
        885
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        886
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        887
        +        </a>

      
        
        888
        +        </div>

      
        
        889
        +                <div class="ddef_h"><span class="def-info ddef-info">  <span class="lab dlab"><span class="usage dusage">informal</span></span></span> <div class="def ddef_d db">said to someone who has just said or done something <a class="query" href="https://dictionary.cambridge.org/dictionary/english/stupid" title="stupid" rel="">stupid</a>, <a class="query" href="https://dictionary.cambridge.org/dictionary/english/especially" title="especially" rel="">especially</a> something that <a class="query" href="https://dictionary.cambridge.org/dictionary/english/show" title="shows" rel="">shows</a> they are not <a class="query" href="https://dictionary.cambridge.org/dictionary/english/notice" title="noticing" rel="">noticing</a> what is <a class="query" href="https://dictionary.cambridge.org/dictionary/english/happening" title="happening" rel="">happening</a>: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="eg deg">She <a class="query" href="https://dictionary.cambridge.org/dictionary/english/ask" title="asked" rel="">asked</a> me if I'd just <a class="query" href="https://dictionary.cambridge.org/dictionary/english/arrive" title="arrived" rel="">arrived</a> and I was like "Hello, I've been here for an <a class="query" href="https://dictionary.cambridge.org/dictionary/english/hour" title="hour" rel="">hour</a>."</span></div> </div></div><div class="def-block ddef_block " data-wl-senseid="ID_00015081_05">

      
        
        890
        +                        <div class="dwl hax">

      
        
        891
        +                            

      
        
        892
        +         

      
        
        893
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        894
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'ID_00015081_05', wotd: '    hello

      
        
        895
        +' } }), sidebarWordList.open">

      
        
        896
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        897
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        898
        +        </a>

      
        
        899
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        900
        +                on="tap:amp-access.login-sign-in">

      
        
        901
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        902
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        903
        +        </a>

      
        
        904
        +        </div>

      
        
        905
        +                <div class="ddef_h"><span class="def-info ddef-info">  <span class="lab dlab"><span class="usage dusage">old-fashioned</span></span></span> <div class="def ddef_d db">an <a class="query" href="https://dictionary.cambridge.org/dictionary/english/expression" title="expression" rel="">expression</a> of <a class="query" href="https://dictionary.cambridge.org/dictionary/english/surprise" title="surprise" rel="">surprise</a>: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="eg deg">Hello, this is very <a class="query" href="https://dictionary.cambridge.org/dictionary/english/strange" title="strange" rel="">strange</a> - I <a class="query" href="https://dictionary.cambridge.org/dictionary/english/know" title="know" rel="">know</a> that man.</span></div> </div></div>

      
        
        906
        +                    <div class="daccord"><amp-accordion>

      
        
        907
        +                            <section  expanded  >

      
        
        908
        +                        <header class="ca_h daccord_h">

      
        
        909
        +                                <i class="i i-plus ca_hi" aria-hidden="true"></i>

      
        
        910
        +                                <span class="showmore">More examples</span><span class="showless">Fewer examples</span></header><div><ul class="hul-u hul-u0 ca_b daccord_b lm-0"><li class="eg dexamp hax">Cathy <a class="query" href="https://dictionary.cambridge.org/dictionary/english/poke" title="poked" rel="">poked</a> her <a class="query" href="https://dictionary.cambridge.org/dictionary/english/head" title="head" rel="">head</a> round the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/door" title="door" rel="">door</a> to say hello.</li><li class="eg dexamp hax">When he said hello, I <a class="query" href="https://dictionary.cambridge.org/dictionary/english/felt" title="felt" rel="">felt</a> my <a class="query" href="https://dictionary.cambridge.org/dictionary/english/face" title="face" rel="">face</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/turn" title="turn" rel="">turn</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/bright" title="bright" rel="">bright</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/red" title="red" rel="">red</a>.</li><li class="eg dexamp hax">Hello - could I <a class="query" href="https://dictionary.cambridge.org/dictionary/english/speak" title="speak" rel="">speak</a> to Ann, <a class="query" href="https://dictionary.cambridge.org/dictionary/english/please" title="please" rel="">please</a>?</li><li class="eg dexamp hax">After we'd said <a class="query" href="https://dictionary.cambridge.org/dictionary/english/our" title="our" rel="">our</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/hello" title="hellos" rel="">hellos</a>, it all went <a class="query" href="https://dictionary.cambridge.org/dictionary/english/quiet" title="quiet" rel="">quiet</a> and nobody <a class="query" href="https://dictionary.cambridge.org/dictionary/english/knew" title="knew" rel="">knew</a> what to do.</li><li class="eg dexamp hax">Oh, hello - what are you doing in here?</li></ul></div>

      
        
        911
        +                            </section>

      
        
        912
        +                    </amp-accordion></div></div>         

      
        
        913
        +        <div class="smartt daccord">

      
        
        914
        +            <amp-accordion disable-session-states>

      
        
        915
        +                    <section  >

      
        
        916
        +                    <header class="ca_h daccord_h">

      
        
        917
        +                        <i class="i i-plus ca_hi" aria-hidden="true"></i>

      
        
        918
        +                        SMART Vocabulary: related words and phrases                    </header>

      
        
        919
        +                    <div class="ca_b had daccord_b daccord_l">

      
        
        920
        +                        <div class="daccord_lt">

      
        
        921
        +                            <a href="https://dictionary.cambridge.org/topics/communication/welcoming-greeting-and-greetings/" title="Words and phrases related to hello in the topic Welcoming, greeting &amp; greetings">Welcoming, greeting & greetings</a>

      
        
        922
        +                        </div>

      
        
        923
        +

      
        
        924
        +                        <div class="daccord_lb">

      
        
        925
        +                            

      
        
        926
        +                            <ul class="hul-u hul-u0 hax lmb-10 lcs">

      
        
        927
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        928
        +                                        <a title="afternoon" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/afternoon?topic=welcoming-greeting-and-greetings ">

      
        
        929
        +                                            <span class="results"><span class="base"><span class="hw haf">afternoon</span></span></span>

      
        
        930
        +                                        </a>

      
        
        931
        +                                    </li>

      
        
        932
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        933
        +                                        <a title="air kiss" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/air-kiss?topic=welcoming-greeting-and-greetings ">

      
        
        934
        +                                            <span class="results"><span class="base"><span class="hw haf">air kiss</span></span></span>

      
        
        935
        +                                        </a>

      
        
        936
        +                                    </li>

      
        
        937
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        938
        +                                        <a title="aloha" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/aloha?topic=welcoming-greeting-and-greetings ">

      
        
        939
        +                                            <span class="results"><span class="base"><span class="hw haf">aloha</span></span></span>

      
        
        940
        +                                        </a>

      
        
        941
        +                                    </li>

      
        
        942
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        943
        +                                        <a title="ayup" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/ayup?topic=welcoming-greeting-and-greetings ">

      
        
        944
        +                                            <span class="results"><span class="base"><span class="hw haf">ayup</span></span></span>

      
        
        945
        +                                        </a>

      
        
        946
        +                                    </li>

      
        
        947
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        948
        +                                        <a title="bid someone/something adieu" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/bid-adieu?topic=welcoming-greeting-and-greetings ">

      
        
        949
        +                                            <span class="results"><span class="base"><span class="hw haf">bid <span class="obj">someone/something</span> adieu</span></span></span>

      
        
        950
        +                                        </a>

      
        
        951
        +                                    </li>

      
        
        952
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        953
        +                                        <a title="cheerio" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/cheerio?topic=welcoming-greeting-and-greetings ">

      
        
        954
        +                                            <span class="results"><span class="base"><span class="hw haf">cheerio</span></span></span>

      
        
        955
        +                                        </a>

      
        
        956
        +                                    </li>

      
        
        957
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        958
        +                                        <a title="five" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/five?topic=welcoming-greeting-and-greetings ">

      
        
        959
        +                                            <span class="results"><span class="base"><span class="hw haf">five</span></span></span>

      
        
        960
        +                                        </a>

      
        
        961
        +                                    </li>

      
        
        962
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        963
        +                                        <a title="god" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/god?topic=welcoming-greeting-and-greetings ">

      
        
        964
        +                                            <span class="results"><span class="base"><span class="hw haf">god</span></span></span>

      
        
        965
        +                                        </a>

      
        
        966
        +                                    </li>

      
        
        967
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        968
        +                                        <a title="hiya" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/hiya?topic=welcoming-greeting-and-greetings ">

      
        
        969
        +                                            <span class="results"><span class="base"><span class="hw haf">hiya</span></span></span>

      
        
        970
        +                                        </a>

      
        
        971
        +                                    </li>

      
        
        972
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        973
        +                                        <a title="hullo" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/hullo?topic=welcoming-greeting-and-greetings ">

      
        
        974
        +                                            <span class="results"><span class="base"><span class="hw haf">hullo</span></span></span>

      
        
        975
        +                                        </a>

      
        
        976
        +                                    </li>

      
        
        977
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        978
        +                                        <a title="lady" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/lady?topic=welcoming-greeting-and-greetings ">

      
        
        979
        +                                            <span class="results"><span class="base"><span class="hw haf">lady</span></span></span>

      
        
        980
        +                                        </a>

      
        
        981
        +                                    </li>

      
        
        982
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        983
        +                                        <a title="merry Christmas! idiom" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/merry-christmas?topic=welcoming-greeting-and-greetings ">

      
        
        984
        +                                            <span class="results"><span class="base"><span class="phrase haf">merry Christmas!</span></span> <span class="pos">idiom</span> </span>

      
        
        985
        +                                        </a>

      
        
        986
        +                                    </li>

      
        
        987
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        988
        +                                        <a title="mind" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/mind?topic=welcoming-greeting-and-greetings ">

      
        
        989
        +                                            <span class="results"><span class="base"><span class="hw haf">mind</span></span></span>

      
        
        990
        +                                        </a>

      
        
        991
        +                                    </li>

      
        
        992
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        993
        +                                        <a title="morning" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/morning?topic=welcoming-greeting-and-greetings ">

      
        
        994
        +                                            <span class="results"><span class="base"><span class="hw haf">morning</span></span></span>

      
        
        995
        +                                        </a>

      
        
        996
        +                                    </li>

      
        
        997
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        998
        +                                        <a title="namaskar" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/namaskar?topic=welcoming-greeting-and-greetings ">

      
        
        999
        +                                            <span class="results"><span class="base"><span class="hw haf">namaskar</span></span></span>

      
        
        1000
        +                                        </a>

      
        
        1001
        +                                    </li>

      
        
        1002
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1003
        +                                        <a title="namaste" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/namaste?topic=welcoming-greeting-and-greetings ">

      
        
        1004
        +                                            <span class="results"><span class="base"><span class="hw haf">namaste</span></span></span>

      
        
        1005
        +                                        </a>

      
        
        1006
        +                                    </li>

      
        
        1007
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1008
        +                                        <a title="pleased" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/pleased?topic=welcoming-greeting-and-greetings ">

      
        
        1009
        +                                            <span class="results"><span class="base"><span class="hw haf">pleased</span></span></span>

      
        
        1010
        +                                        </a>

      
        
        1011
        +                                    </li>

      
        
        1012
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1013
        +                                        <a title="press the flesh idiom" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/press-the-flesh?topic=welcoming-greeting-and-greetings ">

      
        
        1014
        +                                            <span class="results"><span class="base"><span class="phrase haf">press the flesh</span></span> <span class="pos">idiom</span> </span>

      
        
        1015
        +                                        </a>

      
        
        1016
        +                                    </li>

      
        
        1017
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1018
        +                                        <a title="salutation" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/salutation?topic=welcoming-greeting-and-greetings ">

      
        
        1019
        +                                            <span class="results"><span class="base"><span class="hw haf">salutation</span></span></span>

      
        
        1020
        +                                        </a>

      
        
        1021
        +                                    </li>

      
        
        1022
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1023
        +                                        <a title="wish" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/wish?topic=welcoming-greeting-and-greetings ">

      
        
        1024
        +                                            <span class="results"><span class="base"><span class="hw haf">wish</span></span></span>

      
        
        1025
        +                                        </a>

      
        
        1026
        +                                    </li>

      
        
        1027
        +                                                            </ul>

      
        
        1028
        +

      
        
        1029
        +                                                            <a href="https://dictionary.cambridge.org/topics/communication/welcoming-greeting-and-greetings/" class="had tb" title="Words and phrases related to hello in the topic Welcoming, greeting &amp; greetings">See more results »</a>

      
        
        1030
        +                                                    </div>

      
        
        1031
        +

      
        
        1032
        +                                                <div class="lmt-20">

      
        
        1033
        +                            <p>You can also find related words, phrases, and synonyms in the topics:</p>

      
        
        1034
        +                            <div>

      
        
        1035
        +                                                                                                <div class="lmb-5">

      
        
        1036
        +                                        <a href="https://dictionary.cambridge.org/topics/language/interjections/" class="tb" title="Words and phrases related to hello in the topic Linguistics: interjections">Linguistics: interjections</a>

      
        
        1037
        +                                    </div>

      
        
        1038
        +                                                                                                                                <div class="lmb-5">

      
        
        1039
        +                                        <a href="https://dictionary.cambridge.org/topics/communication/meeting-people/" class="tb" title="Words and phrases related to hello in the topic Meeting people">Meeting people</a>

      
        
        1040
        +                                    </div>

      
        
        1041
        +                                                                                        </div>

      
        
        1042
        +                        </div>

      
        
        1043
        +                                            </div>

      
        
        1044
        +                    </section>

      
        
        1045
        +            </amp-accordion>

      
        
        1046
        +        </div>

      
        
        1047
        +          <div class="pb-inline-sense"></div>

      
        
        1048
        +                                      <script type='text/javascript'>

      
        
        1049
        +    if(typeof iaw !== 'undefined') {

      
        
        1050
        +        iaw.que.push(function() {

      
        
        1051
        +            iaw.setExtraAdSlots(["ad_ringlinkslot"]);

      
        
        1052
        +            iaw.addPageCriteria("cdo_elvl", "A1");

      
        
        1053
        +        });

      
        
        1054
        +    }

      
        
        1055
        +</script>

      
        
        1056
        +<div id="ad_ringlinkslot">

      
        
        1057
        +    <script type="text/javascript">

      
        
        1058
        +        if(typeof iaw !== 'undefined') {

      
        
        1059
        +            iaw.cmd.push(function () { iaw.display("ad_ringlinkslot"); });

      
        
        1060
        +        }

      
        
        1061
        +    </script>

      
        
        1062
        +</div>

      
        
        1063
        +                   </div><div class="xref grammar hax dxref-w lmt-25 lmb-25"><h3 class="bb fs16 lp-10 lmb-0"><strong class="xref-title dxref-t">Grammar</strong></h3><div class="hax lp-10 lb lb-cm lbt0">

      
        
        1064
        +

      
        
        1065
        +                <div class="item lbb lb-cm lpb-10" data-position="1"><a href="/grammar/british-grammar/greetings-and-farewells-hello-goodbye-happy-new-year" title="grammar for Greetings and farewells: hello, goodbye, Happy New Year"><div class="x-h dx-h">Greetings and farewells: <span class="obj dobj">hello</span>, <span class="obj dobj">goodbye</span>, <span class="obj dobj">Happy New Year</span></div><span class="x-pos dx-pos">When we see someone we know, we usually exchange greetings:</span> …

      
        
        1066
        +                </a></div>

      
        
        1067
        +

      
        
        1068
        +                <div class="item lbb lb-cm lpt-10 lpb-10" data-position="2"><a href="/grammar/british-grammar/greetings-and-farewells-hello-goodbye-happy-new-year" title="grammar for Saying hello"><div class="x-h dx-h"><span class="obj dobj">Saying hello</span></div><span class="x-pos dx-pos">When we see someone we know, we usually exchange greetings:</span> …

      
        
        1069
        +                </a></div>

      
        
        1070
        +

      
        
        1071
        +                <div class="item lpt-10 lpb-10" data-position="3"><a href="/grammar/british-grammar/greetings-and-farewells-hello-goodbye-happy-new-year" title="grammar for Saying goodbye"><div class="x-h dx-h"><span class="obj dobj">Saying goodbye</span></div><span class="x-pos dx-pos">When we leave people, we usually say something as we leave:</span> …

      
        
        1072
        +                </a></div></div></div></div></div></div></div></div>

      
        
        1073
        +            </div></div><small class="lbt lb-cm lpb-10 lpt-10 lpb-25 lmb-10 ddef had hdb">

      
        
        1074
        +                                     (Definition of <b>hello</b> from the <a href="https://dictionary.cambridge.org/dictionary/english/" title="Cambridge Advanced Learner&apos;s Dictionary & Thesaurus" class="a--rev"><b>Cambridge Advanced Learner&apos;s Dictionary & Thesaurus</b></a> © Cambridge University Press)

      
        
        1075
        +                          </small></div><div class="pr dictionary" data-type="sorted" data-id="cacd" data-tab="ds-cacd" role="tabpanel"><div class="cid" id="dataset_cacd"></div><div class="link"><div class="pr di superentry" itemprop="text"><div class="cid" id="dataset_cacd"></div>                <div class="di-head c_h di_h"><div class="di-title di_t"><h2 class="c_hh"><b  class='tb ttn'>hello</b> | American Dictionary</h2></div></div>

      
        
        1076
        +                            <div class="di-body"><div class="entry"><div class="entry-body"> <div class="pr entry-body__el"><div class="cid" id="cacd-1"></div><div class="pos-header dpos-h"><div class="di-title"><span class="headword hdb tw-bw dhw dpos-h_hw "><span class="hw dhw">hello</span></span></div><div class="posgram dpos-g hdib lmr-5"><span class="pos dpos" title="A word or phrase that you say loudly or suddenly to express strong feelings.">exclamation</span>, <span class="pos dpos" title="A word that refers to a person, place, idea, event or thing.">noun</span> <span class="gram dgram"><a href="/help/codes.html">[ <span class="gc dgc">C</span> ]</a></span></div> <div  ></div><span class="us dpron-i "><span class="region dreg">us</span><span class="daud">                    

      
        
        1077
        +    <audio class="hdn" preload="none" id="audio3" controlsList="nodownload">

      
        
        1078
        +        <div class="hdib" fallback>

      
        
        1079
        +            <p>Your browser doesn't support HTML5 audio</p>

      
        
        1080
        +        </div>

      
        
        1081
        +        <source type="audio/mpeg" src="/media/english/us_pron/h/hel/hello/hello.mp3"/>

      
        
        1082
        +        <source type="audio/ogg" src="/media/english/us_pron_ogg/h/hel/hello/hello.ogg"/>

      
        
        1083
        +    </audio>

      
        
        1084
        +        <div title="Listen to the American English pronunciation" class="i i-volume-up c_aud htc hdib hp hv-1 fon tcu tc-bd lmr-10 lpt-3 fs20 hv-3" onclick="audio3.load(); audio3.play();" role="button" tabindex="0"></div>

      
        
        1085
        +</span><span class="pron dpron">/<span class="ipa dipa lpr-2 lpl-1">heˈloʊ</span>, <span class="ipa dipa lpr-2 lpl-1">hə-</span>/</span></span><div class="lmt--5" ></div> <span class="irreg-infls dinfls "><span class="inf-group dinfg "><span class="lab dlab">plural</span> <b class="inf dinf">hellos</b></span></span></div><div class="pos-body">

      
        
        1086
        +

      
        
        1087
        +                        <div class="pr dsense dsense-noh"><div class="cid" id="cacd-1-1"></div> <div class="sense-body dsense_b"><div class="def-block ddef_block " data-wl-senseid="CACD_00008257_01">

      
        
        1088
        +                        <div class="dwl hax">

      
        
        1089
        +                            

      
        
        1090
        +         

      
        
        1091
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1092
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'CACD_00008257_01', wotd: '    hello

      
        
        1093
        +' } }), sidebarWordList.open">

      
        
        1094
        +            <span class='tb fs10 hvm'>Add to word list</span>

      
        
        1095
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1096
        +        </a>

      
        
        1097
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1098
        +                on="tap:amp-access.login-sign-in">

      
        
        1099
        +            <span class='tb fs10 hvm'>Add to word list</span>

      
        
        1100
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1101
        +        </a>

      
        
        1102
        +        </div>

      
        
        1103
        +                <div class="ddef_h"><span class="def-info ddef-info">  </span><div class="def ddef_d db">used when <a class="query" href="https://dictionary.cambridge.org/dictionary/english/meeting" title="meeting" rel="">meeting</a> or <a class="query" href="https://dictionary.cambridge.org/dictionary/english/greeting" title="greeting" rel="">greeting</a> someone: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="eg deg">"Hello, Paul," she said, "I haven’t <a class="query" href="https://dictionary.cambridge.org/dictionary/english/seen" title="seen" rel="">seen</a> you for <a class="query" href="https://dictionary.cambridge.org/dictionary/english/month" title="months" rel="">months</a>."</span></div><div class="examp dexamp"> <span class="eg deg">I <a class="query" href="https://dictionary.cambridge.org/dictionary/english/know" title="know" rel="">know</a> her <a class="query" href="https://dictionary.cambridge.org/dictionary/english/vague" title="vaguely" rel="">vaguely</a> – we’ve <a class="query" href="https://dictionary.cambridge.org/dictionary/english/exchange" title="exchanged" rel="">exchanged</a> hellos a few <a class="query" href="https://dictionary.cambridge.org/dictionary/english/times" title="times" rel="">times</a>.</span></div><div class="examp dexamp"> <span class="eg deg">Come and say hello to my <a class="query" href="https://dictionary.cambridge.org/dictionary/english/friend" title="friends" rel="">friends</a> <span class="gloss dgloss">(= <a class="query" href="https://dictionary.cambridge.org/dictionary/english/meet" title="meet" rel="">meet</a> them)</span>.</span></div> </div></div><div class="def-block ddef_block " data-wl-senseid="CACD_00008257_02">

      
        
        1104
        +                        <div class="dwl hax">

      
        
        1105
        +                            

      
        
        1106
        +         

      
        
        1107
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1108
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'CACD_00008257_02', wotd: '    hello

      
        
        1109
        +' } }), sidebarWordList.open">

      
        
        1110
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1111
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1112
        +        </a>

      
        
        1113
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1114
        +                on="tap:amp-access.login-sign-in">

      
        
        1115
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1116
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1117
        +        </a>

      
        
        1118
        +        </div>

      
        
        1119
        +                <div class="ddef_h"><span class="def-info ddef-info">  </span><div class="def ddef_d db">Hello is also said at the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/beginning" title="beginning" rel="">beginning</a> of a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/telephone" title="telephone" rel="">telephone</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/conversation" title="conversation" rel="">conversation</a>.</div> </div></div><div class="def-block ddef_block " data-wl-senseid="CACD_00008257_03">

      
        
        1120
        +                        <div class="dwl hax">

      
        
        1121
        +                            

      
        
        1122
        +         

      
        
        1123
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1124
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'CACD_00008257_03', wotd: '    hello

      
        
        1125
        +' } }), sidebarWordList.open">

      
        
        1126
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1127
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1128
        +        </a>

      
        
        1129
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1130
        +                on="tap:amp-access.login-sign-in">

      
        
        1131
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1132
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1133
        +        </a>

      
        
        1134
        +        </div>

      
        
        1135
        +                <div class="ddef_h"><span class="def-info ddef-info">  </span><div class="def ddef_d db">Hello is also used to <a class="query" href="https://dictionary.cambridge.org/dictionary/english/attract" title="attract" rel="">attract</a> someone’s <a class="query" href="https://dictionary.cambridge.org/dictionary/english/attention" title="attention" rel="">attention</a>: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="eg deg">She <a class="query" href="https://dictionary.cambridge.org/dictionary/english/walk" title="walked" rel="">walked</a> into the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/shop" title="shop" rel="">shop</a> and called out, "Hello! Is anybody here?"</span></div> </div></div></div>           <div class="pb-inline-sense"></div>

      
        
        1136
        +             </div></div></div></div></div></div>

      
        
        1137
        +            </div></div><small class="lbt lb-cm lpb-10 lpt-10 lpb-25 lmb-10 ddef had hdb">

      
        
        1138
        +                                     (Definition of <b>hello</b> from the <a href="https://dictionary.cambridge.org/dictionary/english/" title="Cambridge Academic Content Dictionary" class="a--rev"><b>Cambridge Academic Content Dictionary</b></a> © Cambridge University Press)

      
        
        1139
        +                          </small></div>          

      
        
        1140
        +                  <div class="dataset dd pr lmb-20" data-type="sorted" data-id="examples" data-tab="ds-examples" role="tabpanel"><div class="cid" id="dataset_examples"></div>                         <div id="dataset-example" data-tab="ds-example" role="tabpanel">

      
        
        1141
        +                <div class="c_h">

      
        
        1142
        +              <h2 class="c_hh">Examples <span class="tcl">of </span><span class="tb tci">hello</span></h2></div>

      
        
        1143
        +

      
        
        1144
        +<div class="lp-10">

      
        
        1145
        +    <div class="h2 dhw dpos-h_hw  lpt-5 lpb-10">

      
        
        1146
        +        hello

      
        
        1147
        +    </div>

      
        
        1148
        +

      
        
        1149
        +    

      
        
        1150
        +    

      
        
        1151
        +    <div class="degs had lbt lb-cm">

      
        
        1152
        +        

      
        
        1153
        +                            <div class="lbb lb-cm lpt-10">

      
        
        1154
        +

      
        
        1155
        +                                            <span class="deg">

      
        
        1156
        +                            Both deal with single-word "primitive" verbal units, such as <em>hello</em> and ouch and psst.

      
        
        1157
        +                        </span>

      
        
        1158
        +                                        <div class="dsource lpr-20 pr">

      
        
        1159
        +                                    From the <a  href=https://www.cambridge.org/gb/cambridgeenglish/better-learning-insights/corpus  class='italic' target='_blank' rel='noopener'>Cambridge English Corpus</a>                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="5812277" data-dataset-id="5499879" role="button"

      
        
        1160
        +    aria-label="Tell us what you think"

      
        
        1161
        +    title="Tell us what you think"

      
        
        1162
        +    tabindex="0"

      
        
        1163
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '5812277', dataset_id: '5499879' } }),sidebarEntryTellUs.open"

      
        
        1164
        +>

      
        
        1165
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        1166
        +                        </a>

      
        
        1167
        +                    </div>

      
        
        1168
        +                </div>

      
        
        1169
        +                    

      
        
        1170
        +                            <div class="lbb lb-cm lpt-10">

      
        
        1171
        +

      
        
        1172
        +                                            <span class="deg">

      
        
        1173
        +                            She would always say <em>hello</em> and remember people's names.

      
        
        1174
        +                        </span>

      
        
        1175
        +                                        <div class="dsource lpr-20 pr">

      
        
        1176
        +                                    From the <div  class='hansard-source dsource_e haf hp' on="tap:AMP.setState({ stateGlobal: { flyout: '0.5911143679684128' } })" role="button" aria-label="" tabindex="0">Hansard archive</div>                

      
        
        1177
        +    <div class="hdn" [class]="stateGlobal.flyout == '0.5911143679684128' ? 'pa pt0 pba pl-5 bw hbsf fs12 tw-bw lp-20 lpt-25 lc0 lmin-300 lmt-25 z5' : 'hdn'">

      
        
        1178
        +        <span class="pa pl0 pt-10 c_ict lml-15 $extraClassArrow"></span>

      
        
        1179
        +        <button on="tap:AMP.setState({ stateGlobal: { flyout: '' } })" class="pa pr0 bt pt0 lpt-5 lb0" aria-label="Close popup box">

      
        
        1180
        +            <i class="i i-close" aria-hidden="true"></i>

      
        
        1181
        +        </button>

      
        
        1182
        +        <div class="hoh">

      
        
        1183
        +            Example from the Hansard archive. Contains Parliamentary information licensed under the <a  href='http://www.parliament.uk/site-information/copyright-parliament/open-parliament-licence/' target='_blank' rel='noopener'>Open Parliament Licence v3.0</a>

      
        
        1184
        +        </div>

      
        
        1185
        +    </div>

      
        
        1186
        +                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="5812283" data-dataset-id="5499879" role="button"

      
        
        1187
        +    aria-label="Tell us what you think"

      
        
        1188
        +    title="Tell us what you think"

      
        
        1189
        +    tabindex="0"

      
        
        1190
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '5812283', dataset_id: '5499879' } }),sidebarEntryTellUs.open"

      
        
        1191
        +>

      
        
        1192
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        1193
        +                        </a>

      
        
        1194
        +                    </div>

      
        
        1195
        +                </div>

      
        
        1196
        +                    

      
        
        1197
        +                            <div class="lbb lb-cm lpt-10">

      
        
        1198
        +

      
        
        1199
        +                                            <span class="deg">

      
        
        1200
        +                            People came in to say <em>hello</em> when they were buying their bread and milk.

      
        
        1201
        +                        </span>

      
        
        1202
        +                                        <div class="dsource lpr-20 pr">

      
        
        1203
        +                                    From the <div  class='hansard-source dsource_e haf hp' on="tap:AMP.setState({ stateGlobal: { flyout: '0.2710389846624143' } })" role="button" aria-label="" tabindex="0">Hansard archive</div>                

      
        
        1204
        +    <div class="hdn" [class]="stateGlobal.flyout == '0.2710389846624143' ? 'pa pt0 pba pl-5 bw hbsf fs12 tw-bw lp-20 lpt-25 lc0 lmin-300 lmt-25 z5' : 'hdn'">

      
        
        1205
        +        <span class="pa pl0 pt-10 c_ict lml-15 $extraClassArrow"></span>

      
        
        1206
        +        <button on="tap:AMP.setState({ stateGlobal: { flyout: '' } })" class="pa pr0 bt pt0 lpt-5 lb0" aria-label="Close popup box">

      
        
        1207
        +            <i class="i i-close" aria-hidden="true"></i>

      
        
        1208
        +        </button>

      
        
        1209
        +        <div class="hoh">

      
        
        1210
        +            Example from the Hansard archive. Contains Parliamentary information licensed under the <a  href='http://www.parliament.uk/site-information/copyright-parliament/open-parliament-licence/' target='_blank' rel='noopener'>Open Parliament Licence v3.0</a>

      
        
        1211
        +        </div>

      
        
        1212
        +    </div>

      
        
        1213
        +                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="5812285" data-dataset-id="5499879" role="button"

      
        
        1214
        +    aria-label="Tell us what you think"

      
        
        1215
        +    title="Tell us what you think"

      
        
        1216
        +    tabindex="0"

      
        
        1217
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '5812285', dataset_id: '5499879' } }),sidebarEntryTellUs.open"

      
        
        1218
        +>

      
        
        1219
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        1220
        +                        </a>

      
        
        1221
        +                    </div>

      
        
        1222
        +                </div>

      
        
        1223
        +                    

      
        
        1224
        +                            <div class="lbb lb-cm lpt-10">

      
        
        1225
        +

      
        
        1226
        +                                            <span class="deg">

      
        
        1227
        +                            People are beginning to move from here to there, with a <em>hello</em> and a goodbye, and a <em>hello</em> and a goodbye.

      
        
        1228
        +                        </span>

      
        
        1229
        +                                        <div class="dsource lpr-20 pr">

      
        
        1230
        +                                    From the <div  class='hansard-source dsource_e haf hp' on="tap:AMP.setState({ stateGlobal: { flyout: '0.7658869181004139' } })" role="button" aria-label="" tabindex="0">Hansard archive</div>                

      
        
        1231
        +    <div class="hdn" [class]="stateGlobal.flyout == '0.7658869181004139' ? 'pa pt0 pba pl-5 bw hbsf fs12 tw-bw lp-20 lpt-25 lc0 lmin-300 lmt-25 z5' : 'hdn'">

      
        
        1232
        +        <span class="pa pl0 pt-10 c_ict lml-15 $extraClassArrow"></span>

      
        
        1233
        +        <button on="tap:AMP.setState({ stateGlobal: { flyout: '' } })" class="pa pr0 bt pt0 lpt-5 lb0" aria-label="Close popup box">

      
        
        1234
        +            <i class="i i-close" aria-hidden="true"></i>

      
        
        1235
        +        </button>

      
        
        1236
        +        <div class="hoh">

      
        
        1237
        +            Example from the Hansard archive. Contains Parliamentary information licensed under the <a  href='http://www.parliament.uk/site-information/copyright-parliament/open-parliament-licence/' target='_blank' rel='noopener'>Open Parliament Licence v3.0</a>

      
        
        1238
        +        </div>

      
        
        1239
        +    </div>

      
        
        1240
        +                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="5812295" data-dataset-id="5499879" role="button"

      
        
        1241
        +    aria-label="Tell us what you think"

      
        
        1242
        +    title="Tell us what you think"

      
        
        1243
        +    tabindex="0"

      
        
        1244
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '5812295', dataset_id: '5499879' } }),sidebarEntryTellUs.open"

      
        
        1245
        +>

      
        
        1246
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        1247
        +                        </a>

      
        
        1248
        +                    </div>

      
        
        1249
        +                </div>

      
        
        1250
        +                    

      
        
        1251
        +                            <div class="lbb lb-cm lpt-10">

      
        
        1252
        +

      
        
        1253
        +                                            <span class="deg">

      
        
        1254
        +                            We are saying goodbye to the rate support grant system and <em>hello</em> to the revenue support grant system.

      
        
        1255
        +                        </span>

      
        
        1256
        +                                        <div class="dsource lpr-20 pr">

      
        
        1257
        +                                    From the <div  class='hansard-source dsource_e haf hp' on="tap:AMP.setState({ stateGlobal: { flyout: '0.012250438003663544' } })" role="button" aria-label="" tabindex="0">Hansard archive</div>                

      
        
        1258
        +    <div class="hdn" [class]="stateGlobal.flyout == '0.012250438003663544' ? 'pa pt0 pba pl-5 bw hbsf fs12 tw-bw lp-20 lpt-25 lc0 lmin-300 lmt-25 z5' : 'hdn'">

      
        
        1259
        +        <span class="pa pl0 pt-10 c_ict lml-15 $extraClassArrow"></span>

      
        
        1260
        +        <button on="tap:AMP.setState({ stateGlobal: { flyout: '' } })" class="pa pr0 bt pt0 lpt-5 lb0" aria-label="Close popup box">

      
        
        1261
        +            <i class="i i-close" aria-hidden="true"></i>

      
        
        1262
        +        </button>

      
        
        1263
        +        <div class="hoh">

      
        
        1264
        +            Example from the Hansard archive. Contains Parliamentary information licensed under the <a  href='http://www.parliament.uk/site-information/copyright-parliament/open-parliament-licence/' target='_blank' rel='noopener'>Open Parliament Licence v3.0</a>

      
        
        1265
        +        </div>

      
        
        1266
        +    </div>

      
        
        1267
        +                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="5812300" data-dataset-id="5499879" role="button"

      
        
        1268
        +    aria-label="Tell us what you think"

      
        
        1269
        +    title="Tell us what you think"

      
        
        1270
        +    tabindex="0"

      
        
        1271
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '5812300', dataset_id: '5499879' } }),sidebarEntryTellUs.open"

      
        
        1272
        +>

      
        
        1273
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        1274
        +                        </a>

      
        
        1275
        +                    </div>

      
        
        1276
        +                </div>

      
        
        1277
        +                    

      
        
        1278
        +                            <div class="lbb lb-cm lpt-10">

      
        
        1279
        +

      
        
        1280
        +                                            <span class="deg">

      
        
        1281
        +                            We will say <em>hello</em> to old friends who love what we have to offer, and with a bit of luck we will make some new friends, too.

      
        
        1282
        +                        </span>

      
        
        1283
        +                                        <div class="dsource lpr-20 pr">

      
        
        1284
        +                                    From the <div  class='hansard-source dsource_e haf hp' on="tap:AMP.setState({ stateGlobal: { flyout: '0.21480576486221936' } })" role="button" aria-label="" tabindex="0">Hansard archive</div>                

      
        
        1285
        +    <div class="hdn" [class]="stateGlobal.flyout == '0.21480576486221936' ? 'pa pt0 pba pl-5 bw hbsf fs12 tw-bw lp-20 lpt-25 lc0 lmin-300 lmt-25 z5' : 'hdn'">

      
        
        1286
        +        <span class="pa pl0 pt-10 c_ict lml-15 $extraClassArrow"></span>

      
        
        1287
        +        <button on="tap:AMP.setState({ stateGlobal: { flyout: '' } })" class="pa pr0 bt pt0 lpt-5 lb0" aria-label="Close popup box">

      
        
        1288
        +            <i class="i i-close" aria-hidden="true"></i>

      
        
        1289
        +        </button>

      
        
        1290
        +        <div class="hoh">

      
        
        1291
        +            Example from the Hansard archive. Contains Parliamentary information licensed under the <a  href='http://www.parliament.uk/site-information/copyright-parliament/open-parliament-licence/' target='_blank' rel='noopener'>Open Parliament Licence v3.0</a>

      
        
        1292
        +        </div>

      
        
        1293
        +    </div>

      
        
        1294
        +                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="5812304" data-dataset-id="5499879" role="button"

      
        
        1295
        +    aria-label="Tell us what you think"

      
        
        1296
        +    title="Tell us what you think"

      
        
        1297
        +    tabindex="0"

      
        
        1298
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '5812304', dataset_id: '5499879' } }),sidebarEntryTellUs.open"

      
        
        1299
        +>

      
        
        1300
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        1301
        +                        </a>

      
        
        1302
        +                    </div>

      
        
        1303
        +                </div>

      
        
        1304
        +                    

      
        
        1305
        +                            <div class="lbb lb-cm lpt-10">

      
        
        1306
        +

      
        
        1307
        +                                            <span class="deg">

      
        
        1308
        +                            We do so in particular in those shortage areas where, because of the new bursary system and "golden <em>hello</em>" payments for those entering the profession, we have seen a turnaround.

      
        
        1309
        +                        </span>

      
        
        1310
        +                                        <div class="dsource lpr-20 pr">

      
        
        1311
        +                                    From the <div  class='hansard-source dsource_e haf hp' on="tap:AMP.setState({ stateGlobal: { flyout: '0.5827570495638897' } })" role="button" aria-label="" tabindex="0">Hansard archive</div>                

      
        
        1312
        +    <div class="hdn" [class]="stateGlobal.flyout == '0.5827570495638897' ? 'pa pt0 pba pl-5 bw hbsf fs12 tw-bw lp-20 lpt-25 lc0 lmin-300 lmt-25 z5' : 'hdn'">

      
        
        1313
        +        <span class="pa pl0 pt-10 c_ict lml-15 $extraClassArrow"></span>

      
        
        1314
        +        <button on="tap:AMP.setState({ stateGlobal: { flyout: '' } })" class="pa pr0 bt pt0 lpt-5 lb0" aria-label="Close popup box">

      
        
        1315
        +            <i class="i i-close" aria-hidden="true"></i>

      
        
        1316
        +        </button>

      
        
        1317
        +        <div class="hoh">

      
        
        1318
        +            Example from the Hansard archive. Contains Parliamentary information licensed under the <a  href='http://www.parliament.uk/site-information/copyright-parliament/open-parliament-licence/' target='_blank' rel='noopener'>Open Parliament Licence v3.0</a>

      
        
        1319
        +        </div>

      
        
        1320
        +    </div>

      
        
        1321
        +                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="5812307" data-dataset-id="5499879" role="button"

      
        
        1322
        +    aria-label="Tell us what you think"

      
        
        1323
        +    title="Tell us what you think"

      
        
        1324
        +    tabindex="0"

      
        
        1325
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '5812307', dataset_id: '5499879' } }),sidebarEntryTellUs.open"

      
        
        1326
        +>

      
        
        1327
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        1328
        +                        </a>

      
        
        1329
        +                    </div>

      
        
        1330
        +                </div>

      
        
        1331
        +                    

      
        
        1332
        +                            <div class="lbb lb-cm lpt-10">

      
        
        1333
        +

      
        
        1334
        +                                            <span class="deg">

      
        
        1335
        +                            We deserve a chance to reconnect with the fans to say goodbye to the old era and <em>hello</em> to the new.

      
        
        1336
        +                        </span>

      
        
        1337
        +                                        <div class="dsource lpr-20 pr">

      
        
        1338
        +                                    From <div  class='wikipedia-source dsource_e haf hp' on="tap:AMP.setState({ stateGlobal: { flyout: '0.22909475956975223' } })" role="button" aria-label="" tabindex="0">Wikipedia</div>                

      
        
        1339
        +    <div class="hdn" [class]="stateGlobal.flyout == '0.22909475956975223' ? 'pa pt0 pba pl-5 bw hbsf fs12 tw-bw lp-20 lpt-25 lc0 lmin-300 lmt-25 z5' : 'hdn'">

      
        
        1340
        +        <span class="pa pl0 pt-10 c_ict lml-15 $extraClassArrow"></span>

      
        
        1341
        +        <button on="tap:AMP.setState({ stateGlobal: { flyout: '' } })" class="pa pr0 bt pt0 lpt-5 lb0" aria-label="Close popup box">

      
        
        1342
        +            <i class="i i-close" aria-hidden="true"></i>

      
        
        1343
        +        </button>

      
        
        1344
        +        <div class="hoh">

      
        
        1345
        +             <amp-img src="/external/images/creative-commons-icon.png?version=6.0.78" width="24" height="24" class="hfl lmr-10" alt="Creatives commons icon"></amp-img>  This example is from Wikipedia and may be reused under a CC BY-SA license.

      
        
        1346
        +        </div>

      
        
        1347
        +    </div>

      
        
        1348
        +                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="5812312" data-dataset-id="5499879" role="button"

      
        
        1349
        +    aria-label="Tell us what you think"

      
        
        1350
        +    title="Tell us what you think"

      
        
        1351
        +    tabindex="0"

      
        
        1352
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '5812312', dataset_id: '5499879' } }),sidebarEntryTellUs.open"

      
        
        1353
        +>

      
        
        1354
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        1355
        +                        </a>

      
        
        1356
        +                    </div>

      
        
        1357
        +                </div>

      
        
        1358
        +                    

      
        
        1359
        +                            <div class="lbb lb-cm lpt-10">

      
        
        1360
        +

      
        
        1361
        +                                            <span class="deg">

      
        
        1362
        +                            He considered helping people to be a thing as natural as saying <em>hello</em> or wishing one good health.

      
        
        1363
        +                        </span>

      
        
        1364
        +                                        <div class="dsource lpr-20 pr">

      
        
        1365
        +                                    From <div  class='wikipedia-source dsource_e haf hp' on="tap:AMP.setState({ stateGlobal: { flyout: '0.7011450994973382' } })" role="button" aria-label="" tabindex="0">Wikipedia</div>                

      
        
        1366
        +    <div class="hdn" [class]="stateGlobal.flyout == '0.7011450994973382' ? 'pa pt0 pba pl-5 bw hbsf fs12 tw-bw lp-20 lpt-25 lc0 lmin-300 lmt-25 z5' : 'hdn'">

      
        
        1367
        +        <span class="pa pl0 pt-10 c_ict lml-15 $extraClassArrow"></span>

      
        
        1368
        +        <button on="tap:AMP.setState({ stateGlobal: { flyout: '' } })" class="pa pr0 bt pt0 lpt-5 lb0" aria-label="Close popup box">

      
        
        1369
        +            <i class="i i-close" aria-hidden="true"></i>

      
        
        1370
        +        </button>

      
        
        1371
        +        <div class="hoh">

      
        
        1372
        +             <amp-img src="/external/images/creative-commons-icon.png?version=6.0.78" width="24" height="24" class="hfl lmr-10" alt="Creatives commons icon"></amp-img>  This example is from Wikipedia and may be reused under a CC BY-SA license.

      
        
        1373
        +        </div>

      
        
        1374
        +    </div>

      
        
        1375
        +                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="5812314" data-dataset-id="5499879" role="button"

      
        
        1376
        +    aria-label="Tell us what you think"

      
        
        1377
        +    title="Tell us what you think"

      
        
        1378
        +    tabindex="0"

      
        
        1379
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '5812314', dataset_id: '5499879' } }),sidebarEntryTellUs.open"

      
        
        1380
        +>

      
        
        1381
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        1382
        +                        </a>

      
        
        1383
        +                    </div>

      
        
        1384
        +                </div>

      
        
        1385
        +                    

      
        
        1386
        +                            <div class="lbb lb-cm lpt-10">

      
        
        1387
        +

      
        
        1388
        +                                            <span class="deg">

      
        
        1389
        +                            The word has many meanings or uses: <em>hello</em>, goodbye, yes.

      
        
        1390
        +                        </span>

      
        
        1391
        +                                        <div class="dsource lpr-20 pr">

      
        
        1392
        +                                    From <div  class='wikipedia-source dsource_e haf hp' on="tap:AMP.setState({ stateGlobal: { flyout: '0.2988771010189021' } })" role="button" aria-label="" tabindex="0">Wikipedia</div>                

      
        
        1393
        +    <div class="hdn" [class]="stateGlobal.flyout == '0.2988771010189021' ? 'pa pt0 pba pl-5 bw hbsf fs12 tw-bw lp-20 lpt-25 lc0 lmin-300 lmt-25 z5' : 'hdn'">

      
        
        1394
        +        <span class="pa pl0 pt-10 c_ict lml-15 $extraClassArrow"></span>

      
        
        1395
        +        <button on="tap:AMP.setState({ stateGlobal: { flyout: '' } })" class="pa pr0 bt pt0 lpt-5 lb0" aria-label="Close popup box">

      
        
        1396
        +            <i class="i i-close" aria-hidden="true"></i>

      
        
        1397
        +        </button>

      
        
        1398
        +        <div class="hoh">

      
        
        1399
        +             <amp-img src="/external/images/creative-commons-icon.png?version=6.0.78" width="24" height="24" class="hfl lmr-10" alt="Creatives commons icon"></amp-img>  This example is from Wikipedia and may be reused under a CC BY-SA license.

      
        
        1400
        +        </div>

      
        
        1401
        +    </div>

      
        
        1402
        +                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="5812316" data-dataset-id="5499879" role="button"

      
        
        1403
        +    aria-label="Tell us what you think"

      
        
        1404
        +    title="Tell us what you think"

      
        
        1405
        +    tabindex="0"

      
        
        1406
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '5812316', dataset_id: '5499879' } }),sidebarEntryTellUs.open"

      
        
        1407
        +>

      
        
        1408
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        1409
        +                        </a>

      
        
        1410
        +                    </div>

      
        
        1411
        +                </div>

      
        
        1412
        +                    

      
        
        1413
        +                            <div class="lbb lb-cm lpt-10">

      
        
        1414
        +

      
        
        1415
        +                                            <span class="deg">

      
        
        1416
        +                            He said the children had stopped to say <em>hello</em> to him, and seemed cheerful.

      
        
        1417
        +                        </span>

      
        
        1418
        +                                        <div class="dsource lpr-20 pr">

      
        
        1419
        +                                    From <div  class='wikipedia-source dsource_e haf hp' on="tap:AMP.setState({ stateGlobal: { flyout: '0.30277772102002987' } })" role="button" aria-label="" tabindex="0">Wikipedia</div>                

      
        
        1420
        +    <div class="hdn" [class]="stateGlobal.flyout == '0.30277772102002987' ? 'pa pt0 pba pl-5 bw hbsf fs12 tw-bw lp-20 lpt-25 lc0 lmin-300 lmt-25 z5' : 'hdn'">

      
        
        1421
        +        <span class="pa pl0 pt-10 c_ict lml-15 $extraClassArrow"></span>

      
        
        1422
        +        <button on="tap:AMP.setState({ stateGlobal: { flyout: '' } })" class="pa pr0 bt pt0 lpt-5 lb0" aria-label="Close popup box">

      
        
        1423
        +            <i class="i i-close" aria-hidden="true"></i>

      
        
        1424
        +        </button>

      
        
        1425
        +        <div class="hoh">

      
        
        1426
        +             <amp-img src="/external/images/creative-commons-icon.png?version=6.0.78" width="24" height="24" class="hfl lmr-10" alt="Creatives commons icon"></amp-img>  This example is from Wikipedia and may be reused under a CC BY-SA license.

      
        
        1427
        +        </div>

      
        
        1428
        +    </div>

      
        
        1429
        +                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="5812318" data-dataset-id="5499879" role="button"

      
        
        1430
        +    aria-label="Tell us what you think"

      
        
        1431
        +    title="Tell us what you think"

      
        
        1432
        +    tabindex="0"

      
        
        1433
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '5812318', dataset_id: '5499879' } }),sidebarEntryTellUs.open"

      
        
        1434
        +>

      
        
        1435
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        1436
        +                        </a>

      
        
        1437
        +                    </div>

      
        
        1438
        +                </div>

      
        
        1439
        +                    

      
        
        1440
        +                            <div class="lbb lb-cm lpt-10">

      
        
        1441
        +

      
        
        1442
        +                                            <span class="deg">

      
        
        1443
        +                            She finally brings enough courage to say <em>hello</em> to him.

      
        
        1444
        +                        </span>

      
        
        1445
        +                                        <div class="dsource lpr-20 pr">

      
        
        1446
        +                                    From <div  class='wikipedia-source dsource_e haf hp' on="tap:AMP.setState({ stateGlobal: { flyout: '0.09019121550930842' } })" role="button" aria-label="" tabindex="0">Wikipedia</div>                

      
        
        1447
        +    <div class="hdn" [class]="stateGlobal.flyout == '0.09019121550930842' ? 'pa pt0 pba pl-5 bw hbsf fs12 tw-bw lp-20 lpt-25 lc0 lmin-300 lmt-25 z5' : 'hdn'">

      
        
        1448
        +        <span class="pa pl0 pt-10 c_ict lml-15 $extraClassArrow"></span>

      
        
        1449
        +        <button on="tap:AMP.setState({ stateGlobal: { flyout: '' } })" class="pa pr0 bt pt0 lpt-5 lb0" aria-label="Close popup box">

      
        
        1450
        +            <i class="i i-close" aria-hidden="true"></i>

      
        
        1451
        +        </button>

      
        
        1452
        +        <div class="hoh">

      
        
        1453
        +             <amp-img src="/external/images/creative-commons-icon.png?version=6.0.78" width="24" height="24" class="hfl lmr-10" alt="Creatives commons icon"></amp-img>  This example is from Wikipedia and may be reused under a CC BY-SA license.

      
        
        1454
        +        </div>

      
        
        1455
        +    </div>

      
        
        1456
        +                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="5812320" data-dataset-id="5499879" role="button"

      
        
        1457
        +    aria-label="Tell us what you think"

      
        
        1458
        +    title="Tell us what you think"

      
        
        1459
        +    tabindex="0"

      
        
        1460
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '5812320', dataset_id: '5499879' } }),sidebarEntryTellUs.open"

      
        
        1461
        +>

      
        
        1462
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        1463
        +                        </a>

      
        
        1464
        +                    </div>

      
        
        1465
        +                </div>

      
        
        1466
        +                    

      
        
        1467
        +                            <div class="lbb lb-cm lpt-10">

      
        
        1468
        +

      
        
        1469
        +                                            <span class="deg">

      
        
        1470
        +                            As she walks up to him to say <em>hello</em>, she suddenly changes before his eyes.

      
        
        1471
        +                        </span>

      
        
        1472
        +                                        <div class="dsource lpr-20 pr">

      
        
        1473
        +                                    From <div  class='wikipedia-source dsource_e haf hp' on="tap:AMP.setState({ stateGlobal: { flyout: '0.22327718814993613' } })" role="button" aria-label="" tabindex="0">Wikipedia</div>                

      
        
        1474
        +    <div class="hdn" [class]="stateGlobal.flyout == '0.22327718814993613' ? 'pa pt0 pba pl-5 bw hbsf fs12 tw-bw lp-20 lpt-25 lc0 lmin-300 lmt-25 z5' : 'hdn'">

      
        
        1475
        +        <span class="pa pl0 pt-10 c_ict lml-15 $extraClassArrow"></span>

      
        
        1476
        +        <button on="tap:AMP.setState({ stateGlobal: { flyout: '' } })" class="pa pr0 bt pt0 lpt-5 lb0" aria-label="Close popup box">

      
        
        1477
        +            <i class="i i-close" aria-hidden="true"></i>

      
        
        1478
        +        </button>

      
        
        1479
        +        <div class="hoh">

      
        
        1480
        +             <amp-img src="/external/images/creative-commons-icon.png?version=6.0.78" width="24" height="24" class="hfl lmr-10" alt="Creatives commons icon"></amp-img>  This example is from Wikipedia and may be reused under a CC BY-SA license.

      
        
        1481
        +        </div>

      
        
        1482
        +    </div>

      
        
        1483
        +                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="5812322" data-dataset-id="5499879" role="button"

      
        
        1484
        +    aria-label="Tell us what you think"

      
        
        1485
        +    title="Tell us what you think"

      
        
        1486
        +    tabindex="0"

      
        
        1487
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '5812322', dataset_id: '5499879' } }),sidebarEntryTellUs.open"

      
        
        1488
        +>

      
        
        1489
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        1490
        +                        </a>

      
        
        1491
        +                    </div>

      
        
        1492
        +                </div>

      
        
        1493
        +                    

      
        
        1494
        +                            <div class="lbb lb-cm lpt-10">

      
        
        1495
        +

      
        
        1496
        +                                            <span class="deg">

      
        
        1497
        +                            The next morning he meets a rooster to whom he says <em>hello</em> but the rooster retreats.

      
        
        1498
        +                        </span>

      
        
        1499
        +                                        <div class="dsource lpr-20 pr">

      
        
        1500
        +                                    From <div  class='wikipedia-source dsource_e haf hp' on="tap:AMP.setState({ stateGlobal: { flyout: '0.1581036149994518' } })" role="button" aria-label="" tabindex="0">Wikipedia</div>                

      
        
        1501
        +    <div class="hdn" [class]="stateGlobal.flyout == '0.1581036149994518' ? 'pa pt0 pba pl-5 bw hbsf fs12 tw-bw lp-20 lpt-25 lc0 lmin-300 lmt-25 z5' : 'hdn'">

      
        
        1502
        +        <span class="pa pl0 pt-10 c_ict lml-15 $extraClassArrow"></span>

      
        
        1503
        +        <button on="tap:AMP.setState({ stateGlobal: { flyout: '' } })" class="pa pr0 bt pt0 lpt-5 lb0" aria-label="Close popup box">

      
        
        1504
        +            <i class="i i-close" aria-hidden="true"></i>

      
        
        1505
        +        </button>

      
        
        1506
        +        <div class="hoh">

      
        
        1507
        +             <amp-img src="/external/images/creative-commons-icon.png?version=6.0.78" width="24" height="24" class="hfl lmr-10" alt="Creatives commons icon"></amp-img>  This example is from Wikipedia and may be reused under a CC BY-SA license.

      
        
        1508
        +        </div>

      
        
        1509
        +    </div>

      
        
        1510
        +                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="5812328" data-dataset-id="5499879" role="button"

      
        
        1511
        +    aria-label="Tell us what you think"

      
        
        1512
        +    title="Tell us what you think"

      
        
        1513
        +    tabindex="0"

      
        
        1514
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '5812328', dataset_id: '5499879' } }),sidebarEntryTellUs.open"

      
        
        1515
        +>

      
        
        1516
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        1517
        +                        </a>

      
        
        1518
        +                    </div>

      
        
        1519
        +                </div>

      
        
        1520
        +                    

      
        
        1521
        +                            <div class="lbb lb-cm lpt-10">

      
        
        1522
        +

      
        
        1523
        +                                            <span class="deg">

      
        
        1524
        +                            He brushes them off, despite them still trying to talk to him, calling <em>hello</em> as he leaves.

      
        
        1525
        +                        </span>

      
        
        1526
        +                                        <div class="dsource lpr-20 pr">

      
        
        1527
        +                                    From <div  class='wikipedia-source dsource_e haf hp' on="tap:AMP.setState({ stateGlobal: { flyout: '0.04781457031146863' } })" role="button" aria-label="" tabindex="0">Wikipedia</div>                

      
        
        1528
        +    <div class="hdn" [class]="stateGlobal.flyout == '0.04781457031146863' ? 'pa pt0 pba pl-5 bw hbsf fs12 tw-bw lp-20 lpt-25 lc0 lmin-300 lmt-25 z5' : 'hdn'">

      
        
        1529
        +        <span class="pa pl0 pt-10 c_ict lml-15 $extraClassArrow"></span>

      
        
        1530
        +        <button on="tap:AMP.setState({ stateGlobal: { flyout: '' } })" class="pa pr0 bt pt0 lpt-5 lb0" aria-label="Close popup box">

      
        
        1531
        +            <i class="i i-close" aria-hidden="true"></i>

      
        
        1532
        +        </button>

      
        
        1533
        +        <div class="hoh">

      
        
        1534
        +             <amp-img src="/external/images/creative-commons-icon.png?version=6.0.78" width="24" height="24" class="hfl lmr-10" alt="Creatives commons icon"></amp-img>  This example is from Wikipedia and may be reused under a CC BY-SA license.

      
        
        1535
        +        </div>

      
        
        1536
        +    </div>

      
        
        1537
        +                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="5812330" data-dataset-id="5499879" role="button"

      
        
        1538
        +    aria-label="Tell us what you think"

      
        
        1539
        +    title="Tell us what you think"

      
        
        1540
        +    tabindex="0"

      
        
        1541
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '5812330', dataset_id: '5499879' } }),sidebarEntryTellUs.open"

      
        
        1542
        +>

      
        
        1543
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        1544
        +                        </a>

      
        
        1545
        +                    </div>

      
        
        1546
        +                </div>

      
        
        1547
        +                    

      
        
        1548
        +                    <div class="tc-w hax">

      
        
        1549
        +                <a href="https://dictionary.cambridge.org/example/english/hello" class="hao hbtn hbtn-tab bh tc-w tb lmt-20">

      
        
        1550
        +                    See all examples of <span class="bold">hello</span>                </a>

      
        
        1551
        +            </div>

      
        
        1552
        +        

      
        
        1553
        +        <div class="tc-bi fs12 lpt-10 lpb-10 break">

      
        
        1554
        +            These examples are from corpora and from sources on the web. Any opinions in the examples do not represent the opinion of the Cambridge Dictionary editors or of Cambridge University Press or its licensors.        </div>

      
        
        1555
        +

      
        
        1556
        +    </div>

      
        
        1557
        +</div>

      
        
        1558
        +

      
        
        1559
        +            </div></div>

      
        
        1560
        +                    <div class="lmt-10 hax">

      
        
        1561
        +        <a href="/pronunciation/english/hello" title="hello pronunciation in English"

      
        
        1562
        +           class="hao hbtn hbtn-tab hbtn-b hbtn-tl bh tc-w tb pr">

      
        
        1563
        +            <span class="hdib w95">What is the pronunciation of <em>hello</em>?</span>

      
        
        1564
        +            <i class="i i-angle-right iw tb pa pr0 pt0 lmt-5 lmr-20" aria-hidden="true"></i>

      
        
        1565
        +        </a>

      
        
        1566
        +    </div>

      
        
        1567
        +    <div class="lmb-25 lch0">&nbsp;</div>

      
        
        1568
        +</div>

      
        
        1569
        +

      
        
        1570
        +                

      
        
        1571
        +                                            <div class="pr lcs bh">

      
        
        1572
        +        <!-- translation -->

      
        
        1573
        +        <div class="cid" id="dataset_translations"></div>

      
        
        1574
        +        <div class="lc lc1 lc-m7-12 lp-20 lbb lbb0-m lbr-m lb-cn cdo-translations" id="translations">

      
        
        1575
        +          <h2 class="h3 fs19 tn tc-w">Translations of <span class="tb">hello</span></h2>

      
        
        1576
        +          <!-- market data set + localized data set -->

      
        
        1577
        +          <div class="lmb-10">

      
        
        1578
        +                                         <div class="pr bw lp-10 lmt-5">

      
        
        1579
        +                <div class="tc-bd fs14 lmb-10" tabindex="0">

      
        
        1580
        +                    in Chinese (Traditional)

      
        
        1581
        +                </div>

      
        
        1582
        +                <div class="tc-bb tb lpb-25 break-cj" lang="zh-Hant">

      
        
        1583
        +                    喂,你好(用於問候或打招呼), (打電話時的招呼語)你好,喂, (引起別人注意的招呼語)&hellip;

      
        
        1584
        +                </div>

      
        
        1585
        +                <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1586
        +                    <a href="/dictionary/english-chinese-traditional/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1587
        +                        title="hello: Chinese (Traditional) translation">

      
        
        1588
        +                        See more                    </a>

      
        
        1589
        +                </div>

      
        
        1590
        +              </div>

      
        
        1591
        +                                         <div class="pr bw lp-10 lmt-5">

      
        
        1592
        +                <div class="tc-bd fs14 lmb-10" tabindex="0">

      
        
        1593
        +                    in Chinese (Simplified)

      
        
        1594
        +                </div>

      
        
        1595
        +                <div class="tc-bb tb lpb-25 break-cj" lang="zh-Hans">

      
        
        1596
        +                    喂,你好(用于问候或打招呼), (打电话时的招呼语)你好,喂, (引起别人注意的招呼语)&hellip;

      
        
        1597
        +                </div>

      
        
        1598
        +                <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1599
        +                    <a href="/dictionary/english-chinese-simplified/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1600
        +                        title="hello: Chinese (Simplified) translation">

      
        
        1601
        +                        See more                    </a>

      
        
        1602
        +                </div>

      
        
        1603
        +              </div>

      
        
        1604
        +                                         <div class="pr bw lp-10 lmt-5">

      
        
        1605
        +                <div class="tc-bd fs14 lmb-10" tabindex="0">

      
        
        1606
        +                    in Spanish

      
        
        1607
        +                </div>

      
        
        1608
        +                <div class="tc-bb tb lpb-25" lang="es">

      
        
        1609
        +                    hola, sí, aló&hellip;

      
        
        1610
        +                </div>

      
        
        1611
        +                <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1612
        +                    <a href="/dictionary/english-spanish/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1613
        +                        title="hello Spanish translation">

      
        
        1614
        +                        See more                    </a>

      
        
        1615
        +                </div>

      
        
        1616
        +              </div>

      
        
        1617
        +                                         <div class="pr bw lp-10 lmt-5">

      
        
        1618
        +                <div class="tc-bd fs14 lmb-10" tabindex="0">

      
        
        1619
        +                    in Portuguese

      
        
        1620
        +                </div>

      
        
        1621
        +                <div class="tc-bb tb lpb-25" lang="pt">

      
        
        1622
        +                    alô, olá, oi&hellip;

      
        
        1623
        +                </div>

      
        
        1624
        +                <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1625
        +                    <a href="/dictionary/english-portuguese/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1626
        +                        title="hello: Portuguese translation">

      
        
        1627
        +                        See more                    </a>

      
        
        1628
        +                </div>

      
        
        1629
        +              </div>

      
        
        1630
        +                      </div>

      
        
        1631
        +

      
        
        1632
        +                     <!-- other data set-->

      
        
        1633
        +           <div amp-access="1=1">

      
        
        1634
        +             <div class="lmb-5 pr">

      
        
        1635
        +                 <div class="cid" id="dataset_translations_down"></div>                 <template amp-access-template type="amp-mustache">

      
        
        1636
        +                     <amp-state id="stateDictTrans">

      
        
        1637
        +                         <script type="application/json">

      
        
        1638
        +                           {

      
        
        1639
        +                             "dataset": "",

      
        
        1640
        +                             "dataset_text": "in more languages"

      
        
        1641
        +                           }

      
        
        1642
        +                         </script>

      
        
        1643
        +                     </amp-state>

      
        
        1644
        +                 </template>

      
        
        1645
        +                 <amp-accordion id="accordEntryTrans" disable-session-states>

      
        
        1646
        +                     <section>

      
        
        1647
        +                         <header class="pr bt ca_h lpt-0 lpb-0 lpl-0 lpr-0">

      
        
        1648
        +                             <span class="hbtn hbtn-tab hbtn-b hbtn-tl bw tc-bd tn fs14">

      
        
        1649
        +                                 <span [text]="stateDictTrans.dataset_text">in more languages</span>

      
        
        1650
        +                                 <i class="i i-chevron-down il tn pa pr0 pt0 lpt-5 lpr-15" aria-hidden="true"></i>

      
        
        1651
        +                             </span>

      
        
        1652
        +                         </header>

      
        
        1653
        +                         <div class="bw lp-10 lpl-10 lmt-5">

      
        
        1654
        +                             <div class="lpl-2">

      
        
        1655
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1656
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-marathi', dataset_text: 'in Marathi' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1657
        +                                     in Marathi

      
        
        1658
        +                                 </div>

      
        
        1659
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1660
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-japanese', dataset_text: 'in Japanese' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1661
        +                                     in Japanese

      
        
        1662
        +                                 </div>

      
        
        1663
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1664
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-turkish', dataset_text: 'in Turkish' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1665
        +                                     in Turkish

      
        
        1666
        +                                 </div>

      
        
        1667
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1668
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-french', dataset_text: 'in French' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1669
        +                                     in French

      
        
        1670
        +                                 </div>

      
        
        1671
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1672
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-catalan', dataset_text: 'in Catalan' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1673
        +                                     in Catalan

      
        
        1674
        +                                 </div>

      
        
        1675
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1676
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-dutch', dataset_text: 'in Dutch' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1677
        +                                     in Dutch

      
        
        1678
        +                                 </div>

      
        
        1679
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1680
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-tamil', dataset_text: 'in Tamil' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1681
        +                                     in Tamil

      
        
        1682
        +                                 </div>

      
        
        1683
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1684
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-hindi', dataset_text: 'in Hindi' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1685
        +                                     in Hindi

      
        
        1686
        +                                 </div>

      
        
        1687
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1688
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-gujarati', dataset_text: 'in Gujarati' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1689
        +                                     in Gujarati

      
        
        1690
        +                                 </div>

      
        
        1691
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1692
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-danish', dataset_text: 'in Danish' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1693
        +                                     in Danish

      
        
        1694
        +                                 </div>

      
        
        1695
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1696
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-swedish', dataset_text: 'in Swedish' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1697
        +                                     in Swedish

      
        
        1698
        +                                 </div>

      
        
        1699
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1700
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-malaysian', dataset_text: 'in Malay' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1701
        +                                     in Malay

      
        
        1702
        +                                 </div>

      
        
        1703
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1704
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-german', dataset_text: 'in German' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1705
        +                                     in German

      
        
        1706
        +                                 </div>

      
        
        1707
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1708
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-norwegian', dataset_text: 'in Norwegian' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1709
        +                                     in Norwegian

      
        
        1710
        +                                 </div>

      
        
        1711
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1712
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-urdu', dataset_text: 'in Urdu' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1713
        +                                     in Urdu

      
        
        1714
        +                                 </div>

      
        
        1715
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1716
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-ukrainian', dataset_text: 'in Ukrainian' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1717
        +                                     in Ukrainian

      
        
        1718
        +                                 </div>

      
        
        1719
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1720
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-telugu', dataset_text: 'in Telugu' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1721
        +                                     in Telugu

      
        
        1722
        +                                 </div>

      
        
        1723
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1724
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-bengali', dataset_text: 'in Bengali' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1725
        +                                     in Bengali

      
        
        1726
        +                                 </div>

      
        
        1727
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1728
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-czech', dataset_text: 'in Czech' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1729
        +                                     in Czech

      
        
        1730
        +                                 </div>

      
        
        1731
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1732
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-indonesian', dataset_text: 'in Indonesian' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1733
        +                                     in Indonesian

      
        
        1734
        +                                 </div>

      
        
        1735
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1736
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-thai', dataset_text: 'in Thai' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1737
        +                                     in Thai

      
        
        1738
        +                                 </div>

      
        
        1739
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1740
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-vietnamese', dataset_text: 'in Vietnamese' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1741
        +                                     in Vietnamese

      
        
        1742
        +                                 </div>

      
        
        1743
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1744
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-polish', dataset_text: 'in Polish' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1745
        +                                     in Polish

      
        
        1746
        +                                 </div>

      
        
        1747
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1748
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-korean', dataset_text: 'in Korean' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1749
        +                                     in Korean

      
        
        1750
        +                                 </div>

      
        
        1751
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        1752
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-italian', dataset_text: 'in Italian' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        1753
        +                                     in Italian

      
        
        1754
        +                                 </div>

      
        
        1755
        +                                                          </div>

      
        
        1756
        +                         </div>

      
        
        1757
        +                     </section>

      
        
        1758
        +                 </amp-accordion>

      
        
        1759
        + 

      
        
        1760
        +                 <div>

      
        
        1761
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-marathi' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1762
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1763
        +                         <span class="pa cs-tw"></span>

      
        
        1764
        +                         <div class="tc-bb tb lpb-25" lang="mr">

      
        
        1765
        +                             हॅलो, बोलायला सुरुवात करायच्या आधी अभिवादन करायला वापरलेला शब्द&hellip;

      
        
        1766
        +                         </div>

      
        
        1767
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1768
        +                             <a href="/dictionary/english-marathi/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1769
        +                                 title="hello: Marathi translation">

      
        
        1770
        +                                 See more                             </a>

      
        
        1771
        +                         </div>

      
        
        1772
        +                       </div>

      
        
        1773
        +                     </div>

      
        
        1774
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-japanese' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1775
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1776
        +                         <span class="pa cs-tw"></span>

      
        
        1777
        +                         <div class="tc-bb tb lpb-25" lang="ja">

      
        
        1778
        +                             こんにちは(挨拶や呼びかけに使う), もしもし(電話の呼びかけ), こんにちは&hellip;

      
        
        1779
        +                         </div>

      
        
        1780
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1781
        +                             <a href="/dictionary/english-japanese/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1782
        +                                 title="hello: Japanese translation">

      
        
        1783
        +                                 See more                             </a>

      
        
        1784
        +                         </div>

      
        
        1785
        +                       </div>

      
        
        1786
        +                     </div>

      
        
        1787
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-turkish' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1788
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1789
        +                         <span class="pa cs-tw"></span>

      
        
        1790
        +                         <div class="tc-bb tb lpb-25" lang="tr">

      
        
        1791
        +                             Merhaba!', 'Selâm!', Alo!'&hellip;

      
        
        1792
        +                         </div>

      
        
        1793
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1794
        +                             <a href="/dictionary/english-turkish/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1795
        +                                 title="hello Turkish translation">

      
        
        1796
        +                                 See more                             </a>

      
        
        1797
        +                         </div>

      
        
        1798
        +                       </div>

      
        
        1799
        +                     </div>

      
        
        1800
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-french' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1801
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1802
        +                         <span class="pa cs-tw"></span>

      
        
        1803
        +                         <div class="tc-bb tb lpb-25" lang="fr">

      
        
        1804
        +                             bonjour, allô, Hé&hellip;

      
        
        1805
        +                         </div>

      
        
        1806
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1807
        +                             <a href="/dictionary/english-french/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1808
        +                                 title="hello: French translation">

      
        
        1809
        +                                 See more                             </a>

      
        
        1810
        +                         </div>

      
        
        1811
        +                       </div>

      
        
        1812
        +                     </div>

      
        
        1813
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-catalan' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1814
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1815
        +                         <span class="pa cs-tw"></span>

      
        
        1816
        +                         <div class="tc-bb tb lpb-25" lang="ca">

      
        
        1817
        +                             hola&hellip;

      
        
        1818
        +                         </div>

      
        
        1819
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1820
        +                             <a href="/dictionary/english-catalan/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1821
        +                                 title="hello: Catalan translation">

      
        
        1822
        +                                 See more                             </a>

      
        
        1823
        +                         </div>

      
        
        1824
        +                       </div>

      
        
        1825
        +                     </div>

      
        
        1826
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-dutch' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1827
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1828
        +                         <span class="pa cs-tw"></span>

      
        
        1829
        +                         <div class="tc-bb tb lpb-25" lang="nl">

      
        
        1830
        +                             Hallo!&hellip;

      
        
        1831
        +                         </div>

      
        
        1832
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1833
        +                             <a href="/dictionary/english-dutch/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1834
        +                                 title="hello: Dutch translation">

      
        
        1835
        +                                 See more                             </a>

      
        
        1836
        +                         </div>

      
        
        1837
        +                       </div>

      
        
        1838
        +                     </div>

      
        
        1839
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-tamil' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1840
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1841
        +                         <span class="pa cs-tw"></span>

      
        
        1842
        +                         <div class="tc-bb tb lpb-25" lang="ta">

      
        
        1843
        +                             ஒருவரை சந்திக்கும் போது அல்லது வாழ்த்தும்போது பயன்படுத்தப்படுகிறது, தொலைபேசி உரையாடலை தொடங்கும்போது கூறும் ஒரு சொல்&hellip;

      
        
        1844
        +                         </div>

      
        
        1845
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1846
        +                             <a href="/dictionary/english-tamil/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1847
        +                                 title="hello: Tamil translation">

      
        
        1848
        +                                 See more                             </a>

      
        
        1849
        +                         </div>

      
        
        1850
        +                       </div>

      
        
        1851
        +                     </div>

      
        
        1852
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-hindi' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1853
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1854
        +                         <span class="pa cs-tw"></span>

      
        
        1855
        +                         <div class="tc-bb tb lpb-25" lang="hi">

      
        
        1856
        +                             हैलो / अभिनंदन हेतु प्रयुक्त, हैलो, फोन वार्ता के आरंभ में प्रयुक्त&hellip;

      
        
        1857
        +                         </div>

      
        
        1858
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1859
        +                             <a href="/dictionary/english-hindi/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1860
        +                                 title="hello: Hindi translation">

      
        
        1861
        +                                 See more                             </a>

      
        
        1862
        +                         </div>

      
        
        1863
        +                       </div>

      
        
        1864
        +                     </div>

      
        
        1865
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-gujarati' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1866
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1867
        +                         <span class="pa cs-tw"></span>

      
        
        1868
        +                         <div class="tc-bb tb lpb-25" lang="gu">

      
        
        1869
        +                             નમસ્તે, કેમ છો?, હલ્લો&hellip;

      
        
        1870
        +                         </div>

      
        
        1871
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1872
        +                             <a href="/dictionary/english-gujarati/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1873
        +                                 title="hello: Gujarati translation">

      
        
        1874
        +                                 See more                             </a>

      
        
        1875
        +                         </div>

      
        
        1876
        +                       </div>

      
        
        1877
        +                     </div>

      
        
        1878
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-danish' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1879
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1880
        +                         <span class="pa cs-tw"></span>

      
        
        1881
        +                         <div class="tc-bb tb lpb-25" lang="da">

      
        
        1882
        +                             hej, dav, hallo&hellip;

      
        
        1883
        +                         </div>

      
        
        1884
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1885
        +                             <a href="/dictionary/english-danish/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1886
        +                                 title="hello: Danish translation">

      
        
        1887
        +                                 See more                             </a>

      
        
        1888
        +                         </div>

      
        
        1889
        +                       </div>

      
        
        1890
        +                     </div>

      
        
        1891
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-swedish' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1892
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1893
        +                         <span class="pa cs-tw"></span>

      
        
        1894
        +                         <div class="tc-bb tb lpb-25" lang="sv">

      
        
        1895
        +                             hej!, hallå!, vad nu då?&hellip;

      
        
        1896
        +                         </div>

      
        
        1897
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1898
        +                             <a href="/dictionary/english-swedish/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1899
        +                                 title="hello: Swedish translation">

      
        
        1900
        +                                 See more                             </a>

      
        
        1901
        +                         </div>

      
        
        1902
        +                       </div>

      
        
        1903
        +                     </div>

      
        
        1904
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-malaysian' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1905
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1906
        +                         <span class="pa cs-tw"></span>

      
        
        1907
        +                         <div class="tc-bb tb lpb-25" lang="ms">

      
        
        1908
        +                             hello&hellip;

      
        
        1909
        +                         </div>

      
        
        1910
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1911
        +                             <a href="/dictionary/english-malaysian/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1912
        +                                 title="hello: Malay translation">

      
        
        1913
        +                                 See more                             </a>

      
        
        1914
        +                         </div>

      
        
        1915
        +                       </div>

      
        
        1916
        +                     </div>

      
        
        1917
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-german' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1918
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1919
        +                         <span class="pa cs-tw"></span>

      
        
        1920
        +                         <div class="tc-bb tb lpb-25" lang="de">

      
        
        1921
        +                             Hallo!&hellip;

      
        
        1922
        +                         </div>

      
        
        1923
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1924
        +                             <a href="/dictionary/english-german/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1925
        +                                 title="hello: German translation">

      
        
        1926
        +                                 See more                             </a>

      
        
        1927
        +                         </div>

      
        
        1928
        +                       </div>

      
        
        1929
        +                     </div>

      
        
        1930
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-norwegian' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1931
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1932
        +                         <span class="pa cs-tw"></span>

      
        
        1933
        +                         <div class="tc-bb tb lpb-25" lang="no">

      
        
        1934
        +                             hallo, hei, morn&hellip;

      
        
        1935
        +                         </div>

      
        
        1936
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1937
        +                             <a href="/dictionary/english-norwegian/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1938
        +                                 title="hello: Norwegian translation">

      
        
        1939
        +                                 See more                             </a>

      
        
        1940
        +                         </div>

      
        
        1941
        +                       </div>

      
        
        1942
        +                     </div>

      
        
        1943
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-urdu' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1944
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1945
        +                         <span class="pa cs-tw"></span>

      
        
        1946
        +                         <div class="tc-bb tb lpb-25" lang="ur">

      
        
        1947
        +                             ہیلو (مخاطب کرنے کے لئے بولا جانے والا لفظ), ہیلو (فون کرتے وقت پہلا اندازِ تخاطب)&hellip;

      
        
        1948
        +                         </div>

      
        
        1949
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1950
        +                             <a href="/dictionary/english-urdu/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1951
        +                                 title="hello: Urdu translation">

      
        
        1952
        +                                 See more                             </a>

      
        
        1953
        +                         </div>

      
        
        1954
        +                       </div>

      
        
        1955
        +                     </div>

      
        
        1956
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-ukrainian' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1957
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1958
        +                         <span class="pa cs-tw"></span>

      
        
        1959
        +                         <div class="tc-bb tb lpb-25" lang="uk">

      
        
        1960
        +                             алло!, привіт!&hellip;

      
        
        1961
        +                         </div>

      
        
        1962
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1963
        +                             <a href="/dictionary/english-ukrainian/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1964
        +                                 title="hello: Ukrainian translation">

      
        
        1965
        +                                 See more                             </a>

      
        
        1966
        +                         </div>

      
        
        1967
        +                       </div>

      
        
        1968
        +                     </div>

      
        
        1969
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-telugu' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1970
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1971
        +                         <span class="pa cs-tw"></span>

      
        
        1972
        +                         <div class="tc-bb tb lpb-25" lang="te">

      
        
        1973
        +                             నమస్తే/హలో, హలో&hellip;

      
        
        1974
        +                         </div>

      
        
        1975
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1976
        +                             <a href="/dictionary/english-telugu/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1977
        +                                 title="hello: Telugu translation">

      
        
        1978
        +                                 See more                             </a>

      
        
        1979
        +                         </div>

      
        
        1980
        +                       </div>

      
        
        1981
        +                     </div>

      
        
        1982
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-bengali' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1983
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1984
        +                         <span class="pa cs-tw"></span>

      
        
        1985
        +                         <div class="tc-bb tb lpb-25" lang="bn">

      
        
        1986
        +                             হ্যালো, কারও সঙ্গে দেখা করা বা অভিবাদন করার সময়ে ব্যবহৃত হয়, এমন কিছু যা ফোনের কথোপকথনের শুরুতে বলা হয়&hellip;

      
        
        1987
        +                         </div>

      
        
        1988
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        1989
        +                             <a href="/dictionary/english-bengali/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        1990
        +                                 title="hello: Bengali translation">

      
        
        1991
        +                                 See more                             </a>

      
        
        1992
        +                         </div>

      
        
        1993
        +                       </div>

      
        
        1994
        +                     </div>

      
        
        1995
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-czech' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        1996
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        1997
        +                         <span class="pa cs-tw"></span>

      
        
        1998
        +                         <div class="tc-bb tb lpb-25" lang="cs">

      
        
        1999
        +                             ahoj, no nazdar&hellip;

      
        
        2000
        +                         </div>

      
        
        2001
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2002
        +                             <a href="/dictionary/english-czech/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        2003
        +                                 title="hello: Czech translation">

      
        
        2004
        +                                 See more                             </a>

      
        
        2005
        +                         </div>

      
        
        2006
        +                       </div>

      
        
        2007
        +                     </div>

      
        
        2008
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-indonesian' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2009
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2010
        +                         <span class="pa cs-tw"></span>

      
        
        2011
        +                         <div class="tc-bb tb lpb-25" lang="id">

      
        
        2012
        +                             halo!&hellip;

      
        
        2013
        +                         </div>

      
        
        2014
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2015
        +                             <a href="/dictionary/english-indonesian/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        2016
        +                                 title="hello: Indonesian translation">

      
        
        2017
        +                                 See more                             </a>

      
        
        2018
        +                         </div>

      
        
        2019
        +                       </div>

      
        
        2020
        +                     </div>

      
        
        2021
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-thai' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2022
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2023
        +                         <span class="pa cs-tw"></span>

      
        
        2024
        +                         <div class="tc-bb tb lpb-25" lang="th">

      
        
        2025
        +                             สวัสดี (คำทักทาย&hellip;

      
        
        2026
        +                         </div>

      
        
        2027
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2028
        +                             <a href="/dictionary/english-thai/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        2029
        +                                 title="hello: Thai translation">

      
        
        2030
        +                                 See more                             </a>

      
        
        2031
        +                         </div>

      
        
        2032
        +                       </div>

      
        
        2033
        +                     </div>

      
        
        2034
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-vietnamese' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2035
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2036
        +                         <span class="pa cs-tw"></span>

      
        
        2037
        +                         <div class="tc-bb tb lpb-25" lang="vi">

      
        
        2038
        +                             xin chào, biểu lộ sự ngạc nhiên&hellip;

      
        
        2039
        +                         </div>

      
        
        2040
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2041
        +                             <a href="/dictionary/english-vietnamese/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        2042
        +                                 title="hello: Vietnamese translation">

      
        
        2043
        +                                 See more                             </a>

      
        
        2044
        +                         </div>

      
        
        2045
        +                       </div>

      
        
        2046
        +                     </div>

      
        
        2047
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-polish' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2048
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2049
        +                         <span class="pa cs-tw"></span>

      
        
        2050
        +                         <div class="tc-bb tb lpb-25" lang="pl">

      
        
        2051
        +                             cześć, halo&hellip;

      
        
        2052
        +                         </div>

      
        
        2053
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2054
        +                             <a href="/dictionary/english-polish/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        2055
        +                                 title="hello: Polish translation">

      
        
        2056
        +                                 See more                             </a>

      
        
        2057
        +                         </div>

      
        
        2058
        +                       </div>

      
        
        2059
        +                     </div>

      
        
        2060
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-korean' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2061
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2062
        +                         <span class="pa cs-tw"></span>

      
        
        2063
        +                         <div class="tc-bb tb lpb-25" lang="ko">

      
        
        2064
        +                             안녕, (전화를 받을때) 안녕, 여보세요&hellip;

      
        
        2065
        +                         </div>

      
        
        2066
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2067
        +                             <a href="/dictionary/english-korean/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        2068
        +                                 title="hello: Korean translation">

      
        
        2069
        +                                 See more                             </a>

      
        
        2070
        +                         </div>

      
        
        2071
        +                       </div>

      
        
        2072
        +                     </div>

      
        
        2073
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-italian' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2074
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2075
        +                         <span class="pa cs-tw"></span>

      
        
        2076
        +                         <div class="tc-bb tb lpb-25" lang="it">

      
        
        2077
        +                             ciao, salve, pronto (al telefono)&hellip;

      
        
        2078
        +                         </div>

      
        
        2079
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2080
        +                             <a href="/dictionary/english-italian/hello" class="hbtn hbtn-tab bh tc-w"

      
        
        2081
        +                                 title="hello: Italian translation">

      
        
        2082
        +                                 See more                             </a>

      
        
        2083
        +                         </div>

      
        
        2084
        +                       </div>

      
        
        2085
        +                     </div>

      
        
        2086
        +                                  </div>

      
        
        2087
        + 

      
        
        2088
        +             </div>

      
        
        2089
        +           </div>

      
        
        2090
        +                  </div>

      
        
        2091
        +

      
        
        2092
        +        <!-- need a translator -->

      
        
        2093
        +        <div class="hax lc lc1 lc-m5-12">

      
        
        2094
        +            <div class="lp-20">

      
        
        2095
        +                <div class="h3 fs19 tn tc-w lmb-10">Need a translator?</div>

      
        
        2096
        +

      
        
        2097
        +                <p>Get a quick, free translation!</p>

      
        
        2098
        +

      
        
        2099
        +                <div class="lp-s_t-25">

      
        
        2100
        +                    <a href="https://dictionary.cambridge.org/translate/" class="hao hbtn hbtn-tab hbtn-b bo lpl-25">

      
        
        2101
        +                        <div class="tc-bd pr lpl-10">

      
        
        2102
        +                            <i class="i i-language pa pl-15" aria-hidden="true"></i>

      
        
        2103
        +                            <span class="tb">Translator tool</span>

      
        
        2104
        +                        </div>

      
        
        2105
        +                    </a>

      
        
        2106
        +                </div>

      
        
        2107
        +            </div>

      
        
        2108
        +        </div>

      
        
        2109
        +

      
        
        2110
        +    </div>

      
        
        2111
        +

      
        
        2112
        +                                    

      
        
        2113
        +                <div class="lmb-25 lch0">&nbsp;</div>

      
        
        2114
        +

      
        
        2115
        +

      
        
        2116
        +                    <div class="lmb-20">

      
        
        2117
        +        <h2 class="bb fs16 lp-10 lmb-0">

      
        
        2118
        +            <strong class="tb">Browse</strong>

      
        
        2119
        +        </h2>

      
        
        2120
        +

      
        
        2121
        +        <div class="hax lp-10 lb lb-cm lbt0 dbrowse">

      
        
        2122
        +                            <div class="lmb-12">

      
        
        2123
        +                                    <a href="/dictionary/english/hellhound" title="hellhound" >

      
        
        2124
        +                        <span class="entry_title"><span class="results"><span class="base"><span class="hw haf">hellhound</span></span></span></span>

      
        
        2125
        +                    </a>

      
        
        2126
        +                                                </div>

      
        
        2127
        +                            <div class="lmb-12">

      
        
        2128
        +                                    <a href="/dictionary/english/hellion" title="hellion" >

      
        
        2129
        +                        <span class="entry_title"><span class="results"><span class="base"><span class="hw haf">hellion</span></span></span></span>

      
        
        2130
        +                    </a>

      
        
        2131
        +                                                </div>

      
        
        2132
        +                            <div class="lmb-12">

      
        
        2133
        +                                    <a href="/dictionary/english/hellish" title="hellish" >

      
        
        2134
        +                        <span class="entry_title"><span class="results"><span class="base"><span class="hw haf">hellish</span></span></span></span>

      
        
        2135
        +                    </a>

      
        
        2136
        +                                                </div>

      
        
        2137
        +                            <div class="lmb-12">

      
        
        2138
        +                                    <a href="/dictionary/english/hellishly" title="hellishly" >

      
        
        2139
        +                        <span class="entry_title"><span class="results"><span class="base"><span class="hw haf">hellishly</span></span></span></span>

      
        
        2140
        +                    </a>

      
        
        2141
        +                                                </div>

      
        
        2142
        +                            <div class="lmb-12">

      
        
        2143
        +                                    <span class="entry_title"><span class="results"><span class="base"><span class="hw haf">hello</span></span></span></span>

      
        
        2144
        +                                                </div>

      
        
        2145
        +                            <div class="lmb-12">

      
        
        2146
        +                                    <a href="/dictionary/english/hello-stranger" title="hello stranger idiom" >

      
        
        2147
        +                        <span class="entry_title"><span class="results"><span class="base"><span class="phrase haf">hello stranger</span></span> <span class="pos">idiom</span> </span></span>

      
        
        2148
        +                    </a>

      
        
        2149
        +                                                </div>

      
        
        2150
        +                            <div class="lmb-12">

      
        
        2151
        +                                    <a href="/dictionary/english/hellscape" title="hellscape" >

      
        
        2152
        +                        <span class="entry_title"><span class="results"><span class="base"><span class="hw haf">hellscape</span></span></span></span>

      
        
        2153
        +                    </a>

      
        
        2154
        +                                                </div>

      
        
        2155
        +                            <div class="lmb-12">

      
        
        2156
        +                                    <a href="/dictionary/english/helluva" title="helluva" >

      
        
        2157
        +                        <span class="entry_title"><span class="results"><span class="base"><span class="hw haf">helluva</span></span></span></span>

      
        
        2158
        +                    </a>

      
        
        2159
        +                                                </div>

      
        
        2160
        +                            <div class="lmb-12">

      
        
        2161
        +                                    <a href="/dictionary/english/helm" title="helm" >

      
        
        2162
        +                        <span class="entry_title"><span class="results"><span class="base"><span class="hw haf">helm</span></span></span></span>

      
        
        2163
        +                    </a>

      
        
        2164
        +                                                </div>

      
        
        2165
        +                    </div>

      
        
        2166
        +    </div>

      
        
        2167
        +

      
        
        2168
        +                

      
        
        2169
        +                                <div id='ad_btmslot' class='am-default_moreslots '>

      
        
        2170
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_btmslot'); });</script>

      
        
        2171
        +        </div>

      
        
        2172
        +    

      
        
        2173
        +                                <div id='ad_houseslot_b' class='am-default_moreslots '>

      
        
        2174
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_houseslot_b'); });</script>

      
        
        2175
        +        </div>

      
        
        2176
        +    

      
        
        2177
        +            </article>

      
        
        2178
        +

      
        
        2179
        +            <div class="hfr-s lt2s lmt-10">

      
        
        2180
        +                

      
        
        2181
        +    

      
        
        2182
        +<div amp-access="1=1">

      
        
        2183
        +  <template amp-access-template type="amp-mustache">

      
        
        2184
        +  {{#randomImageQuizHook.filename}}

      
        
        2185
        +    {{#randomImageQuizHook.isQuiz}}

      
        
        2186
        +    <div class="bw hbss lp-10 lmb-25 pr">

      
        
        2187
        +        <div class="fs18 fs20-m hlh1_3 lmb-5 break">Test your vocabulary with our fun image quizzes</div>

      
        
        2188
        +

      
        
        2189
        +        <div class="pr wl-fc-c lmb-15">

      
        
        2190
        +            <div class="pa pr-5 pb-5 lc1 lch1 bo"></div>

      
        
        2191
        +            <a href="/plus/quiz/image/{{randomImageQuizHook.quizId}}"

      
        
        2192
        +                class="pr bw hdb lcs lp-5 lb"

      
        
        2193
        +                title="Test your vocabulary with our fun image quizzes"

      
        
        2194
        +                rel="nofollow">

      
        
        2195
        +                <div class="pr wl-fc-2">

      
        
        2196
        +                    <amp-img src="/external/images/quiz/hook/{{randomImageQuizHook.filename}}?version=6.0.78" layout="fill"

      
        
        2197
        +                            alt="{{randomImageQuizHook.quizId}}">

      
        
        2198
        +                        <noscript>

      
        
        2199
        +                            <img src="/external/images/quiz/hook/{{randomImageQuizHook.filename}}?version=6.0.78"

      
        
        2200
        +                                alt="{{randomImageQuizHook.quizId}}" />

      
        
        2201
        +                        </noscript>

      
        
        2202
        +                    </amp-img>

      
        
        2203
        +                </div>

      
        
        2204
        +            </a>

      
        
        2205
        +        </div>

      
        
        2206
        +

      
        
        2207
        +        <a href="/plus/quiz/image/{{randomImageQuizHook.quizId}}"

      
        
        2208
        +            class="bh hao hbtn hbtn-tab tb mw260"

      
        
        2209
        +            rel="nofollow">Try a quiz now</a>

      
        
        2210
        +

      
        
        2211
        +        <span class="lpt-40 lpb-10 lpr-10 lpl-15 pa pr0 pb0 r2-hidden">

      
        
        2212
        +            <span class="bod lpt-20 lpb-10 lpr-10 lpl-15 pa pr0 pb20"></span>

      
        
        2213
        +            <span class="bsb lpt-15 lpb-10 lpr-10 lpl-15 pa pr0 pb0"></span>

      
        
        2214
        +        </span>

      
        
        2215
        +    </div>

      
        
        2216
        +    {{/randomImageQuizHook.isQuiz}}

      
        
        2217
        +    {{^randomImageQuizHook.isQuiz}}

      
        
        2218
        +    <div class="bw lmb-25 pr htc">

      
        
        2219
        +        <a href="/plus{{randomImageQuizHook.quizId}}" class="pr hdib" style="height:252px;width:300px;" rel="nofollow">

      
        
        2220
        +            <amp-img src="/external/images/games/{{randomImageQuizHook.filename}}?version=6.0.78" height="252" width="300" layout="fill"

      
        
        2221
        +                    alt="{{randomImageQuizHook.quizId}}">

      
        
        2222
        +                <noscript>

      
        
        2223
        +                    <img src="/external/images/games/{{randomImageQuizHook.filename}}?version=6.0.78"

      
        
        2224
        +                        alt="{{randomImageQuizHook.quizId}}" />

      
        
        2225
        +                </noscript>

      
        
        2226
        +            </amp-img>

      
        
        2227
        +        </a>

      
        
        2228
        +    </div>

      
        
        2229
        +    {{/randomImageQuizHook.isQuiz}}

      
        
        2230
        +  {{/randomImageQuizHook.filename}}

      
        
        2231
        +  </template>

      
        
        2232
        +</div>

      
        
        2233
        +

      
        
        2234
        +

      
        
        2235
        +                <div id='ad_rightslot' class='am-default_moreslots '>

      
        
        2236
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_rightslot'); });</script>

      
        
        2237
        +        </div>

      
        
        2238
        +    

      
        
        2239
        +    

      
        
        2240
        +    

      
        
        2241
        +    <aside class="lmb-20 lmt-10 cdo-more-results">

      
        
        2242
        +        <h2 class="bb fs16 tb lp-10 lmb-5">

      
        
        2243
        +                        

      
        
        2244
        +                                    More meanings of <em>hello</em>

      
        
        2245
        +        </h2>

      
        
        2246
        +

      
        
        2247
        +        <div class="lpl-10">

      
        
        2248
        +            <amp-accordion disable-session-states>

      
        
        2249
        +                <section expanded>

      
        
        2250
        +                    <header class="ca_h lpl-0" title="All &ldquo;hello&rdquo; meanings in English">

      
        
        2251
        +                        <i class="i i-plus ca_hi" aria-hidden="true"></i>

      
        
        2252
        +                        All

      
        
        2253
        +                    </header>

      
        
        2254
        +                    <div class="ca_b lpl-20 lpr-10 lpb-20">

      
        
        2255
        +                        <ul class="hax hul-u hul-u0 lmb-10">

      
        
        2256
        +                                                                                                    <li>

      
        
        2257
        +                                <a href="/dictionary/english/say-hello" title="say hello"

      
        
        2258
        +                                    class="moreResult"                                      onclick="sendGAEvent('more-result', 'more-result-link')" >

      
        
        2259
        +                                    <span class='arl3'><span class="base"><span class="hw haf">say hello</span></span></span>

      
        
        2260
        +                                </a>

      
        
        2261
        +                            </li>

      
        
        2262
        +                                                    <li>

      
        
        2263
        +                                <a href="/dictionary/english/golden-hello" title="golden hello"

      
        
        2264
        +                                    class="moreResult"                                      onclick="sendGAEvent('more-result', 'more-result-link')" >

      
        
        2265
        +                                    <span class='arl3'><span class="base"><span class="hw haf">golden hello</span></span></span>

      
        
        2266
        +                                </a>

      
        
        2267
        +                            </li>

      
        
        2268
        +                                                    <li>

      
        
        2269
        +                                <a href="/dictionary/english/hello-stranger" title="hello stranger idiom"

      
        
        2270
        +                                    class="moreResult"                                      onclick="sendGAEvent('more-result', 'more-result-link')" >

      
        
        2271
        +                                    <span class='arl6'><span class="base"><span class="phrase haf">hello stranger</span></span> <span class="pos">idiom</span></span>

      
        
        2272
        +                                </a>

      
        
        2273
        +                            </li>

      
        
        2274
        +                                                </ul>

      
        
        2275
        +

      
        
        2276
        +                        <a href="https://dictionary.cambridge.org/search/english/?q=hello" class="tb"

      
        
        2277
        +                                 onclick="sendGAEvent('more-result', 'see-all-meaning')"                                 title="All meanings for hello in English" rel="nofollow">

      
        
        2278
        +                            See all meanings                        </a>

      
        
        2279
        +                    </div>

      
        
        2280
        +                </section>

      
        
        2281
        +

      
        
        2282
        +                

      
        
        2283
        +                                    <section>

      
        
        2284
        +                        <header class="ca_h lpl-0" title="Meanings for &ldquo;hello&rdquo; in idioms in English">

      
        
        2285
        +                            <i class="i i-plus ca_hi" aria-hidden="true"></i>

      
        
        2286
        +                            Idioms and phrases

      
        
        2287
        +                        </header>

      
        
        2288
        +                        <div class="ca_b lpl-20 lpr-10 lpb-20">

      
        
        2289
        +                            <ul class="hax hul-u hul-u0 lmb-10">

      
        
        2290
        +                                                                                                                            <li><a href="/dictionary/english/hello-stranger" title="hello stranger idiom"><span class='arl6'><span class="base"><span class="phrase haf">hello stranger</span></span> <span class="pos">idiom</span></span></a></li>

      
        
        2291
        +                                                                                        </ul>

      
        
        2292
        +                                                    </div>

      
        
        2293
        +                    </section>

      
        
        2294
        +                            </amp-accordion>

      
        
        2295
        +

      
        
        2296
        +        </div>

      
        
        2297
        +    </aside>

      
        
        2298
        +

      
        
        2299
        +                <div id='ad_houseslot_a' class='am-default_moreslots '>

      
        
        2300
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_houseslot_a'); });</script>

      
        
        2301
        +        </div>

      
        
        2302
        +    

      
        
        2303
        +    

      
        
        2304
        +        <div class="pr bw hbss x lmb-25">

      
        
        2305
        +    

      
        
        2306
        +    <div class="pr boa lp-5 lpl-10 lpr-10 lc1">

      
        
        2307
        +                    <div class="pr hdib i i-facebook lp-5 lmr-10">

      
        
        2308
        +            <a class="pa p0" onclick="sendGAEvent('share_this_entry', 'facebook')" target="_blank" rel="noopener" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fdictionary.cambridge.org%2Fdictionary%2Fenglish%2Ffish-for%23cald4-1&t=" title="Share on Facebook"></a>

      
        
        2309
        +        </div>

      
        
        2310
        +        <div class="pr hdib i i-x lp-5 lmr-10">

      
        
        2311
        +            <a class="pa p0" onclick="sendGAEvent('share_this_entry', 'twitter')" target="_blank" rel="noopener" href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fdictionary.cambridge.org%2Fdictionary%2Fenglish%2Ffish-for%23cald4-1&text=" title="Share on X"></a>

      
        
        2312
        +        </div>

      
        
        2313
        +    

      
        
        2314
        +        <div class="htc hax lmt-20 lmb-25">

      
        
        2315
        +            <p class="fs12 tcu lmb-0">Word of the Day</p>

      
        
        2316
        +            <p class="fs36 lmt-5 feature-w-big wotd-hw">

      
        
        2317
        +                <a href="/dictionary/english/fish-for#cald4-1">fish for something</a>

      
        
        2318
        +            </p>

      
        
        2319
        +                                </div>

      
        
        2320
        +    </div>

      
        
        2321
        +

      
        
        2322
        +    <div class="hoh lp-20">

      
        
        2323
        +        <p class="lmt-0 lmb-20">to try to catch a particular kind of fish from a river, sea, lake, etc.</p>

      
        
        2324
        +

      
        
        2325
        +        <a href="/dictionary/english/fish-for#cald4-1" class="bh hao hbtn hbtn-tab tb">About this</a>

      
        
        2326
        +    </div>

      
        
        2327
        +</div>

      
        
        2328
        +

      
        
        2329
        +

      
        
        2330
        +    

      
        
        2331
        +        <div class="bw hbss x lmb-25">

      
        
        2332
        +    

      
        
        2333
        +    <div class="hoh lp-20">

      
        
        2334
        +        <p class="h6 lm-0 lmb-15">Blog</p>

      
        
        2335
        +        <p class="fs19 hlh1_5 lmb-15">

      
        
        2336
        +            <a href="https://dictionaryblog.cambridge.org/2026/05/27/reuniting-and-reminiscing-talking-about-meeting-old-friends/" class="ha" target="_blank" rel="noopener noreferrer">Reuniting and reminiscing: talking about meeting old friends</a>

      
        
        2337
        +        </p>

      
        
        2338
        +        <div class="fs14 tc-bl lmb-20">

      
        
        2339
        +                        <time datetime="2026-05-27">May 27, 2026</time>

      
        
        2340
        +        </div>

      
        
        2341
        +        <div>

      
        
        2342
        +            <a href="https://dictionaryblog.cambridge.org/2026/05/27/reuniting-and-reminiscing-talking-about-meeting-old-friends/" target="_blank" rel="noopener noreferrer" class="bh hao hbtn hbtn-tab tb">

      
        
        2343
        +                Read More            </a>

      
        
        2344
        +        </div>

      
        
        2345
        +    </div>

      
        
        2346
        +</div>

      
        
        2347
        +

      
        
        2348
        +    

      
        
        2349
        +<div class="bw hbss x lmb-25">

      
        
        2350
        +                    

      
        
        2351
        +                

      
        
        2352
        +                <a href="https://dictionaryblog.cambridge.org/2026/05/25/new-words-25-may-2026/" target="_blank" rel="noopener noreferrer" class="hdb hao lc1">

      
        
        2353
        +            <amp-img src="/rss/images/tool-sprawl.jpg" height="180" width="300" alt="<p>tool sprawl" layout="responsive">

      
        
        2354
        +                <noscript>

      
        
        2355
        +                    <img src="/rss/images/tool-sprawl.jpg" height="180" width="300" alt="<p>tool sprawl" class="lc1" />

      
        
        2356
        +                </noscript>

      
        
        2357
        +            </amp-img>

      
        
        2358
        +        </a>

      
        
        2359
        +                <div class="hoh lp-20">

      
        
        2360
        +        <p class="h6 lm-0 lmb-5">New Words</p>

      
        
        2361
        +

      
        
        2362
        +        <div class="lmb-15  fs36 ">

      
        
        2363
        +            <a href="https://dictionaryblog.cambridge.org/2026/05/25/new-words-25-may-2026/" class="ha" target="_blank" rel="noopener noreferrer"><p>tool sprawl</a>

      
        
        2364
        +        </div>

      
        
        2365
        +

      
        
        2366
        +        <div class="fs14 tc-bl lmb-20">

      
        
        2367
        +                        <time datetime="2026-05-25">May 25, 2026</time>

      
        
        2368
        +        </div>

      
        
        2369
        +

      
        
        2370
        +        <a href="https://dictionaryblog.cambridge.org/2026/05/25/new-words-25-may-2026/" target="_blank" rel="noopener noreferrer" class="bh hao hbtn hbtn-tab tb">

      
        
        2371
        +            More new words        </a>

      
        
        2372
        +    </div>

      
        
        2373
        +</div>

      
        
        2374
        +            </div>

      
        
        2375
        +

      
        
        2376
        +        </div>

      
        
        2377
        +

      
        
        2378
        +    </div>

      
        
        2379
        +

      
        
        2380
        +            

      
        
        2381
        +

      
        
        2382
        +

      
        
        2383
        +<div class="pf py pb0 pl0 pr0">

      
        
        2384
        +            <div id="stickyslot_placeholder"></div>

      
        
        2385
        +    

      
        
        2386
        +    <div amp-access="loggedIn" amp-access-hide>

      
        
        2387
        +    <div class="q250 pa pl0 pt100 lmt-25 lml-20 lmr-20 lmax100 z5" 

      
        
        2388
        +            [class]="stateSidebarWordList.word != '' && stateSidebarWordList.word != null ? 'q250 pa pl0 pb0 lmb-25 lml-20 lmr-20 lmax100 z5' : 'q250 pa pl0 pt100 lmt-25 lml-20 lmr-20 lmax100 z5'">

      
        
        2389
        +        <div class="hdn" [class]="stateSidebarWordList.word != '' && stateSidebarWordList.word != null ? 'bpb tc-bd hbs-br lmb-25' : 'hdn'">

      
        
        2390
        +            <span on="tap:AMP.setState({ stateSidebarWordList: { wordlist_id: '', word: '', wordlist: '', url: '' } })" class="pa pt-10 pr-10 cx hbr50 bh hp">

      
        
        2391
        +                <i class="i i-close iw" aria-hidden="true"></i>

      
        
        2392
        +            </span>

      
        
        2393
        +            <div class="fs14 lpt-15 lpl-20 lpr-25 lpb-20">

      
        
        2394
        +                              <strong class="tb" [text]="stateSidebarWordList.word"></strong> has been added to <span [class]="stateSidebarWordList.url == '' || stateSidebarWordList.wordlist == ''  ? '' : 'hdn'">list</span><a class="hdn" [class]="stateSidebarWordList.url == '' || stateSidebarWordList.wordlist == '' ? 'hdn' : 'dipa'" [href]="stateSidebarWordList.url" [text]="stateSidebarWordList.wordlist"></a>

      
        
        2395
        +            </div>

      
        
        2396
        +        </div>

      
        
        2397
        +    </div>

      
        
        2398
        +    </div>

      
        
        2399
        +

      
        
        2400
        +    <div class="ccn bh hax lpt-5 lpb-5 lp-m_l-15 lp-m_r-15" id="ContentsMenu">

      
        
        2401
        +        <div class="x fs15 lpt-3 lpb-3">

      
        
        2402
        +

      
        
        2403
        +            <div class="hfr lmt--2">

      
        
        2404
        +                <span class="hao hdib lpt-5 lpb-5 lpl-15 lpr-15 hp" on="tap:top.scrollTo">

      
        
        2405
        +                    <span class="hdi">To top</span>

      
        
        2406
        +                    <span class="lml-10 hv2"><i class="i arrow-circle-o-up iw" aria-hidden="true"></i></span>

      
        
        2407
        +                </span>

      
        
        2408
        +            </div>

      
        
        2409
        +                        <a href="/assistant" onclick="window.assistantTracker?.eventMobileStickyBtnClick()">

      
        
        2410
        +                <button class="ai-bar-button">

      
        
        2411
        +                    <img src="/external/images/assistant/icon-ai-primary-md.svg?version=6.0.78" width="24" height="24" alt="AI icon" />

      
        
        2412
        +                    <span class="ai-button-text">AI Assistant</span>

      
        
        2413
        +                </button>

      
        
        2414
        +            </a>

      
        
        2415
        +            

      
        
        2416
        +    <div class="hoh">

      
        
        2417
        +        <div class="hfl">

      
        
        2418
        +            <span class="hao hdib lpt-5 lpb-5 lpl-15 lpr-15 fon hp" on="tap:sidebarContentNav.open">

      
        
        2419
        +                <span class="cb hv-2 lmr-10"><i></i></span>

      
        
        2420
        +                <span class="hv2">Contents</span>

      
        
        2421
        +            </span>

      
        
        2422
        +        </div>

      
        
        2423
        +

      
        
        2424
        +        

      
        
        2425
        +                                

      
        
        2426
        +                

      
        
        2427
        +        <div class="ccnl hoh fs10 tb tcu tcu hdn hdb-l hls1 lpt-3">

      
        
        2428
        +            <a href="#dataset_cald4" class="hao hdib lpt-5 lpb-5 lpl-15 lpr-15 lbl lb-cn">English</a><a href="#dataset_cacd" class="hao hdib lpt-5 lpb-5 lpl-15 lpr-15 lbl lb-cn">American</a><a href="#dataset_examples" class="hao hdib lpt-5 lpb-5 lpl-15 lpr-15 lbl lb-cn">Examples</a><a href="#dataset_translations" class="hao hdib lpt-5 lpb-5 lpl-15 lpr-15 lbl lb-cn">Translations</a>        </div>

      
        
        2429
        +    </div>

      
        
        2430
        +

      
        
        2431
        +

      
        
        2432
        +        </div>

      
        
        2433
        +    </div>

      
        
        2434
        +</div>

      
        
        2435
        +    </div>

      
        
        2436
        +

      
        
        2437
        +

      
        
        2438
        +

      
        
        2439
        +                                                                                                                                                                                                                                                                                                        

      
        
        2440
        +<script type="text/javascript">

      
        
        2441
        +    JSON.parse("{&quot;people_society_religion/communication&quot;:&quot;meeting-people&quot;,&quot;people_society_religion/communication&quot;:&quot;welcoming-greeting-and-greetings&quot;,&quot;arts_entertainment_media/language&quot;:&quot;interjections&quot;}".replace(/(&quot\;)/g,"\""), (chanel, topic) => {

      
        
        2442
        +        if(typeof topic === 'string') {

      
        
        2443
        +            sendGAEvent('Channelization', chanel, topic, {'nonInteraction':1});

      
        
        2444
        +            // alert(chanel +','+ topic);

      
        
        2445
        +        }

      
        
        2446
        +    });

      
        
        2447
        +</script>

      
        
        2448
        +

      
        
        2449
        +  

      
        
        2450
        +    </div>

      
        
        2451
        +

      
        
        2452
        +    

      
        
        2453
        +    <script>

      
        
        2454
        +        var gigyaAuthEnabled = true;

      
        
        2455
        +        var thresholdPublic = 5;

      
        
        2456
        +    </script>

      
        
        2457
        +

      
        
        2458
        +<amp-state id="stateFtr">

      
        
        2459
        +    <script type="application/json">

      
        
        2460
        +        {

      
        
        2461
        +        "learn": false,

      
        
        2462
        +        "develop": false,

      
        
        2463
        +        "about": false

      
        
        2464
        +        }

      
        
        2465
        +    </script>

      
        
        2466
        +</amp-state>

      
        
        2467
        +

      
        
        2468
        +<script type="text/plain" class="optanon-category-C0004">

      
        
        2469
        +!function(f,b,e,v,n,t,s)

      
        
        2470
        +{if(f.fbq)return;n=f.fbq=function(){n.callMethod?

      
        
        2471
        +n.callMethod.apply(n,arguments):n.queue.push(arguments)};

      
        
        2472
        +if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';

      
        
        2473
        +n.queue=[];t=b.createElement(e);t.async=!0;

      
        
        2474
        +t.src=v;s=b.getElementsByTagName(e)[0];

      
        
        2475
        +s.parentNode.insertBefore(t,s)}(window,document,'script',

      
        
        2476
        +'https://connect.facebook.net/en_US/fbevents.js');

      
        
        2477
        +fbq('init', '3409493515968429');

      
        
        2478
        +fbq('track', 'PageView');

      
        
        2479
        +</script>

      
        
        2480
        +<noscript>

      
        
        2481
        +<img height="1" width="1"

      
        
        2482
        +src="https://www.facebook.com/tr?id=3409493515968429&ev=PageView

      
        
        2483
        +&noscript=1"/>

      
        
        2484
        +</noscript>

      
        
        2485
        +  <script type="text/javascript">

      
        
        2486
        +	var polarbyteConfig = {

      
        
        2487
        +		appId: "cdo",

      
        
        2488
        +        anonymousTrackingMode: "full"

      
        
        2489
        +        	}

      
        
        2490
        +            	polarbyteConfig.pageContext = {

      
        
        2491
        +    	locale:   "en" ,

      
        
        2492
        +        section:  "dictionary" ,

      
        
        2493
        +        subsection:  "english" ,

      
        
        2494
        +        type:  "english_entry"         }

      
        
        2495
        +    

      
        
        2496
        +              polarbyteConfig.productContext = {"id":"english/hello","type":"MonoEngEntry"};

      
        
        2497
        +    

      
        
        2498
        +    		polarbyteConfig.entryContext = {"entry_id":"hello","name":"hello","datasets":["english"],"domain":"H9","language":["en"],"levels":["A1"],"pos":["exclamation","noun"],"region":null,"usage":null}

      
        
        2499
        +    

      
        
        2500
        +    		polarbyteConfig.searchMetadata = {"dataset":"English","datasetType":"english","searchFormId":"searchForm","searchFieldId":"searchword"}

      
        
        2501
        +    

      
        
        2502
        +    

      
        
        2503
        +                polarbyteConfig.survey = {"apiHost":"https://cloud.polarbyte.com/webapps-api","enabled":true,"projectName":"CDO","userAttributes":{"country":"UA"},"contexts":{"page":{"locale":true,"section":true,"subsection":true,"type":true,"scenario":false}}}

      
        
        2504
        +    

      
        
        2505
        +    

      
        
        2506
        +    window.assistantTracker = {

      
        
        2507
        +        sendEvent: function(event, metadata) {

      
        
        2508
        +            if (!window || !window.polarbytereach || !window.polarbytereach.trackPublisherCustomEvent) {

      
        
        2509
        +                console.error('Failed to call polarbytereach.trackPublisherCustomEvent, tracker is not available:', { event, metadata});

      
        
        2510
        +                return;

      
        
        2511
        +            }

      
        
        2512
        +

      
        
        2513
        +            try {

      
        
        2514
        +                window.polarbytereach.trackPublisherCustomEvent(event, metadata);

      
        
        2515
        +            } catch (error) {

      
        
        2516
        +                console.error('Failed to call polarbytereach.trackPublisherCustomEvent:', { error, event, metadata });

      
        
        2517
        +            }

      
        
        2518
        +        },

      
        
        2519
        +

      
        
        2520
        +        getEvent: function(action, label, property, value) {

      
        
        2521
        +            return {category: 'AI_ASSISTANT', action: action, label: label, property: property, value: value};

      
        
        2522
        +        },

      
        
        2523
        +

      
        
        2524
        +        eventHeaderBtnClick: function() {

      
        
        2525
        +            var event = this.getEvent('HEADER_BTN_CLICK');

      
        
        2526
        +            this.sendEvent(event, undefined);

      
        
        2527
        +        },

      
        
        2528
        +

      
        
        2529
        +        eventBurgerMenuItemClick: function() {

      
        
        2530
        +            var event = this.getEvent('BURGER_MENU_ITEM_CLICK');

      
        
        2531
        +            this.sendEvent(event, undefined);

      
        
        2532
        +        },

      
        
        2533
        +

      
        
        2534
        +        eventMobileStickyBtnClick: function() {

      
        
        2535
        +            var event = this.getEvent('MOBILE_STICKY_BTN_CLICK');

      
        
        2536
        +            this.sendEvent(event, undefined);

      
        
        2537
        +        }

      
        
        2538
        +    };

      
        
        2539
        +  </script>

      
        
        2540
        +

      
        
        2541
        +      <script type="text/javascript" src="https://assets.polarbyte.com/scripts/latest/reach/pb-reach.iife.min.js" async></script>

      
        
        2542
        +              <script type="text/javascript" src="https://assets.polarbyte.com/scripts/latest/survey/pb-survey.iife.min.js" async></script>

      
        
        2543
        +        

      
        
        2544
        +

      
        
        2545
        +<div class="ai-bar">

      
        
        2546
        +    <a href="/assistant" onclick="window.assistantTracker?.eventMobileStickyBtnClick()">

      
        
        2547
        +        <button class="ai-bar-button">

      
        
        2548
        +            <img src="/external/images/assistant/icon-ai-primary-md.svg?version=6.0.78" width="24" height="24" alt="AI icon" />

      
        
        2549
        +            <span class="ai-button-text">AI Assistant</span>

      
        
        2550
        +        </button>

      
        
        2551
        +    </a>

      
        
        2552
        +</div>

      
        
        2553
        +

      
        
        2554
        +<footer id="footer" class="pr bh han cf lp-s_25 lp-s_t-15">

      
        
        2555
        +    <div class="lcs lp-l_l-25 lp-l_r-25 lmax">

      
        
        2556
        +

      
        
        2557
        +        

      
        
        2558
        +        <div class="lpt-10 lpb-20 lpr-10 hdn hdb-xs hdn-s hfr-xs">

      
        
        2559
        +            <div class="hfl hax htc tc-w lc1 lc-xsa lb-ch lbb0-xs lpt-10 lp-xs_t-0">

      
        
        2560
        +    <div class="r2-flex-sm r2-flex-col r2-text-black r2-gap-25 r2-items-end">

      
        
        2561
        +        <div class="r2-flex-sm r2-gap-10">

      
        
        2562
        +            <a href="https://www.facebook.com/CUPCambridgeDictionary/" target="_blank" rel="noopener noreferrer external" title="Become our fan!">

      
        
        2563
        +                <svg color="#000" class="" role="img" viewBox="0 0 602 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;">

      
        
        2564
        +                    <path d="M548 34.286v150.857h-89.714q-49.143 0-66.286 20.571t-17.143 61.714v108h167.429l-22.286 169.143h-145.143v433.714h-174.857v-433.714h-145.714v-169.143h145.714v-124.571q0-106.286 59.429-164.857t158.286-58.571q84 0 130.286 6.857z"/>

      
        
        2565
        +                    <title>Facebook</title>

      
        
        2566
        +                </svg>

      
        
        2567
        +            </a>

      
        
        2568
        +            <a href="https://www.instagram.com/cambridgewords" target="_blank" rel="noopener noreferrer external" title="Follow our Instagram!">

      
        
        2569
        +                <svg color="#000" role="img" viewBox="0 0 1024 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;">

      
        
        2570
        +                    <path d="M512 92.2c136.8 0 153 0.6 206.8 3 50 2.2 77 10.6 95 17.6 23.8 9.2 41 20.4 58.8 38.2 18 18 29 35 38.4 58.8 7 18 15.4 45.2 17.6 95 2.4 54 3 70.2 3 206.8s-0.6 153-3 206.8c-2.2 50-10.6 77-17.6 95-9.2 23.8-20.4 41-38.2 58.8-18 18-35 29-58.8 38.4-18 7-45.2 15.4-95 17.6-54 2.4-70.2 3-206.8 3s-153-0.6-206.8-3c-50-2.2-77-10.6-95-17.6-23.8-9.2-41-20.4-58.8-38.2-18-18-29-35-38.4-58.8-7-18-15.4-45.2-17.6-95-2.4-54-3-70.2-3-206.8s0.6-153 3-206.8c2.2-50 10.6-77 17.6-95 9.2-23.8 20.4-41 38.2-58.8 18-18 35-29 58.8-38.4 18-7 45.2-15.4 95-17.6 53.8-2.4 70-3 206.8-3zM512 0c-139 0-156.4 0.6-211 3-54.4 2.4-91.8 11.2-124.2 23.8-33.8 13.2-62.4 30.6-90.8 59.2-28.6 28.4-46 57-59.2 90.6-12.6 32.6-21.4 69.8-23.8 124.2-2.4 54.8-3 72.2-3 211.2s0.6 156.4 3 211c2.4 54.4 11.2 91.8 23.8 124.2 13.2 33.8 30.6 62.4 59.2 90.8 28.4 28.4 57 46 90.6 59 32.6 12.6 69.8 21.4 124.2 23.8 54.6 2.4 72 3 211 3s156.4-0.6 211-3c54.4-2.4 91.8-11.2 124.2-23.8 33.6-13 62.2-30.6 90.6-59s46-57 59-90.6c12.6-32.6 21.4-69.8 23.8-124.2 2.4-54.6 3-72 3-211s-0.6-156.4-3-211c-2.4-54.4-11.2-91.8-23.8-124.2-12.6-34-30-62.6-58.6-91-28.4-28.4-57-46-90.6-59-32.6-12.6-69.8-21.4-124.2-23.8-54.8-2.6-72.2-3.2-211.2-3.2v0zM512 249c-145.2 0-263 117.8-263 263s117.8 263 263 263 263-117.8 263-263c0-145.2-117.8-263-263-263zM512 682.6c-94.2 0-170.6-76.4-170.6-170.6s76.4-170.6 170.6-170.6c94.2 0 170.6 76.4 170.6 170.6s-76.4 170.6-170.6 170.6zM846.8 238.6c0 33.91-27.49 61.4-61.4 61.4s-61.4-27.49-61.4-61.4c0-33.91 27.49-61.4 61.4-61.4s61.4 27.49 61.4 61.4z"/>

      
        
        2571
        +                    <title>Instagram</title>

      
        
        2572
        +                </svg>

      
        
        2573
        +            </a>

      
        
        2574
        +            <a href="https://twitter.com/CambridgeWords" target="_blank" rel="noopener noreferrer external" title="Follow us!">

      
        
        2575
        +                <svg color="#000" role="img" viewBox="0 0 1024 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;" >

      
        
        2576
        +                    <path d="M778.411 96h141.141l-308.352 352.427 362.752 479.573h-284.032l-222.464-290.859-254.549 290.859h-141.227l329.813-376.96-347.989-455.040h291.243l201.088 265.856zM728.875 843.52h78.208l-504.832-667.477h-83.925z"/>

      
        
        2577
        +                    <title>X</title>

      
        
        2578
        +                </svg>

      
        
        2579
        +            </a>

      
        
        2580
        +        </div>

      
        
        2581
        +        <div><a href="https://www.cambridge.org/" title="Cambridge University Press &amp; Assessment"><img src="/external/images/rv2-design/cup&a-logo-black-@1x.png?version=6.0.78" alt="cdo logo" rel="external" width="190" height="30"/></a></div>

      
        
        2582
        +        <div><img src="/external/images/rv2-design/where-your-world-grows.png?version=6.0.78" alt="cdo logo" width="305" height="35" /></div>

      
        
        2583
        +        <div class="fs12">© Cambridge University Press & Assessment 2026</div>

      
        
        2584
        +    </div>

      
        
        2585
        +</div>        </div>

      
        
        2586
        +

      
        
        2587
        +        <div class="cfn hfl-s lc1 lc-xsa hul-u hul-un hul-u0 lmb-0 lcs">

      
        
        2588
        +            <div class="cfnl hfl-s lp-s_r-20 lbb lb-ch lbb0-s">

      
        
        2589
        +    <div class="r2-text-black tc-w fs18 hax hdn-s">

      
        
        2590
        +        <span class="pr hdb fs12 tcu lp-15 lpt-5 lpb-5 hlh24 hp" on="tap:AMP.setState({ stateFtr: { learn: ! stateFtr.learn } })">

      
        
        2591
        +            Learn

      
        
        2592
        +            <span class="hdn-m"><i class="i i-plus ibw pa cfni" [class]="stateFtr.learn ? 'i i-minus ibw pa cfni' : 'i i-plus ibw pa cfni'" aria-hidden="true"></i></span>

      
        
        2593
        +        </span>

      
        
        2594
        +    </div>

      
        
        2595
        +    <div class="lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s" [class]="stateFtr.learn ? 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 r2-text-black' : 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s r2-text-black'">

      
        
        2596
        +        <a href="/learn.html" class="hdn hdb-s tc-w lpb-5 fs12 tcu hlh22">Learn</a>

      
        
        2597
        +        <a href="/learn.html" class="hdn-s">Learn</a>

      
        
        2598
        +        <a href="https://dictionaryblog.cambridge.org/category/new-words/" class="hdb">New Words</a>

      
        
        2599
        +        <a href="/help/" class=" hdb ">Help</a>

      
        
        2600
        +        <a href="https://www.cambridge.org/gb/cambridgeenglish/catalog/dictionaries" target="_blank" rel="noopener noreferrer" class="hdb">In Print</a>

      
        
        2601
        +                                    <a href="/editorial/word-of-the-year/2021" class="hdb">Word of the Year 2021</a>

      
        
        2602
        +                            <a href="/editorial/word-of-the-year/2022" class="hdb">Word of the Year 2022</a>

      
        
        2603
        +                            <a href="/editorial/word-of-the-year/2023" class="hdb">Word of the Year 2023</a>

      
        
        2604
        +                            <a href="/editorial/word-of-the-year/2024" class="hdb">Word of the Year 2024</a>

      
        
        2605
        +                            <a href="/editorial/word-of-the-year" class="hdb">Word of the Year 2025</a>

      
        
        2606
        +                        </div>

      
        
        2607
        +</div>

      
        
        2608
        +<div class="cfnl hfl-s lp-s_r-20 lp-s_l-20 lbb lb-ch lbb0-s">

      
        
        2609
        +    <div class="r2-text-black tc-w fs18 hax hdn-s">

      
        
        2610
        +        <span class="pr hdb fs12 tcu lp-15 lpt-5 lpb-5 hlh24 hp" on="tap:AMP.setState({ stateFtr: { develop: ! stateFtr.develop } })">

      
        
        2611
        +            Develop

      
        
        2612
        +            <span class="hdn-m"><i class="i i-plus ibw pa cfni" [class]="stateFtr.develop ? 'i i-minus ibw pa cfni' : 'i i-plus ibw pa cfni'" aria-hidden="true"></i></span>

      
        
        2613
        +        </span>

      
        
        2614
        +    </div>

      
        
        2615
        +    <div class="lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s" [class]="stateFtr.develop ? 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 r2-text-black' : 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s r2-text-black'">

      
        
        2616
        +        <a href="/develop.html" class="hdn hdb-s tc-w lpb-5 fs12 tcu hlh22">Develop</a>

      
        
        2617
        +        <a href="/develop.html" class="hdn-s">Develop</a>

      
        
        2618
        +        <a href="http://dictionary-api.cambridge.org" target="_blank" rel="noopener noreferrer" class="hdb">Dictionary API</a>

      
        
        2619
        +        <a href="/doubleclick.html" class="hdb">Double-Click Lookup</a>

      
        
        2620
        +        <a href="/freesearch.html" class="hdb">Search Widgets</a>

      
        
        2621
        +        <a href="/license.html" class="hdb">License Data</a>

      
        
        2622
        +                                </div>

      
        
        2623
        +</div>

      
        
        2624
        +<div class="cfnl hfl-s lp-s_r-20 lp-s_l-20 lbb lb-ch lbb0-s">

      
        
        2625
        +    <div class="r2-text-black tc-w fs18 hax hdn-s">

      
        
        2626
        +        <span class="pr hdb fs12 tcu lp-15 lpt-5 lpb-5 hlh24 hp" on="tap:AMP.setState({ stateFtr: { about: ! stateFtr.about } })">

      
        
        2627
        +            About

      
        
        2628
        +            <span class="hdn-m"><i class="i i-plus ibw pa cfni" [class]="stateFtr.about ? 'i i-minus ibw pa cfni' : 'i i-plus ibw pa cfni'" aria-hidden="true"></i></span>

      
        
        2629
        +        </span>

      
        
        2630
        +    </div>

      
        
        2631
        +    <div class="lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s" [class]="stateFtr.about ? 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 r2-text-black' : 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s r2-text-black'">

      
        
        2632
        +        <a href="/about.html" class="hdn hdb-s tc-w lpb-5 fs12 tcu hlh22">About</a>

      
        
        2633
        +        <a href="/about.html" class="hdn-s">About</a>

      
        
        2634
        +        <a href="https://www.cambridge.org/accessibility/" target="_blank" rel="noopener noreferrer" class="hdb">Accessibility</a>

      
        
        2635
        +        <a href="https://www.cambridge.org/us/cambridgeenglish" target="_blank" rel="noopener noreferrer" class="hdb">Cambridge English</a>

      
        
        2636
        +        <a href="https://www.cambridge.org/" target="_blank" rel="noopener noreferrer" class="hdb">Cambridge University Press & Assessment</a>

      
        
        2637
        +                    <span id="ot-sdk-btn" class="ot-sdk-show-settings hdb ha">Consent Management</span>

      
        
        2638
        +                <a href="https://www.cambridge.org/about-us/legal-notices/privacy-notice" target="_blank" rel="noopener noreferrer" class="hdb">Cookies and Privacy</a>

      
        
        2639
        +        <a href="https://www.cambridge.org/elt/corpus/" target="_blank" rel="noopener noreferrer" class="hdb">Corpus</a>

      
        
        2640
        +        <a href="https://www.cambridge.org/about-us/terms-use/" target="_blank" rel="noopener noreferrer" class="hdb">Terms of Use</a>

      
        
        2641
        +

      
        
        2642
        +                    <a href="https://www.cambridge.org/legal/ai-tool-terms-of-use" target="_blank" rel="noopener noreferrer" class="hdb">AI Terms of Use</a>

      
        
        2643
        +        

      
        
        2644
        +                                        </div>

      
        
        2645
        +</div>        </div>

      
        
        2646
        +

      
        
        2647
        +        <div class="cfd lpb-20 hdn-xs hdb-s hfr-s">

      
        
        2648
        +            <div class="hfl hax htc tc-w lc1 lc-xsa lb-ch lbb0-xs lpt-10 lp-xs_t-0">

      
        
        2649
        +    <div class="r2-flex-sm r2-flex-col r2-text-black r2-gap-25 r2-items-end">

      
        
        2650
        +        <div class="r2-flex-sm r2-gap-10">

      
        
        2651
        +            <a href="https://www.facebook.com/CUPCambridgeDictionary/" target="_blank" rel="noopener noreferrer external" title="Become our fan!">

      
        
        2652
        +                <svg color="#000" class="" role="img" viewBox="0 0 602 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;">

      
        
        2653
        +                    <path d="M548 34.286v150.857h-89.714q-49.143 0-66.286 20.571t-17.143 61.714v108h167.429l-22.286 169.143h-145.143v433.714h-174.857v-433.714h-145.714v-169.143h145.714v-124.571q0-106.286 59.429-164.857t158.286-58.571q84 0 130.286 6.857z"/>

      
        
        2654
        +                    <title>Facebook</title>

      
        
        2655
        +                </svg>

      
        
        2656
        +            </a>

      
        
        2657
        +            <a href="https://www.instagram.com/cambridgewords" target="_blank" rel="noopener noreferrer external" title="Follow our Instagram!">

      
        
        2658
        +                <svg color="#000" role="img" viewBox="0 0 1024 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;">

      
        
        2659
        +                    <path d="M512 92.2c136.8 0 153 0.6 206.8 3 50 2.2 77 10.6 95 17.6 23.8 9.2 41 20.4 58.8 38.2 18 18 29 35 38.4 58.8 7 18 15.4 45.2 17.6 95 2.4 54 3 70.2 3 206.8s-0.6 153-3 206.8c-2.2 50-10.6 77-17.6 95-9.2 23.8-20.4 41-38.2 58.8-18 18-35 29-58.8 38.4-18 7-45.2 15.4-95 17.6-54 2.4-70.2 3-206.8 3s-153-0.6-206.8-3c-50-2.2-77-10.6-95-17.6-23.8-9.2-41-20.4-58.8-38.2-18-18-29-35-38.4-58.8-7-18-15.4-45.2-17.6-95-2.4-54-3-70.2-3-206.8s0.6-153 3-206.8c2.2-50 10.6-77 17.6-95 9.2-23.8 20.4-41 38.2-58.8 18-18 35-29 58.8-38.4 18-7 45.2-15.4 95-17.6 53.8-2.4 70-3 206.8-3zM512 0c-139 0-156.4 0.6-211 3-54.4 2.4-91.8 11.2-124.2 23.8-33.8 13.2-62.4 30.6-90.8 59.2-28.6 28.4-46 57-59.2 90.6-12.6 32.6-21.4 69.8-23.8 124.2-2.4 54.8-3 72.2-3 211.2s0.6 156.4 3 211c2.4 54.4 11.2 91.8 23.8 124.2 13.2 33.8 30.6 62.4 59.2 90.8 28.4 28.4 57 46 90.6 59 32.6 12.6 69.8 21.4 124.2 23.8 54.6 2.4 72 3 211 3s156.4-0.6 211-3c54.4-2.4 91.8-11.2 124.2-23.8 33.6-13 62.2-30.6 90.6-59s46-57 59-90.6c12.6-32.6 21.4-69.8 23.8-124.2 2.4-54.6 3-72 3-211s-0.6-156.4-3-211c-2.4-54.4-11.2-91.8-23.8-124.2-12.6-34-30-62.6-58.6-91-28.4-28.4-57-46-90.6-59-32.6-12.6-69.8-21.4-124.2-23.8-54.8-2.6-72.2-3.2-211.2-3.2v0zM512 249c-145.2 0-263 117.8-263 263s117.8 263 263 263 263-117.8 263-263c0-145.2-117.8-263-263-263zM512 682.6c-94.2 0-170.6-76.4-170.6-170.6s76.4-170.6 170.6-170.6c94.2 0 170.6 76.4 170.6 170.6s-76.4 170.6-170.6 170.6zM846.8 238.6c0 33.91-27.49 61.4-61.4 61.4s-61.4-27.49-61.4-61.4c0-33.91 27.49-61.4 61.4-61.4s61.4 27.49 61.4 61.4z"/>

      
        
        2660
        +                    <title>Instagram</title>

      
        
        2661
        +                </svg>

      
        
        2662
        +            </a>

      
        
        2663
        +            <a href="https://twitter.com/CambridgeWords" target="_blank" rel="noopener noreferrer external" title="Follow us!">

      
        
        2664
        +                <svg color="#000" role="img" viewBox="0 0 1024 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;" >

      
        
        2665
        +                    <path d="M778.411 96h141.141l-308.352 352.427 362.752 479.573h-284.032l-222.464-290.859-254.549 290.859h-141.227l329.813-376.96-347.989-455.040h291.243l201.088 265.856zM728.875 843.52h78.208l-504.832-667.477h-83.925z"/>

      
        
        2666
        +                    <title>X</title>

      
        
        2667
        +                </svg>

      
        
        2668
        +            </a>

      
        
        2669
        +        </div>

      
        
        2670
        +        <div><a href="https://www.cambridge.org/" title="Cambridge University Press &amp; Assessment"><img src="/external/images/rv2-design/cup&a-logo-black-@1x.png?version=6.0.78" alt="cdo logo" rel="external" width="190" height="30"/></a></div>

      
        
        2671
        +        <div><img src="/external/images/rv2-design/where-your-world-grows.png?version=6.0.78" alt="cdo logo" width="305" height="35" /></div>

      
        
        2672
        +        <div class="fs12">© Cambridge University Press & Assessment 2026</div>

      
        
        2673
        +    </div>

      
        
        2674
        +</div>        </div>

      
        
        2675
        +    </div>

      
        
        2676
        +</footer>

      
        
        2677
        +

      
        
        2678
        +<span class="iwc bhb pf ctop hp" on="tap:top.scrollTo"><i class="i i-chevron-up iw" aria-hidden="true"></i></span>

      
        
        2679
        +

      
        
        2680
        +<div amp-access="1=1">

      
        
        2681
        +    <template amp-access-template type="amp-mustache">

      
        
        2682
        +        {{#displayLoginPopup}}

      
        
        2683
        +            <amp-user-notification data-persist-dismissal="false" id="loginPopup" class="loginPopupContainer"

      
        
        2684
        +                layout="nodisplay" tabindex="0">

      
        
        2685
        +                <div class="fon loginPopup" role="button" tabindex="0">

      
        
        2686
        +                    <!-- desktop -->

      
        
        2687
        +<div class="hdn hdb-xs ibd tb pr loginPopupContent">

      
        
        2688
        +    <amp-img class=""

      
        
        2689
        +        src="/external/images/login/login_desktop.svg"

      
        
        2690
        +        width="920" height="420" layout="responsive" alt="Login popup"> </amp-img>

      
        
        2691
        +

      
        
        2692
        +    <div class="pa loginPopupPanel">

      
        
        2693
        +        <!-- Cambridge banner -->

      
        
        2694
        +        <div class="hdf">

      
        
        2695
        +            <span class="hdb tc-w flx-g_4 lpBanner">

      
        
        2696
        +                <span class="hdib bh lp-15 lpt-2 lpb-2">Cambridge</span>

      
        
        2697
        +                <span class="hdb">

      
        
        2698
        +                    <span class="hdib bod lp-15 lpt-2 lpb-2">Dictionary +Plus</span>

      
        
        2699
        +                </span>

      
        
        2700
        +            </span>

      
        
        2701
        +            <span class="hdib">

      
        
        2702
        +                <span class="iwc bh hdib hao fon hp" on="tap:loginPopup.dismiss" role="button"

      
        
        2703
        +                    aria-label="Close login panel" tabindex="0">

      
        
        2704
        +                    <i class="i i-close iw" aria-hidden="true"></i>

      
        
        2705
        +                </span>

      
        
        2706
        +            </span>

      
        
        2707
        +        </div>

      
        
        2708
        +        <!-- Content -->

      
        
        2709
        +        <div class="hdf hflxy lpContentDsk">

      
        
        2710
        +            <div>

      
        
        2711
        +                <h2 class="tb htc">

      
        
        2712
        +                    <span class="">Learn more with</span>

      
        
        2713
        +                    <span class="bod tc-w lp-5">+Plus</span>

      
        
        2714
        +                </h2>

      
        
        2715
        +            </div>

      
        
        2716
        +            <div class="hdf flx-g_2">

      
        
        2717
        +                <div class="lpContentDskContentLeft">

      
        
        2718
        +                    <span class="bsb tc-w lp-4">Sign up</span>

      
        
        2719
        +                    for free and get access to exclusive content:                </div>

      
        
        2720
        +                <div class="hdf hflxy flx-g_2 lpContentDskContentRight">

      
        
        2721
        +                    <div class="flx-g_1">

      
        
        2722
        +                        <span class="bpl tc-w lp-4">Free</span>

      
        
        2723
        +                        word lists and quizzes from Cambridge                    </div>

      
        
        2724
        +                    <div class="flx-g_1">

      
        
        2725
        +                        <span class="bpl tc-w lp-4">Tools</span>

      
        
        2726
        +                        to create your own word lists and quizzes                    </div>

      
        
        2727
        +                    <div class="flx-g_1">

      
        
        2728
        +                        <span class="bpl tc-w lp-4">Word lists</span>

      
        
        2729
        +                        shared by our community of dictionary fans                    </div>

      
        
        2730
        +                    <div class="lpContentDskSign">

      
        
        2731
        +                        <span on="tap:amp-access.login-sign-up" class="bh hao hbtn hbtn-tab">Sign up now</span> or <span on="tap:amp-access.login-sign-in" class="bsb hao hbtn hbtn-tab tb tc-bd">Log in</span>

      
        
        2732
        +                    </div>

      
        
        2733
        +                </div>

      
        
        2734
        +            </div>

      
        
        2735
        +        </div>

      
        
        2736
        +    </div>

      
        
        2737
        +</div>

      
        
        2738
        +

      
        
        2739
        +<!-- mobile -->

      
        
        2740
        +<div class="hdb hdn-xs ibd tb pr loginPopupContent">

      
        
        2741
        +    <amp-img

      
        
        2742
        +        src="/external/images/login/login_mobile.svg"

      
        
        2743
        +        width="300" height="250" layout="responsive" alt="Login popup"> </amp-img>

      
        
        2744
        +

      
        
        2745
        +    <div class="pa loginPopupPanel">

      
        
        2746
        +        <!-- Cambridge banner -->

      
        
        2747
        +        <div class="hdf">

      
        
        2748
        +            <span class="hdb tc-w flx-g_4">

      
        
        2749
        +                <span class="hdib bh lp-15 lpt-2 lpb-2">Cambridge</span>

      
        
        2750
        +                <span class="hdb">

      
        
        2751
        +                    <span class="hdib bod lp-15 lpt-2 lpb-2">Dictionary +Plus</span>

      
        
        2752
        +                </span>

      
        
        2753
        +            </span>

      
        
        2754
        +            <span class="hdib">

      
        
        2755
        +                <span class="iwc bh hdib hao fon hp" on="tap:loginPopup.dismiss" role="button"

      
        
        2756
        +                    aria-label="Close login panel" tabindex="0">

      
        
        2757
        +                    <i class="i i-close iw" aria-hidden="true"></i>

      
        
        2758
        +                </span>

      
        
        2759
        +            </span>

      
        
        2760
        +        </div>

      
        
        2761
        +        <!-- Content -->

      
        
        2762
        +        <div class="hdf hflxy htc lpContentMob">

      
        
        2763
        +            <div class="flx-g_1 lpContentMobTitle">

      
        
        2764
        +                <h2 class="tb">

      
        
        2765
        +                    <span class="">Learn more with</span>

      
        
        2766
        +                    <span class="bod tc-w lp-5">+Plus</span>

      
        
        2767
        +                </h2>

      
        
        2768
        +            </div>

      
        
        2769
        +            <div class="flx-g_2 lpContentMobContent">Create word lists and quizzes for free</div>

      
        
        2770
        +            <div class="flx-g_1 lpContentMobSign">

      
        
        2771
        +                <span on="tap:amp-access.login-sign-up" class="bh hao hbtn hbtn-tab">Sign up now</span> or <span on="tap:amp-access.login-sign-in" class="bsb hao hbtn hbtn-tab tb tc-bd">Log in</span>

      
        
        2772
        +            </div>

      
        
        2773
        +        </div>

      
        
        2774
        +    </div>

      
        
        2775
        +</div>

      
        
        2776
        +

      
        
        2777
        +                </div>

      
        
        2778
        +            </amp-user-notification>

      
        
        2779
        +        {{/displayLoginPopup}}

      
        
        2780
        +

      
        
        2781
        +        {{#displayClassicSurvey}}

      
        
        2782
        +                        {{/displayClassicSurvey}}

      
        
        2783
        +    </template>

      
        
        2784
        +</div>

      
        
        2785
        +

      
        
        2786
        +

      
        
        2787
        +  <script type='text/javascript'>

      
        
        2788
        +    var aBk = true;

      
        
        2789
        +  </script>

      
        
        2790
        +  <script type='text/javascript' src="/external/scripts/ads.min.js?version=6.0.78" ></script>

      
        
        2791
        +                                                                                          <script type='text/javascript'>

      
        
        2792
        +  var aData = {"aBk":aBk};

      
        
        2793
        +  </script>

      
        
        2794
        +

      
        
        2795
        +  <script type='text/javascript'>

      
        
        2796
        +    sendGAEvent('aBk', 'aBk', ''+aBk,{'nonInteraction':1});

      
        
        2797
        +    (function() {

      
        
        2798
        +      if(!(typeof evtCall=="undefined"))

      
        
        2799
        +        for(var i=0,l=evtCall.length;i!==l;i++)

      
        
        2800
        +          evtCall[i].call();

      
        
        2801
        +    })();

      
        
        2802
        +  </script>

      
        
        2803
        +

      
        
        2804
        +    

      
        
        2805
        +<amp-state id="stateSidebarNav">

      
        
        2806
        +    <script type="application/json">

      
        
        2807
        +        {

      
        
        2808
        +        "lang": false,

      
        
        2809
        +        "dict": false,

      
        
        2810
        +        "def": false,

      
        
        2811
        +        "trans": false,

      
        
        2812
        +        "userOptions": false,

      
        
        2813
        +        "login": false

      
        
        2814
        +        }

      
        
        2815
        +    </script>

      
        
        2816
        +</amp-state>

      
        
        2817
        +

      
        
        2818
        +<amp-sidebar id="sidebarNav" layout="nodisplay" side="left" class="bw cm-f">

      
        
        2819
        +    <div class="hdn-s">

      
        
        2820
        +

      
        
        2821
        +        <div class="bh">

      
        
        2822
        +            <div>

      
        
        2823
        +                <div class="r2-display-none hdib hv-3 lpt-10 lpl-15 lpr-15">

      
        
        2824
        +                    <span class="iwc bhb hdib hao fs18 fon hp" on="tap:sidebarNav.close" role="button" aria-label='Close'

      
        
        2825
        +                        title='Close' tabindex="0">

      
        
        2826
        +                        <i class="i i-close iw" aria-hidden="true"></i>

      
        
        2827
        +                    </span>

      
        
        2828
        +                </div>

      
        
        2829
        +

      
        
        2830
        +                <div class="hdib hvt hao lpt-10 lpb-1 lpr-15">

      
        
        2831
        +                    <a class="hdib lpt-1 lpb-5" href="/" title="Cambridge Dictionary">

      
        
        2832
        +                        <div class="r2-header-logo-container-sm">

      
        
        2833
        +                            <amp-img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="44" width="116"

      
        
        2834
        +                                alt="Cambridge Dictionary" style="margin-top:-8px; margin-top:-8px;"></amp-img>

      
        
        2835
        +                            <noscript>

      
        
        2836
        +                                <img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="44" width="116"

      
        
        2837
        +                                    class="lpb-5" alt="Cambridge Dictionary" style="margin-top:-8px;"/>

      
        
        2838
        +                            </noscript>

      
        
        2839
        +                        </div>

      
        
        2840
        +                    </a>

      
        
        2841
        +                </div>

      
        
        2842
        +

      
        
        2843
        +                <div class="hfr htr fs14 lpr-15 lpt-2">

      
        
        2844
        +                    <div class="hdib lmt-5 lpt-2">

      
        
        2845
        +                        <div class="pr hdib z2" amp-access="loggedIn">

      
        
        2846
        +                            <span class="iwc iwc-f15 hp" role="button" id="sidebarNavLogButton"

      
        
        2847
        +                                    on="tap:AMP.setState({ stateSidebarNav: { userOptions: ! stateSidebarNav.userOptions } })"

      
        
        2848
        +                                    onblur="stopBlur();"

      
        
        2849
        +                                    aria-label="View user options" tabindex="0">

      
        
        2850
        +                                <i class="i i-user iw hv-2" aria-hidden="true"></i>

      
        
        2851
        +                            </span>

      
        
        2852
        +                                <div class="hdn" [class]="stateSidebarNav.userOptions ? 'pa pr0 pt100 lmt-1 tc-bd' : 'hdn'">

      
        
        2853
        +        <div class="bw htl hbs lp-20 lpt-15 lpb-15 lmt-10 lmin-150">

      
        
        2854
        +            <ul class="hul-u tw-nw lmb-0 han">

      
        
        2855
        +                <li><a href="/plus/">Cambridge Dictionary +Plus</a></li>

      
        
        2856
        +                <li><a href="/auth/profile">My profile</a></li>

      
        
        2857
        +                <li><a href="/howto.html">+Plus help</a></li>

      
        
        2858
        +                <li><span on="tap:amp-access.login-sign-out" class="logOutBtn hp ha">Log out</span></li>

      
        
        2859
        +            </ul>

      
        
        2860
        +        </div>

      
        
        2861
        +    </div>

      
        
        2862
        +                        </div>

      
        
        2863
        +                        <div class="pr hdib" amp-access="NOT loggedIn">

      
        
        2864
        +                            <span on="tap:amp-access.login-sign-in" class="iwc iwc-f15 hp">

      
        
        2865
        +                                <i class="i i-user iw hv-2" aria-hidden="true"></i>

      
        
        2866
        +                            </span>

      
        
        2867
        +                        </div>

      
        
        2868
        +

      
        
        2869
        +                        <div class="r2-display-none hdib lpl-15 lp-xs_l-10">

      
        
        2870
        +                            <span href="#top" class="iwc bo hdib hao fs18 hp" on="tap:AMP.setState({ stateHdr: { search: true, searchDesk: true } }),sidebarNav.close,searchword.focus">

      
        
        2871
        +                                <i class="i i-search" aria-hidden="true"></i>

      
        
        2872
        +                            </span>

      
        
        2873
        +                        </div>

      
        
        2874
        +                        <div class="hdib lpl-15 lp-xs_l-10">

      
        
        2875
        +                            <span class="r2-no-bg iwc bhb hdib hao fs18 fon hp" on="tap:sidebarNav.close" role="button" aria-label='Close'

      
        
        2876
        +                                  title='Close' tabindex="0">

      
        
        2877
        +                                <i class="i i-close iw" aria-hidden="true"></i>

      
        
        2878
        +                            </span>

      
        
        2879
        +                        </div>

      
        
        2880
        +                    </div>

      
        
        2881
        +                </div>

      
        
        2882
        +            </div>

      
        
        2883
        +        </div>

      
        
        2884
        +

      
        
        2885
        +    </div>

      
        
        2886
        +

      
        
        2887
        +

      
        
        2888
        +    <div class="cm-fc cms fs14 lm-auto">

      
        
        2889
        +

      
        
        2890
        +        <span class="pa pt0 pr0 hdn hdb-s lmt-5 lmr-15 lpt-15 hp fon"

      
        
        2891
        +                on="tap:sidebarNav.close" role="button" aria-label='Close' title='Close' tabindex="0">

      
        
        2892
        +            <i class="i i-close ibd" aria-hidden="true"></i>

      
        
        2893
        +        </span>

      
        
        2894
        +

      
        
        2895
        +        <nav class="lp-s_t-5">

      
        
        2896
        +

      
        
        2897
        +            <div class="hdn hdb-s lp-15 lpb-20 lbb lb-cm">

      
        
        2898
        +                <a href="/" title="Cambridge Dictionary">

      
        
        2899
        +                    <amp-img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="68" width="168"

      
        
        2900
        +                        alt="Cambridge Dictionary" style="margin-left:-10px;" noloading></amp-img>

      
        
        2901
        +                    <noscript>

      
        
        2902
        +                        <img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="68" width="168"

      
        
        2903
        +                            alt="Cambridge Dictionary" style="margin-left:-10px;" />

      
        
        2904
        +                    </noscript>

      
        
        2905
        +                </a>

      
        
        2906
        +            </div>

      
        
        2907
        +                        <div class="lbb lb-cm hlh21">

      
        
        2908
        +                <a href="/assistant" class="hdb tb hax lp-10 lpl-15 lpr-15" onclick="window.assistantTracker?.eventBurgerMenuItemClick()">

      
        
        2909
        +                    AI Assistant                    <img src="/external/images/assistant/beta.svg?version=6.0.78" class="ai-beta-icon">

      
        
        2910
        +                </a>

      
        
        2911
        +            </div>

      
        
        2912
        +                        <div class="pr hul-u tc-bd lmb-0 z1 lbb hlh21">

      
        
        2913
        +                <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        2914
        +                        [class]="stateSidebarNav.dict ? 'hdb hax lp-10 lpl-15 lpr-15 hp on' : 'hdb hax lp-10 lpl-15 lpr-15 hp'"

      
        
        2915
        +                        on="tap: AMP.setState({ stateSidebarNav: { dict: !stateSidebarNav.dict } })">

      
        
        2916
        +                    <span class="pr hdb tb">

      
        
        2917
        +                        Dictionary                        <i class="i i-plus ibd pa pr0 lpt-2" [class]="stateSidebarNav.dict ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'" aria-hidden="true"></i>

      
        
        2918
        +                    </span>

      
        
        2919
        +                </span>

      
        
        2920
        +

      
        
        2921
        +                <div class="hdn" [class]="stateSidebarNav.dict ? '' : 'hdn'">

      
        
        2922
        +                                                            <div class="lmb-0 lbt lb-cm">

      
        
        2923
        +                        <span class="hdb hax lp-10 lpl-0 lpr-15 hp"

      
        
        2924
        +                                [class]="stateSidebarNav.def ? 'pr hdb hax lp-10 lpl-15 lpr-15 hp on' : 'hdb hax lp-10 lpl-15 lpr-15 hp'"

      
        
        2925
        +                                on="tap: AMP.setState({ stateSidebarNav: { def: ! stateSidebarNav.def } })">

      
        
        2926
        +                            <span class="pr hdb">

      
        
        2927
        +                                <span class="fs12 tb tcu">Definitions</span>

      
        
        2928
        +                                <i class="i i-plus ibd pa pr0 lpt-2" [class]="stateSidebarNav.def ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'" aria-hidden="true"></i>

      
        
        2929
        +                            </span>

      
        
        2930
        +                        </span>

      
        
        2931
        +                        <div class="hdn" [class]="stateSidebarNav.def ? '' : 'hdn'">

      
        
        2932
        +                            <div class="han lpl-15 lpr-15 lmb-15">

      
        
        2933
        +                                <div class="tc-bl lmb-5 lmt--3 break">Clear explanations of natural written and spoken English</div>

      
        
        2934
        +                                                                <div class="fs16 lpt-5 lpb-3"><a href='/dictionary/english/'>English</a></div>

      
        
        2935
        +                                                                <div class="fs16 lpt-5 lpb-3"><a href='/dictionary/learner-english/'>Learner’s Dictionary</a></div>

      
        
        2936
        +                                                                <div class="fs16 lpt-5 lpb-3"><a href='/dictionary/essential-british-english/'>Essential British English</a></div>

      
        
        2937
        +                                                                <div class="fs16 lpt-5 lpb-3"><a href='/dictionary/essential-american-english/'>Essential American English</a></div>

      
        
        2938
        +                                                            </div>

      
        
        2939
        +                        </div>

      
        
        2940
        +                    </div>

      
        
        2941
        +                    

      
        
        2942
        +                    <div class="lmb-0 lbt lb-cm">

      
        
        2943
        +                        <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        2944
        +                                [class]="stateSidebarNav.trans ? 'hdb hax lp-10 lpl-15 lpr-15 hp on' : 'hdb hax lp-10 lpl-15 lpr-15 hp'"

      
        
        2945
        +                                on="tap: AMP.setState({ stateSidebarNav: { trans: ! stateSidebarNav.trans } })">

      
        
        2946
        +                            <span class="pr hdb">

      
        
        2947
        +                                <span class="fs12 tb tcu">Translations</span>

      
        
        2948
        +                                <i class="i i-plus ibd pa pr0 lpt-2" [class]="stateSidebarNav.trans ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'" aria-hidden="true"></i>

      
        
        2949
        +                            </span>

      
        
        2950
        +                        </span>

      
        
        2951
        +                        <div class="hdn" [class]="stateSidebarNav.trans ? '' : 'hdn'">

      
        
        2952
        +                                                                                    <div class="han lpl-15 lpr-15 lmb-15">

      
        
        2953
        +                                <div class="tc-bl lmb-5 lmt--3 break">

      
        
        2954
        +                                    Click on the arrows to change the translation direction.                                </div>

      
        
        2955
        +                                <div class="tb fs14 lpt-5 lpb-5 lmb-5">

      
        
        2956
        +                                    <amp-state id="stateSidebarNavBi">

      
        
        2957
        +                                        <script type="application/json">

      
        
        2958
        +                                                        {

      
        
        2959
        +                                                                                                                    "english_chinese_simplified": false,

      
        
        2960
        +                                                                                                                    "english_chinese_traditional": false,

      
        
        2961
        +                                                                                                                    "english_danish": false,

      
        
        2962
        +                                                                                                                    "english_dutch": false,

      
        
        2963
        +                                                                                                                    "english_french": false,

      
        
        2964
        +                                                                                                                    "english_german": false,

      
        
        2965
        +                                                                                                                    "english_indonesian": false,

      
        
        2966
        +                                                                                                                    "english_italian": false,

      
        
        2967
        +                                                                                                                    "english_japanese": false,

      
        
        2968
        +                                                                                                                    "english_norwegian": false,

      
        
        2969
        +                                                                                                                    "english_polish": false,

      
        
        2970
        +                                                                                                                    "english_portuguese": false,

      
        
        2971
        +                                                                                                                    "english_spanish": false,

      
        
        2972
        +                                                                                                                    "english_swedish": false,

      
        
        2973
        +                                                                                                                "erroneous_extra_item": false

      
        
        2974
        +                                                        }

      
        
        2975
        +                                            </script>

      
        
        2976
        +                                    </amp-state>

      
        
        2977
        +                                    Bilingual Dictionaries                                </div>

      
        
        2978
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        2979
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        2980
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_chinese_simplified: ! stateSidebarNavBi.english_chinese_simplified } })"

      
        
        2981
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        2982
        +                                        <a href='/dictionary/english-chinese-simplified/'

      
        
        2983
        +                                            [class]="stateSidebarNavBi.english_chinese_simplified ? 'hdn' : ''"

      
        
        2984
        +                                            data-dictCode="english-chinese-simplified"

      
        
        2985
        +                                            title="Cambridge English-Chinese (Simplified) Dictionary">English–Chinese (Simplified)</a>

      
        
        2986
        +                                                                                <a href='/dictionary/chinese-simplified-english/'

      
        
        2987
        +                                            class="hdn" [class]="stateSidebarNavBi.english_chinese_simplified ? '' : 'hdn'"

      
        
        2988
        +                                            data-dictCode="chinese-simplified-english"

      
        
        2989
        +                                            title="Cambridge Chinese (Simplified)-English Dictionary">Chinese (Simplified)–English</a>

      
        
        2990
        +                                    </div>

      
        
        2991
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        2992
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        2993
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_chinese_traditional: ! stateSidebarNavBi.english_chinese_traditional } })"

      
        
        2994
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        2995
        +                                        <a href='/dictionary/english-chinese-traditional/'

      
        
        2996
        +                                            [class]="stateSidebarNavBi.english_chinese_traditional ? 'hdn' : ''"

      
        
        2997
        +                                            data-dictCode="english-chinese-traditional"

      
        
        2998
        +                                            title="Cambridge English-Chinese (Traditional) Dictionary">English–Chinese (Traditional)</a>

      
        
        2999
        +                                                                                <a href='/dictionary/chinese-traditional-english/'

      
        
        3000
        +                                            class="hdn" [class]="stateSidebarNavBi.english_chinese_traditional ? '' : 'hdn'"

      
        
        3001
        +                                            data-dictCode="chinese-traditional-english"

      
        
        3002
        +                                            title="Cambridge Chinese (Traditional)-English Dictionary">Chinese (Traditional)–English</a>

      
        
        3003
        +                                    </div>

      
        
        3004
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        3005
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        3006
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_danish: ! stateSidebarNavBi.english_danish } })"

      
        
        3007
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        3008
        +                                        <a href='/dictionary/english-danish/'

      
        
        3009
        +                                            [class]="stateSidebarNavBi.english_danish ? 'hdn' : ''"

      
        
        3010
        +                                            data-dictCode="english-danish"

      
        
        3011
        +                                            title="English-Danish Dictionary">English–Danish</a>

      
        
        3012
        +                                                                                <a href='/dictionary/danish-english/'

      
        
        3013
        +                                            class="hdn" [class]="stateSidebarNavBi.english_danish ? '' : 'hdn'"

      
        
        3014
        +                                            data-dictCode="danish-english"

      
        
        3015
        +                                            title="Danish-English Dictionary">Danish–English</a>

      
        
        3016
        +                                    </div>

      
        
        3017
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        3018
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        3019
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_dutch: ! stateSidebarNavBi.english_dutch } })"

      
        
        3020
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        3021
        +                                        <a href='/dictionary/english-dutch/'

      
        
        3022
        +                                            [class]="stateSidebarNavBi.english_dutch ? 'hdn' : ''"

      
        
        3023
        +                                            data-dictCode="english-dutch"

      
        
        3024
        +                                            title="English-Dutch Dictionary">English–Dutch</a>

      
        
        3025
        +                                                                                <a href='/dictionary/dutch-english/'

      
        
        3026
        +                                            class="hdn" [class]="stateSidebarNavBi.english_dutch ? '' : 'hdn'"

      
        
        3027
        +                                            data-dictCode="dutch-english"

      
        
        3028
        +                                            title="Dutch-English Dictionary">Dutch–English</a>

      
        
        3029
        +                                    </div>

      
        
        3030
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        3031
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        3032
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_french: ! stateSidebarNavBi.english_french } })"

      
        
        3033
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        3034
        +                                        <a href='/dictionary/english-french/'

      
        
        3035
        +                                            [class]="stateSidebarNavBi.english_french ? 'hdn' : ''"

      
        
        3036
        +                                            data-dictCode="english-french"

      
        
        3037
        +                                            title="English-French Dictionary">English–French</a>

      
        
        3038
        +                                                                                <a href='/dictionary/french-english/'

      
        
        3039
        +                                            class="hdn" [class]="stateSidebarNavBi.english_french ? '' : 'hdn'"

      
        
        3040
        +                                            data-dictCode="french-english"

      
        
        3041
        +                                            title="French-English Dictionary">French–English</a>

      
        
        3042
        +                                    </div>

      
        
        3043
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        3044
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        3045
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_german: ! stateSidebarNavBi.english_german } })"

      
        
        3046
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        3047
        +                                        <a href='/dictionary/english-german/'

      
        
        3048
        +                                            [class]="stateSidebarNavBi.english_german ? 'hdn' : ''"

      
        
        3049
        +                                            data-dictCode="english-german"

      
        
        3050
        +                                            title="English-German Dictionary">English–German</a>

      
        
        3051
        +                                                                                <a href='/dictionary/german-english/'

      
        
        3052
        +                                            class="hdn" [class]="stateSidebarNavBi.english_german ? '' : 'hdn'"

      
        
        3053
        +                                            data-dictCode="german-english"

      
        
        3054
        +                                            title="German-English Dictionary">German–English</a>

      
        
        3055
        +                                    </div>

      
        
        3056
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        3057
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        3058
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_indonesian: ! stateSidebarNavBi.english_indonesian } })"

      
        
        3059
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        3060
        +                                        <a href='/dictionary/english-indonesian/'

      
        
        3061
        +                                            [class]="stateSidebarNavBi.english_indonesian ? 'hdn' : ''"

      
        
        3062
        +                                            data-dictCode="english-indonesian"

      
        
        3063
        +                                            title="English-Indonesian Dictionary">English–Indonesian</a>

      
        
        3064
        +                                                                                <a href='/dictionary/indonesian-english/'

      
        
        3065
        +                                            class="hdn" [class]="stateSidebarNavBi.english_indonesian ? '' : 'hdn'"

      
        
        3066
        +                                            data-dictCode="indonesian-english"

      
        
        3067
        +                                            title="Indonesian-English Dictionary">Indonesian–English</a>

      
        
        3068
        +                                    </div>

      
        
        3069
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        3070
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        3071
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_italian: ! stateSidebarNavBi.english_italian } })"

      
        
        3072
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        3073
        +                                        <a href='/dictionary/english-italian/'

      
        
        3074
        +                                            [class]="stateSidebarNavBi.english_italian ? 'hdn' : ''"

      
        
        3075
        +                                            data-dictCode="english-italian"

      
        
        3076
        +                                            title="Cambridge English-Italian Dictionary">English–Italian</a>

      
        
        3077
        +                                                                                <a href='/dictionary/italian-english/'

      
        
        3078
        +                                            class="hdn" [class]="stateSidebarNavBi.english_italian ? '' : 'hdn'"

      
        
        3079
        +                                            data-dictCode="italian-english"

      
        
        3080
        +                                            title="Italian-English Dictionary">Italian–English</a>

      
        
        3081
        +                                    </div>

      
        
        3082
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        3083
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        3084
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_japanese: ! stateSidebarNavBi.english_japanese } })"

      
        
        3085
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        3086
        +                                        <a href='/dictionary/english-japanese/'

      
        
        3087
        +                                            [class]="stateSidebarNavBi.english_japanese ? 'hdn' : ''"

      
        
        3088
        +                                            data-dictCode="english-japanese"

      
        
        3089
        +                                            title="Cambridge English-Japanese Dictionary">English–Japanese</a>

      
        
        3090
        +                                                                                <a href='/dictionary/japanese-english/'

      
        
        3091
        +                                            class="hdn" [class]="stateSidebarNavBi.english_japanese ? '' : 'hdn'"

      
        
        3092
        +                                            data-dictCode="japanese-english"

      
        
        3093
        +                                            title="Japanese-English Dictionary">Japanese–English</a>

      
        
        3094
        +                                    </div>

      
        
        3095
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        3096
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        3097
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_norwegian: ! stateSidebarNavBi.english_norwegian } })"

      
        
        3098
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        3099
        +                                        <a href='/dictionary/english-norwegian/'

      
        
        3100
        +                                            [class]="stateSidebarNavBi.english_norwegian ? 'hdn' : ''"

      
        
        3101
        +                                            data-dictCode="english-norwegian"

      
        
        3102
        +                                            title="English-Norwegian Dictionary">English–Norwegian</a>

      
        
        3103
        +                                                                                <a href='/dictionary/norwegian-english/'

      
        
        3104
        +                                            class="hdn" [class]="stateSidebarNavBi.english_norwegian ? '' : 'hdn'"

      
        
        3105
        +                                            data-dictCode="norwegian-english"

      
        
        3106
        +                                            title="Norwegian-English Dictionary">Norwegian–English</a>

      
        
        3107
        +                                    </div>

      
        
        3108
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        3109
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        3110
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_polish: ! stateSidebarNavBi.english_polish } })"

      
        
        3111
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        3112
        +                                        <a href='/dictionary/english-polish/'

      
        
        3113
        +                                            [class]="stateSidebarNavBi.english_polish ? 'hdn' : ''"

      
        
        3114
        +                                            data-dictCode="english-polish"

      
        
        3115
        +                                            title="Cambridge English-Polish Dictionary">English–Polish</a>

      
        
        3116
        +                                                                                <a href='/dictionary/polish-english/'

      
        
        3117
        +                                            class="hdn" [class]="stateSidebarNavBi.english_polish ? '' : 'hdn'"

      
        
        3118
        +                                            data-dictCode="polish-english"

      
        
        3119
        +                                            title="Polish-English Dictionary">Polish–English</a>

      
        
        3120
        +                                    </div>

      
        
        3121
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        3122
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        3123
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_portuguese: ! stateSidebarNavBi.english_portuguese } })"

      
        
        3124
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        3125
        +                                        <a href='/dictionary/english-portuguese/'

      
        
        3126
        +                                            [class]="stateSidebarNavBi.english_portuguese ? 'hdn' : ''"

      
        
        3127
        +                                            data-dictCode="english-portuguese"

      
        
        3128
        +                                            title="Cambridge English-Portuguese Dictionary">English–Portuguese</a>

      
        
        3129
        +                                                                                <a href='/dictionary/portuguese-english/'

      
        
        3130
        +                                            class="hdn" [class]="stateSidebarNavBi.english_portuguese ? '' : 'hdn'"

      
        
        3131
        +                                            data-dictCode="portuguese-english"

      
        
        3132
        +                                            title="Portuguese-English Dictionary">Portuguese–English</a>

      
        
        3133
        +                                    </div>

      
        
        3134
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        3135
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        3136
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_spanish: ! stateSidebarNavBi.english_spanish } })"

      
        
        3137
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        3138
        +                                        <a href='/dictionary/english-spanish/'

      
        
        3139
        +                                            [class]="stateSidebarNavBi.english_spanish ? 'hdn' : ''"

      
        
        3140
        +                                            data-dictCode="english-spanish"

      
        
        3141
        +                                            title="English-Spanish Dictionary">English–Spanish</a>

      
        
        3142
        +                                                                                <a href='/dictionary/spanish-english/'

      
        
        3143
        +                                            class="hdn" [class]="stateSidebarNavBi.english_spanish ? '' : 'hdn'"

      
        
        3144
        +                                            data-dictCode="spanish-english"

      
        
        3145
        +                                            title="Diccionario Espa&ntilde;ol-ingl&eacute;s">Spanish–English</a>

      
        
        3146
        +                                    </div>

      
        
        3147
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        3148
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        3149
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_swedish: ! stateSidebarNavBi.english_swedish } })"

      
        
        3150
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        3151
        +                                        <a href='/dictionary/english-swedish/'

      
        
        3152
        +                                            [class]="stateSidebarNavBi.english_swedish ? 'hdn' : ''"

      
        
        3153
        +                                            data-dictCode="english-swedish"

      
        
        3154
        +                                            title="English-Swedish Dictionary">English–Swedish</a>

      
        
        3155
        +                                                                                <a href='/dictionary/swedish-english/'

      
        
        3156
        +                                            class="hdn" [class]="stateSidebarNavBi.english_swedish ? '' : 'hdn'"

      
        
        3157
        +                                            data-dictCode="swedish-english"

      
        
        3158
        +                                            title="Swedish-English Dictionary">Swedish–English</a>

      
        
        3159
        +                                    </div>

      
        
        3160
        +                                                                                        </div>

      
        
        3161
        +

      
        
        3162
        +                                                                                    <div class="han lpl-15 lpr-15 lmb-15">

      
        
        3163
        +                                <div class="tb fs14 lpt-5 lpb-5 lmb-5">Semi-bilingual Dictionaries</div>

      
        
        3164
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        3165
        +                                    <a href='/dictionary/english-arabic/'

      
        
        3166
        +                                        title="Cambridge English-Arabic Dictionary">English–Arabic                                    </a>

      
        
        3167
        +                                </div>

      
        
        3168
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        3169
        +                                    <a href='/dictionary/english-bengali/'

      
        
        3170
        +                                        title="Cambridge English-Bengali Dictionary">English–Bengali                                    </a>

      
        
        3171
        +                                </div>

      
        
        3172
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        3173
        +                                    <a href='/dictionary/english-catalan/'

      
        
        3174
        +                                        title="Cambridge English-Catalan Dictionary">English–Catalan                                    </a>

      
        
        3175
        +                                </div>

      
        
        3176
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        3177
        +                                    <a href='/dictionary/english-czech/'

      
        
        3178
        +                                        title="English-Czech Dictionary">English–Czech                                    </a>

      
        
        3179
        +                                </div>

      
        
        3180
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        3181
        +                                    <a href='/dictionary/english-gujarati/'

      
        
        3182
        +                                        title="English-Gujarati Dictionary">English–Gujarati                                    </a>

      
        
        3183
        +                                </div>

      
        
        3184
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        3185
        +                                    <a href='/dictionary/english-hindi/'

      
        
        3186
        +                                        title="English-Hindi Dictionary">English–Hindi                                    </a>

      
        
        3187
        +                                </div>

      
        
        3188
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        3189
        +                                    <a href='/dictionary/english-korean/'

      
        
        3190
        +                                        title="Cambridge English-Korean Dictionary">English–Korean                                    </a>

      
        
        3191
        +                                </div>

      
        
        3192
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        3193
        +                                    <a href='/dictionary/english-malaysian/'

      
        
        3194
        +                                        title="English-Malay Dictionary">English–Malay                                    </a>

      
        
        3195
        +                                </div>

      
        
        3196
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        3197
        +                                    <a href='/dictionary/english-marathi/'

      
        
        3198
        +                                        title="English-Marathi Dictionary">English–Marathi                                    </a>

      
        
        3199
        +                                </div>

      
        
        3200
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        3201
        +                                    <a href='/dictionary/english-russian/'

      
        
        3202
        +                                        title="Cambridge English-Russian Dictionary">English–Russian                                    </a>

      
        
        3203
        +                                </div>

      
        
        3204
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        3205
        +                                    <a href='/dictionary/english-tamil/'

      
        
        3206
        +                                        title="English-Tamil Dictionary">English–Tamil                                    </a>

      
        
        3207
        +                                </div>

      
        
        3208
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        3209
        +                                    <a href='/dictionary/english-telugu/'

      
        
        3210
        +                                        title="English-Telugu Dictionary">English–Telugu                                    </a>

      
        
        3211
        +                                </div>

      
        
        3212
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        3213
        +                                    <a href='/dictionary/english-thai/'

      
        
        3214
        +                                        title="English-Thai Dictionary">English–Thai                                    </a>

      
        
        3215
        +                                </div>

      
        
        3216
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        3217
        +                                    <a href='/dictionary/english-turkish/'

      
        
        3218
        +                                        title="English-Turkish Dictionary, &#304;ngilizce-T&uuml;rk&ccedil;e &Ccedil;eviri">English–Turkish                                    </a>

      
        
        3219
        +                                </div>

      
        
        3220
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        3221
        +                                    <a href='/dictionary/english-ukrainian/'

      
        
        3222
        +                                        title="English-Ukrainian Dictionary">English–Ukrainian                                    </a>

      
        
        3223
        +                                </div>

      
        
        3224
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        3225
        +                                    <a href='/dictionary/english-urdu/'

      
        
        3226
        +                                        title="English-Urdu Dictionary">English–Urdu                                    </a>

      
        
        3227
        +                                </div>

      
        
        3228
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        3229
        +                                    <a href='/dictionary/english-vietnamese/'

      
        
        3230
        +                                        title="English-Vietnamese Dictionary">English–Vietnamese                                    </a>

      
        
        3231
        +                                </div>

      
        
        3232
        +                                                                                        </div>

      
        
        3233
        +                        </div>

      
        
        3234
        +                    </div>

      
        
        3235
        +                </div>

      
        
        3236
        +            </div>

      
        
        3237
        +            <div class="lbb lb-cm hlh21"><a href="/translate/" class="hdb tb hax lp-10 lpl-15 lpr-15">Translate</a></div>

      
        
        3238
        +                        <div class="lbb lb-cm hlh21"><a href="/grammar/british-grammar/" class="hdb tb hax lp-10 lpl-15 lpr-15">Grammar</a></div>

      
        
        3239
        +                        <div class="lbb lb-cm hlh21"><a href="/thesaurus/" class="hdb tb hax lp-10 lpl-15 lpr-15">Thesaurus</a></div>

      
        
        3240
        +            <div class="lbb lb-cm hlh21"><a href="/pronunciation/" class="hdb tb hax lp-10 lpl-15 lpr-15">Pronunciation</a></div>

      
        
        3241
        +            <div class="lbb lb-cm hlh21"><a href="/plus/" class="hdb tb hax lp-10 lpl-15 lpr-15">Cambridge Dictionary +Plus</a></div>

      
        
        3242
        +                        <div class="lbb lb-cm hlh21"><a href="/games/?utm_source=CDO&utm_medium=nav-bar&utm_campaign=gameshub-CDO-1&utm_id=games-nav&utm_content=games-nav" class="hdb tb hax lp-10 lpl-15 lpr-15">Games</a></div>

      
        
        3243
        +            <div class="hdn hdb-s lbb lb-cm hlh21 tc-bd">

      
        
        3244
        +                <section amp-access="loggedIn">

      
        
        3245
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        3246
        +                            [class]="stateSidebarNav.login ? 'hdb hax lp-10 lpl-15 lpr-15 hp on' : 'hdb hax lp-10 lpl-15 lpr-15 hp'"

      
        
        3247
        +                            on="tap: AMP.setState({ stateSidebarNav: { login: !stateSidebarNav.login } })">

      
        
        3248
        +                        <span class="pr hdb tb">

      
        
        3249
        +                            <template amp-access-template type="amp-mustache">

      
        
        3250
        +                                <i class="i i-user ibd fs16 hv-2 lpr-2" aria-hidden="true"></i> {{userName}}

      
        
        3251
        +                            </template>

      
        
        3252
        +                            <i class="i i-plus ibd pa pr0 lpt-2" [class]="stateSidebarNav.login ? 'i i-minus ibd pa pr0 lmt--19' : 'i i-plus ibd pa pr0 lmt--19'" aria-hidden="true"></i>

      
        
        3253
        +                        </span>

      
        
        3254
        +                    </span>

      
        
        3255
        +                    <div class="hdn" [class]="stateSidebarNav.login ? '' : 'hdn'">

      
        
        3256
        +                        <div class="han lpl-15 lpr-15">

      
        
        3257
        +                            <ul class="fs16 lmb-15">

      
        
        3258
        +                                <li class="lpt-5"><a href="/mydictionary/">Cambridge Dictionary +Plus</a></li>

      
        
        3259
        +                                <li class="lpt-5"><a href="/auth/profile">My profile</a></li>

      
        
        3260
        +                                <li class="lpt-5"><a href="/howto.html">+Plus help</a></li>

      
        
        3261
        +                                <li class="lpt-5"><span class="hp ha" on="tap:amp-access.login-sign-out">Log out</span></li>

      
        
        3262
        +                            </ul>

      
        
        3263
        +                        </div>

      
        
        3264
        +                    </div>

      
        
        3265
        +                </section>

      
        
        3266
        +                <section amp-access="NOT loggedIn">

      
        
        3267
        +                    <span on="tap:amp-access.login-sign-in" class="hdib tb hax lpb-10 lpt-10 lpl-15 hp">

      
        
        3268
        +                        <i class="i i-user ibd fs16 hv-2 lpr-2" aria-hidden="true"></i> Log in                    </span> /

      
        
        3269
        +                    <span on="tap:amp-access.login-sign-up" class="hdib tb hax lpb-10 lpt-10 lpr-15 hp"> Sign up</span>

      
        
        3270
        +                </section>

      
        
        3271
        +            </div>

      
        
        3272
        +        </nav>

      
        
        3273
        +

      
        
        3274
        +        <div class="lp-15 lbb lb-cm tc-bd">

      
        
        3275
        +            <div>

      
        
        3276
        +                <span class="hax hdb pr hp" on="tap: AMP.setState({ stateSidebarNav: { lang: ! stateSidebarNav.lang } })">

      
        
        3277
        +                    <i class="i i-globe ibd fs16 hv-2" aria-hidden="true"></i>

      
        
        3278
        +                    <span class="lpl-2">English (UK) <span class="tb">&nbsp;</span></span>

      
        
        3279
        +

      
        
        3280
        +                    <span class="pa pt0 pr0" [class]="stateSidebarNav.lang ? 'hdn' : 'pa pt0 pr0'">Change</span>

      
        
        3281
        +                    <i class="hdn" [class]="stateSidebarNav.lang ? 'i i-minus ibd pa pr5' : 'hdn'" aria-hidden="true"></i>

      
        
        3282
        +                </span>

      
        
        3283
        +

      
        
        3284
        +                <div class="hdn" [class]="stateSidebarNav.lang ? 'han' : 'hdn'">

      
        
        3285
        +                    <div class="hul-u lmt-10 lmb-0 lpl-20 cdo-locale-selector hlh1_5">

      
        
        3286
        +                                            <a href="/dictionary/english/hello"

      
        
        3287
        +                            hreflang="en" lang="en"

      
        
        3288
        +                            class="hdb lmb-5">English (UK)</a>

      
        
        3289
        +                                            <a href="/us/dictionary/english/hello"

      
        
        3290
        +                            hreflang="en-US" lang="en-US"

      
        
        3291
        +                            class="hdb lmb-5">English (US)</a>

      
        
        3292
        +                                            <a href="/es/diccionario/ingles/hello"

      
        
        3293
        +                            hreflang="es" lang="es"

      
        
        3294
        +                            class="hdb lmb-5">Español</a>

      
        
        3295
        +                                            <a href="/pt/dicionario/ingles/hello"

      
        
        3296
        +                            hreflang="pt" lang="pt"

      
        
        3297
        +                            class="hdb lmb-5">Português</a>

      
        
        3298
        +                                            <a href="/zhs/%E8%AF%8D%E5%85%B8/%E8%8B%B1%E8%AF%AD/hello"

      
        
        3299
        +                            hreflang="zh-Hans" lang="zh-Hans"

      
        
        3300
        +                            class="hdb lmb-5">中文 (简体)</a>

      
        
        3301
        +                                            <a href="/zht/%E8%A9%9E%E5%85%B8/%E8%8B%B1%E8%AA%9E/hello"

      
        
        3302
        +                            hreflang="zh-Hant" lang="zh-Hant"

      
        
        3303
        +                            class="hdb lmb-5">正體中文 (繁體)</a>

      
        
        3304
        +                                            <a href="/da/ordbog/engelsk/hello"

      
        
        3305
        +                            hreflang="da" lang="da"

      
        
        3306
        +                            class="hdb lmb-5">Dansk</a>

      
        
        3307
        +                                            <a href="/de/worterbuch/englisch/hello"

      
        
        3308
        +                            hreflang="de" lang="de"

      
        
        3309
        +                            class="hdb lmb-5">Deutsch</a>

      
        
        3310
        +                                            <a href="/fr/dictionnaire/anglais/hello"

      
        
        3311
        +                            hreflang="fr" lang="fr"

      
        
        3312
        +                            class="hdb lmb-5">Français</a>

      
        
        3313
        +                                            <a href="/it/dizionario/inglese/hello"

      
        
        3314
        +                            hreflang="it" lang="it"

      
        
        3315
        +                            class="hdb lmb-5">Italiano</a>

      
        
        3316
        +                                            <a href="/nl/woordenboek/engels/hello"

      
        
        3317
        +                            hreflang="nl" lang="nl"

      
        
        3318
        +                            class="hdb lmb-5">Nederlands</a>

      
        
        3319
        +                                            <a href="/no/ordbok/engelsk/hello"

      
        
        3320
        +                            hreflang="no" lang="no"

      
        
        3321
        +                            class="hdb lmb-5">Norsk</a>

      
        
        3322
        +                                            <a href="/pl/dictionary/english/hello"

      
        
        3323
        +                            hreflang="pl" lang="pl"

      
        
        3324
        +                            class="hdb lmb-5">Polski</a>

      
        
        3325
        +                                            <a href="/ru/%D1%81%D0%BB%D0%BE%D0%B2%D0%B0%D1%80%D1%8C/%D0%B0%D0%BD%D0%B3%D0%BB%D0%B8%D0%B9%D1%81%D0%BA%D0%B8%D0%B9/hello"

      
        
        3326
        +                            hreflang="ru" lang="ru"

      
        
        3327
        +                            class="hdb lmb-5">Русский</a>

      
        
        3328
        +                                            <a href="/tr/s%C3%B6zl%C3%BCk/ingilizce/hello"

      
        
        3329
        +                            hreflang="tr" lang="tr"

      
        
        3330
        +                            class="hdb lmb-5">Türkçe</a>

      
        
        3331
        +                                            <a href="/vi/dictionary/english/hello"

      
        
        3332
        +                            hreflang="vi" lang="vi"

      
        
        3333
        +                            class="hdb lmb-5">Tiếng Việt</a>

      
        
        3334
        +                                            <a href="/sv/ordbok/engelska/hello"

      
        
        3335
        +                            hreflang="sv" lang="sv"

      
        
        3336
        +                            class="hdb lmb-5">Svenska</a>

      
        
        3337
        +                                            <a href="/uk/dictionary/english/hello"

      
        
        3338
        +                            hreflang="uk" lang="uk"

      
        
        3339
        +                            class="hdb lmb-5">Українська</a>

      
        
        3340
        +                                            <a href="/ja/dictionary/english/hello"

      
        
        3341
        +                            hreflang="ja" lang="ja"

      
        
        3342
        +                            class="hdb lmb-5">日本語</a>

      
        
        3343
        +                                            <a href="/ko/%EC%82%AC%EC%A0%84/%EC%98%81%EC%96%B4/hello"

      
        
        3344
        +                            hreflang="ko" lang="ko"

      
        
        3345
        +                            class="hdb lmb-5">한국어</a>

      
        
        3346
        +                                            <a href="/gu/dictionary/english/hello"

      
        
        3347
        +                            hreflang="gu" lang="gu"

      
        
        3348
        +                            class="hdb lmb-5">ગુજરાતી</a>

      
        
        3349
        +                                            <a href="/ta/dictionary/english/hello"

      
        
        3350
        +                            hreflang="ta" lang="ta"

      
        
        3351
        +                            class="hdb lmb-5">தமிழ்</a>

      
        
        3352
        +                                            <a href="/te/dictionary/english/hello"

      
        
        3353
        +                            hreflang="te" lang="te"

      
        
        3354
        +                            class="hdb lmb-5">తెలుగు</a>

      
        
        3355
        +                                            <a href="/bn/dictionary/english/hello"

      
        
        3356
        +                            hreflang="bn" lang="bn"

      
        
        3357
        +                            class="hdb lmb-5">বাঙ্গালি</a>

      
        
        3358
        +                                            <a href="/mr/dictionary/english/hello"

      
        
        3359
        +                            hreflang="mr" lang="mr"

      
        
        3360
        +                            class="hdb lmb-5">मराठी</a>

      
        
        3361
        +                                            <a href="/hi/%E0%A4%B6%E0%A4%AC%E0%A5%8D%E0%A4%A6%E0%A4%95%E0%A5%8B%E0%A4%B6/%E0%A4%85%E0%A4%82%E0%A4%97%E0%A5%8D%E0%A4%B0%E0%A5%87%E0%A4%9C%E0%A4%BC%E0%A5%80/hello"

      
        
        3362
        +                            hreflang="hi" lang="hi"

      
        
        3363
        +                            class="hdb lmb-5">हिंदी</a>

      
        
        3364
        +                                        </div>

      
        
        3365
        +                </div>

      
        
        3366
        +            </div>

      
        
        3367
        +        </div>

      
        
        3368
        +

      
        
        3369
        +        <div class="lp-15 lbb lb-cm tc-bd">

      
        
        3370
        +            <div class="hdb pr">

      
        
        3371
        +                <span class="tb">Follow us</span>

      
        
        3372
        +                <div class="pa pt0 pr0">

      
        
        3373
        +                    <div class="hdib lpr-2"><a href='https://www.facebook.com/CUPCambridgeDictionary/' target="_blank" rel="noopener noreferrer" title="Likes" class="hao lpl-10 lpr-10"><i class="i i-facebook fs16" aria-hidden="true"></i></a></div>

      
        
        3374
        +                    <div class="hdib lpr-2"><a href='https://www.instagram.com/cambridgewords' target="_blank" rel="noopener noreferrer" title="Followers" class="hao lpl-10 lpr-10"><i class="i i-instagram fs16" aria-hidden="true"></i></a></div>

      
        
        3375
        +                    <div class="hdib"><a href='https://twitter.com/CambridgeWords' target="_blank" rel="noopener noreferrer" title="Followers" class="hao lpl-10"><i class="i i-x fs16" aria-hidden="true"></i></a></div>

      
        
        3376
        +                </div>

      
        
        3377
        +            </div>

      
        
        3378
        +        </div>

      
        
        3379
        +

      
        
        3380
        +        <div class="htc lmt-20 lmb-20">

      
        
        3381
        +            <div class="a a-hook lm-auto"></div>

      
        
        3382
        +        </div>

      
        
        3383
        +            </div>

      
        
        3384
        +</amp-sidebar>

      
        
        3385
        +

      
        
        3386
        +<amp-state id="stateSidebarDict">

      
        
        3387
        +    <script type="application/json">

      
        
        3388
        +        {

      
        
        3389
        +        "open": false,

      
        
        3390
        +        "recent": true,

      
        
        3391
        +        "def": true,

      
        
        3392
        +        "gram": true,

      
        
        3393
        +        "trans": true,

      
        
        3394
        +        "pron": true,

      
        
        3395
        +        "plus": true

      
        
        3396
        +        }

      
        
        3397
        +    </script>

      
        
        3398
        +</amp-state>

      
        
        3399
        +

      
        
        3400
        +<amp-sidebar id="sidebarDict" layout="nodisplay" side="right" class="bw cm-f" on="sidebarOpen:AMP.setState({ stateSidebarDict: { open: true } })">

      
        
        3401
        +

      
        
        3402
        +    <div class="pr cm-fc cms lm-auto">

      
        
        3403
        +        <span class="pa pt0 pr0 lmt-5 lmr-15 lpt-15 hp fon"

      
        
        3404
        +                on="tap:sidebarDict.close" role="button" aria-label="Close"

      
        
        3405
        +                title='Close' tabindex="0">

      
        
        3406
        +            <i class="i i-close ibd" aria-hidden="true"></i>

      
        
        3407
        +        </span>

      
        
        3408
        +

      
        
        3409
        +        <div class="han tc-bd fs14 lpt-5">

      
        
        3410
        +

      
        
        3411
        +            <div class="fs18 lp-5 lpt-20 lpb-15 lpl-15">

      
        
        3412
        +                Choose a dictionary            </div>

      
        
        3413
        +

      
        
        3414
        +            <ul class="hul-u hul-un hul-u0 lmb-0">

      
        
        3415
        +                <li class="lbt lb-cm">

      
        
        3416
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        3417
        +                            on="tap: AMP.setState({ stateSidebarDict: { recent: ! stateSidebarDict.recent } })">

      
        
        3418
        +                        <span class="pr hdb">

      
        
        3419
        +                            <span class="fs12 tcu">Recent and Recommended</span>

      
        
        3420
        +                            <i class="i i-minus ibd pa pr0 lpt-2" [class]="stateSidebarDict.recent ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'" aria-hidden="true"></i>

      
        
        3421
        +                        </span> 

      
        
        3422
        +                    </span>

      
        
        3423
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.recent ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        3424
        +                        <div class="pr tc-d fs16 lmb-20">

      
        
        3425
        +                            <div amp-access="1=1">

      
        
        3426
        +                                <template amp-access-template type="amp-mustache">

      
        
        3427
        +                                    {{#preferredDictionaries}}

      
        
        3428
        +                                        <span class="hp hdb lmb-5 hp"

      
        
        3429
        +                                            on="tap:AMP.setState({ stateSearch: { dataset: '{{dataCode}}', dataset_text: '{{name}}', dataset_search: 'Search {{name}}', isbilang: false} }), sidebarDict.close, searchword.focus"

      
        
        3430
        +                                            role="button" aria-label="Set dictionary search to {{name}}" tabindex="0">

      
        
        3431
        +                                            {{name}}

      
        
        3432
        +                                        </span>

      
        
        3433
        +                                    {{/preferredDictionaries}}

      
        
        3434
        +                                </template>

      
        
        3435
        +                            </div>

      
        
        3436
        +                            <div class="pa p0 bw" [class]="stateSidebarDict.open ? 'hdn' : 'pa p0 bw'">

      
        
        3437
        +                                <span class="pa p0 bload"></span>

      
        
        3438
        +                            </div>

      
        
        3439
        +                        </div>

      
        
        3440
        +                    </div>

      
        
        3441
        +                </li>

      
        
        3442
        +

      
        
        3443
        +                                                <li class="lbt lb-cm">

      
        
        3444
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        3445
        +                            on="tap: AMP.setState({ stateSidebarDict: { def: ! stateSidebarDict.def } })">

      
        
        3446
        +                        <span class="pr hdb">

      
        
        3447
        +                            <span class="fs12 tcu">Definitions</span>

      
        
        3448
        +                            <i aria-hidden="true" class="i i-minus ibd pa pr0 lpt-2"

      
        
        3449
        +                                [class]="stateSidebarDict.def ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'">

      
        
        3450
        +                            </i>

      
        
        3451
        +                        </span> 

      
        
        3452
        +                    </span>

      
        
        3453
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.def ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        3454
        +                        <div class="tc-bl lmb-5 lmt--3 break">

      
        
        3455
        +                            Clear explanations of natural written and spoken English                        </div>

      
        
        3456
        +                        <div class="hul-u tc-d fs16 hlh1_5 lmb-20">

      
        
        3457
        +                                                        <span data-dictCode="english" class="hp hdb hp"

      
        
        3458
        +                                    on="tap:AMP.setState({ stateSearch: { dataset: 'english', dataset_text: 'English', dataset_search: 'Search English', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3459
        +                                    role="button" aria-label="Set dictionary search to English" tabindex="0"

      
        
        3460
        +                                    title="English">English</span>

      
        
        3461
        +                                                        <span data-dictCode="learner-english" class="hp hdb hp"

      
        
        3462
        +                                    on="tap:AMP.setState({ stateSearch: { dataset: 'learner-english', dataset_text: 'Learner&rsquo;s Dictionary', dataset_search: 'Search Learner&rsquo;s Dictionary', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3463
        +                                    role="button" aria-label="Set dictionary search to Learner&rsquo;s Dictionary" tabindex="0"

      
        
        3464
        +                                    title="Learner&rsquo;s Dictionary">Learner&rsquo;s Dictionary</span>

      
        
        3465
        +                                                        <span data-dictCode="essential-british-english" class="hp hdb hp"

      
        
        3466
        +                                    on="tap:AMP.setState({ stateSearch: { dataset: 'essential-british-english', dataset_text: 'Essential British English', dataset_search: 'Search Essential British English', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3467
        +                                    role="button" aria-label="Set dictionary search to Essential British English" tabindex="0"

      
        
        3468
        +                                    title="Essential British English">Essential British English</span>

      
        
        3469
        +                                                        <span data-dictCode="essential-american-english" class="hp hdb hp"

      
        
        3470
        +                                    on="tap:AMP.setState({ stateSearch: { dataset: 'essential-american-english', dataset_text: 'Essential American English', dataset_search: 'Search Essential American English', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3471
        +                                    role="button" aria-label="Set dictionary search to Essential American English" tabindex="0"

      
        
        3472
        +                                    title="Essential American English">Essential American English</span>

      
        
        3473
        +                                                </div>

      
        
        3474
        +                    </div>

      
        
        3475
        +                </li>

      
        
        3476
        +                

      
        
        3477
        +                                                <li class="lbt lb-cm">

      
        
        3478
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        3479
        +                            on="tap: AMP.setState({ stateSidebarDict: { gram: ! stateSidebarDict.gram } })">

      
        
        3480
        +                        <span class="pr hdb">

      
        
        3481
        +                            <span class="fs12 tcu">Grammar and thesaurus</span>

      
        
        3482
        +                            <i aria-hidden="true" class="i i-minus ibd pa pr0 lpt-2"

      
        
        3483
        +                                [class]="stateSidebarDict.gram ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'">

      
        
        3484
        +                            </i>

      
        
        3485
        +                        </span> 

      
        
        3486
        +                    </span>

      
        
        3487
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.gram ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        3488
        +                        <div class="tc-bl lmb-5 lmt--3 break">

      
        
        3489
        +                            Usage explanations of natural written and spoken English                        </div>

      
        
        3490
        +                        <div class="hul-u tc-d fs16 hlh1_5 lmb-20">

      
        
        3491
        +                                                    <span data-dictCode="british-grammar" class="hp hdb"

      
        
        3492
        +                                on="tap:AMP.setState({ stateSearch: { dataset: 'british-grammar', dataset_text: 'Grammar', dataset_search: 'Search Grammar', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3493
        +                                role="button" aria-label="Set dictionary search to Grammar" tabindex="0"

      
        
        3494
        +                                title="Grammar">Grammar</span>

      
        
        3495
        +                                                    <!-- need to rework this part when we have the spec for the thesaurus dataset selector -->

      
        
        3496
        +                                                        <span data-dictCode="thesaurus" class="hp"

      
        
        3497
        +                                on="tap:AMP.setState({ stateSearch: { dataset: 'thesaurus', dataset_text: 'Thesaurus', dataset_search: 'Search Thesaurus', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3498
        +                                role="button" aria-label="Set dictionary search to Thesaurus" tabindex="0"

      
        
        3499
        +                                title="Thesaurus">Thesaurus</span>

      
        
        3500
        +                        </div>

      
        
        3501
        +                    </div>

      
        
        3502
        +                </li>

      
        
        3503
        +                

      
        
        3504
        +                <li class="lbt lb-cm">

      
        
        3505
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        3506
        +                            on="tap: AMP.setState({ stateSidebarDict: { pron: ! stateSidebarDict.pron } })">

      
        
        3507
        +                        <span class="pr hdb">

      
        
        3508
        +                            <span class="fs12 tcu">Pronunciation</span>

      
        
        3509
        +                            <i aria-hidden="true" class="i i-minus ibd pa pr0 lpt-2"

      
        
        3510
        +                                [class]="stateSidebarDict.pron ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'">

      
        
        3511
        +                            </i>

      
        
        3512
        +                        </span> 

      
        
        3513
        +                    </span>

      
        
        3514
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.pron ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        3515
        +                        <div class="tc-bl lmb-5 lmt--3 break">

      
        
        3516
        +                            British and American pronunciations with audio                        </div>

      
        
        3517
        +                        <div class="hul-u tc-d fs16 hlh1_5 lmb-20">

      
        
        3518
        +                                                        <span data-dictCode="pronunciation" class="hp hdb lmb-5 hp"

      
        
        3519
        +                                on="tap:AMP.setState({ stateSearch: { dataset: 'pronunciation', dataset_text: 'English Pronunciation', dataset_search: 'Search English Pronunciation', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3520
        +                                role="button" aria-label="Set dictionary search to English Pronunciation" tabindex="0"

      
        
        3521
        +                                title="English Pronunciation">English Pronunciation</span>

      
        
        3522
        +                        </div>

      
        
        3523
        +                    </div>

      
        
        3524
        +                </li>

      
        
        3525
        +

      
        
        3526
        +                <li class="lbt lb-cm">

      
        
        3527
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        3528
        +                            on="tap: AMP.setState({ stateSidebarDict: { trans: ! stateSidebarDict.trans } })">

      
        
        3529
        +                        <span class="pr hdb">

      
        
        3530
        +                            <span class="fs12 tcu">Translation</span>

      
        
        3531
        +                            <i aria-hidden="true" class="i i-minus ibd pa pr0 lpt-2"

      
        
        3532
        +                                [class]="stateSidebarDict.trans ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'">

      
        
        3533
        +                            </i>

      
        
        3534
        +                        </span>

      
        
        3535
        +                    </span>

      
        
        3536
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.trans ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        3537
        +

      
        
        3538
        +                                                                            <amp-state id="stateSidebarDictBi">

      
        
        3539
        +                                <script type="application/json">

      
        
        3540
        +                                        {

      
        
        3541
        +                                                                                    "english_chinese_simplified": false,

      
        
        3542
        +                                                                                    "english_chinese_traditional": false,

      
        
        3543
        +                                                                                    "english_danish": false,

      
        
        3544
        +                                                                                    "english_dutch": false,

      
        
        3545
        +                                                                                    "english_french": false,

      
        
        3546
        +                                                                                    "english_german": false,

      
        
        3547
        +                                                                                    "english_indonesian": false,

      
        
        3548
        +                                                                                    "english_italian": false,

      
        
        3549
        +                                                                                    "english_japanese": false,

      
        
        3550
        +                                                                                    "english_norwegian": false,

      
        
        3551
        +                                                                                    "english_polish": false,

      
        
        3552
        +                                                                                    "english_portuguese": false,

      
        
        3553
        +                                                                                    "english_spanish": false,

      
        
        3554
        +                                                                                    "english_swedish": false,

      
        
        3555
        +                                                                                "erroneous_extra_item": false

      
        
        3556
        +                                        }

      
        
        3557
        +                                    </script>

      
        
        3558
        +                            </amp-state>

      
        
        3559
        +

      
        
        3560
        +                            <div class="tc-bl lmb-5 lmt--3 break">

      
        
        3561
        +                                Click on the arrows to change the translation direction.                            </div>

      
        
        3562
        +

      
        
        3563
        +                            <div class="tb lmt-10 lmb-5">Bilingual Dictionaries</div>

      
        
        3564
        +                            <ul class="hul-u tc-d fs16 lmb-15">

      
        
        3565
        +                                                            <li>

      
        
        3566
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        3567
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_chinese_simplified: ! stateSidebarDictBi.english_chinese_simplified }, stateSearch: { dataset: stateSidebarDictBi.english_chinese_simplified ? 'english-chinese-simplified' : 'chinese-simplified-english', dataset_text: stateSidebarDictBi.english_chinese_simplified ? 'English&ndash;Chinese (Simplified)' : 'Chinese (Simplified)&ndash;English', dataset_search: stateSidebarDictBi.english_chinese_simplified ? 'Search English&ndash;Chinese (Simplified)' : 'Search Chinese (Simplified)&ndash;English' } })"

      
        
        3568
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        3569
        +                                    </i>

      
        
        3570
        +                                    <span data-dictCode="english-chinese-simplified" class="hp"

      
        
        3571
        +                                        [class]="stateSidebarDictBi.english_chinese_simplified ? 'hdn' : 'hp'"

      
        
        3572
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-chinese-simplified', dataset_text: 'English&ndash;Chinese (Simplified)', dataset_search: 'Search English–Chinese (Simplified)', isbilang: true, datasetrev: 'chinese-simplified-english', datasetrev_text: 'Chinese (Simplified)&ndash;English', datasetrev_search: 'Search Chinese (Simplified)–English'} }),sidebarDict.close,searchword.focus"

      
        
        3573
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Chinese (Simplified) Dictionary"

      
        
        3574
        +                                        tabindex="0" title="Cambridge English-Chinese (Simplified) Dictionary">English&ndash;Chinese (Simplified)</span>

      
        
        3575
        +                                    <span data-dictCode="chinese-simplified-english" class="hdn"

      
        
        3576
        +                                        [class]="stateSidebarDictBi.english_chinese_simplified ? 'hp' : 'hdn'"

      
        
        3577
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'chinese-simplified-english', dataset_text: 'Chinese (Simplified)&ndash;English', dataset_search: 'Search Chinese (Simplified)–English', isbilang: true, datasetrev: 'english-chinese-simplified', datasetrev_text: 'English&ndash;Chinese (Simplified)', datasetrev_search: 'Search English–Chinese (Simplified)'} }),sidebarDict.close,searchword.focus"

      
        
        3578
        +                                        role="button" aria-label="Set dictionary search to Cambridge Chinese (Simplified)-English Dictionary"

      
        
        3579
        +                                        tabindex="0" title="Cambridge Chinese (Simplified)-English Dictionary">Chinese (Simplified)&ndash;English</span>

      
        
        3580
        +                                </li>

      
        
        3581
        +                                                            <li>

      
        
        3582
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        3583
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_chinese_traditional: ! stateSidebarDictBi.english_chinese_traditional }, stateSearch: { dataset: stateSidebarDictBi.english_chinese_traditional ? 'english-chinese-traditional' : 'chinese-traditional-english', dataset_text: stateSidebarDictBi.english_chinese_traditional ? 'English&ndash;Chinese (Traditional)' : 'Chinese (Traditional)&ndash;English', dataset_search: stateSidebarDictBi.english_chinese_traditional ? 'Search English&ndash;Chinese (Traditional)' : 'Search Chinese (Traditional)&ndash;English' } })"

      
        
        3584
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        3585
        +                                    </i>

      
        
        3586
        +                                    <span data-dictCode="english-chinese-traditional" class="hp"

      
        
        3587
        +                                        [class]="stateSidebarDictBi.english_chinese_traditional ? 'hdn' : 'hp'"

      
        
        3588
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-chinese-traditional', dataset_text: 'English&ndash;Chinese (Traditional)', dataset_search: 'Search English–Chinese (Traditional)', isbilang: true, datasetrev: 'chinese-traditional-english', datasetrev_text: 'Chinese (Traditional)&ndash;English', datasetrev_search: 'Search Chinese (Traditional)–English'} }),sidebarDict.close,searchword.focus"

      
        
        3589
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Chinese (Traditional) Dictionary"

      
        
        3590
        +                                        tabindex="0" title="Cambridge English-Chinese (Traditional) Dictionary">English&ndash;Chinese (Traditional)</span>

      
        
        3591
        +                                    <span data-dictCode="chinese-traditional-english" class="hdn"

      
        
        3592
        +                                        [class]="stateSidebarDictBi.english_chinese_traditional ? 'hp' : 'hdn'"

      
        
        3593
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'chinese-traditional-english', dataset_text: 'Chinese (Traditional)&ndash;English', dataset_search: 'Search Chinese (Traditional)–English', isbilang: true, datasetrev: 'english-chinese-traditional', datasetrev_text: 'English&ndash;Chinese (Traditional)', datasetrev_search: 'Search English–Chinese (Traditional)'} }),sidebarDict.close,searchword.focus"

      
        
        3594
        +                                        role="button" aria-label="Set dictionary search to Cambridge Chinese (Traditional)-English Dictionary"

      
        
        3595
        +                                        tabindex="0" title="Cambridge Chinese (Traditional)-English Dictionary">Chinese (Traditional)&ndash;English</span>

      
        
        3596
        +                                </li>

      
        
        3597
        +                                                            <li>

      
        
        3598
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        3599
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_danish: ! stateSidebarDictBi.english_danish }, stateSearch: { dataset: stateSidebarDictBi.english_danish ? 'english-danish' : 'danish-english', dataset_text: stateSidebarDictBi.english_danish ? 'English&ndash;Danish' : 'Danish&ndash;English', dataset_search: stateSidebarDictBi.english_danish ? 'Search English&ndash;Danish' : 'Search Danish&ndash;English' } })"

      
        
        3600
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        3601
        +                                    </i>

      
        
        3602
        +                                    <span data-dictCode="english-danish" class="hp"

      
        
        3603
        +                                        [class]="stateSidebarDictBi.english_danish ? 'hdn' : 'hp'"

      
        
        3604
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-danish', dataset_text: 'English&ndash;Danish', dataset_search: 'Search English–Danish', isbilang: true, datasetrev: 'danish-english', datasetrev_text: 'Danish&ndash;English', datasetrev_search: 'Search Danish–English'} }),sidebarDict.close,searchword.focus"

      
        
        3605
        +                                        role="button" aria-label="Set dictionary search to English-Danish Dictionary"

      
        
        3606
        +                                        tabindex="0" title="English-Danish Dictionary">English&ndash;Danish</span>

      
        
        3607
        +                                    <span data-dictCode="danish-english" class="hdn"

      
        
        3608
        +                                        [class]="stateSidebarDictBi.english_danish ? 'hp' : 'hdn'"

      
        
        3609
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'danish-english', dataset_text: 'Danish&ndash;English', dataset_search: 'Search Danish–English', isbilang: true, datasetrev: 'english-danish', datasetrev_text: 'English&ndash;Danish', datasetrev_search: 'Search English–Danish'} }),sidebarDict.close,searchword.focus"

      
        
        3610
        +                                        role="button" aria-label="Set dictionary search to Danish-English Dictionary"

      
        
        3611
        +                                        tabindex="0" title="Danish-English Dictionary">Danish&ndash;English</span>

      
        
        3612
        +                                </li>

      
        
        3613
        +                                                            <li>

      
        
        3614
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        3615
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_dutch: ! stateSidebarDictBi.english_dutch }, stateSearch: { dataset: stateSidebarDictBi.english_dutch ? 'english-dutch' : 'dutch-english', dataset_text: stateSidebarDictBi.english_dutch ? 'English&ndash;Dutch' : 'Dutch&ndash;English', dataset_search: stateSidebarDictBi.english_dutch ? 'Search English&ndash;Dutch' : 'Search Dutch&ndash;English' } })"

      
        
        3616
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        3617
        +                                    </i>

      
        
        3618
        +                                    <span data-dictCode="english-dutch" class="hp"

      
        
        3619
        +                                        [class]="stateSidebarDictBi.english_dutch ? 'hdn' : 'hp'"

      
        
        3620
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-dutch', dataset_text: 'English&ndash;Dutch', dataset_search: 'Search English–Dutch', isbilang: true, datasetrev: 'dutch-english', datasetrev_text: 'Dutch&ndash;English', datasetrev_search: 'Search Dutch–English'} }),sidebarDict.close,searchword.focus"

      
        
        3621
        +                                        role="button" aria-label="Set dictionary search to English-Dutch Dictionary"

      
        
        3622
        +                                        tabindex="0" title="English-Dutch Dictionary">English&ndash;Dutch</span>

      
        
        3623
        +                                    <span data-dictCode="dutch-english" class="hdn"

      
        
        3624
        +                                        [class]="stateSidebarDictBi.english_dutch ? 'hp' : 'hdn'"

      
        
        3625
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'dutch-english', dataset_text: 'Dutch&ndash;English', dataset_search: 'Search Dutch–English', isbilang: true, datasetrev: 'english-dutch', datasetrev_text: 'English&ndash;Dutch', datasetrev_search: 'Search English–Dutch'} }),sidebarDict.close,searchword.focus"

      
        
        3626
        +                                        role="button" aria-label="Set dictionary search to Dutch-English Dictionary"

      
        
        3627
        +                                        tabindex="0" title="Dutch-English Dictionary">Dutch&ndash;English</span>

      
        
        3628
        +                                </li>

      
        
        3629
        +                                                            <li>

      
        
        3630
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        3631
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_french: ! stateSidebarDictBi.english_french }, stateSearch: { dataset: stateSidebarDictBi.english_french ? 'english-french' : 'french-english', dataset_text: stateSidebarDictBi.english_french ? 'English&ndash;French' : 'French&ndash;English', dataset_search: stateSidebarDictBi.english_french ? 'Search English&ndash;French' : 'Search French&ndash;English' } })"

      
        
        3632
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        3633
        +                                    </i>

      
        
        3634
        +                                    <span data-dictCode="english-french" class="hp"

      
        
        3635
        +                                        [class]="stateSidebarDictBi.english_french ? 'hdn' : 'hp'"

      
        
        3636
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-french', dataset_text: 'English&ndash;French', dataset_search: 'Search English–French', isbilang: true, datasetrev: 'french-english', datasetrev_text: 'French&ndash;English', datasetrev_search: 'Search French–English'} }),sidebarDict.close,searchword.focus"

      
        
        3637
        +                                        role="button" aria-label="Set dictionary search to English-French Dictionary"

      
        
        3638
        +                                        tabindex="0" title="English-French Dictionary">English&ndash;French</span>

      
        
        3639
        +                                    <span data-dictCode="french-english" class="hdn"

      
        
        3640
        +                                        [class]="stateSidebarDictBi.english_french ? 'hp' : 'hdn'"

      
        
        3641
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'french-english', dataset_text: 'French&ndash;English', dataset_search: 'Search French–English', isbilang: true, datasetrev: 'english-french', datasetrev_text: 'English&ndash;French', datasetrev_search: 'Search English–French'} }),sidebarDict.close,searchword.focus"

      
        
        3642
        +                                        role="button" aria-label="Set dictionary search to French-English Dictionary"

      
        
        3643
        +                                        tabindex="0" title="French-English Dictionary">French&ndash;English</span>

      
        
        3644
        +                                </li>

      
        
        3645
        +                                                            <li>

      
        
        3646
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        3647
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_german: ! stateSidebarDictBi.english_german }, stateSearch: { dataset: stateSidebarDictBi.english_german ? 'english-german' : 'german-english', dataset_text: stateSidebarDictBi.english_german ? 'English&ndash;German' : 'German&ndash;English', dataset_search: stateSidebarDictBi.english_german ? 'Search English&ndash;German' : 'Search German&ndash;English' } })"

      
        
        3648
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        3649
        +                                    </i>

      
        
        3650
        +                                    <span data-dictCode="english-german" class="hp"

      
        
        3651
        +                                        [class]="stateSidebarDictBi.english_german ? 'hdn' : 'hp'"

      
        
        3652
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-german', dataset_text: 'English&ndash;German', dataset_search: 'Search English–German', isbilang: true, datasetrev: 'german-english', datasetrev_text: 'German&ndash;English', datasetrev_search: 'Search German–English'} }),sidebarDict.close,searchword.focus"

      
        
        3653
        +                                        role="button" aria-label="Set dictionary search to English-German Dictionary"

      
        
        3654
        +                                        tabindex="0" title="English-German Dictionary">English&ndash;German</span>

      
        
        3655
        +                                    <span data-dictCode="german-english" class="hdn"

      
        
        3656
        +                                        [class]="stateSidebarDictBi.english_german ? 'hp' : 'hdn'"

      
        
        3657
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'german-english', dataset_text: 'German&ndash;English', dataset_search: 'Search German–English', isbilang: true, datasetrev: 'english-german', datasetrev_text: 'English&ndash;German', datasetrev_search: 'Search English–German'} }),sidebarDict.close,searchword.focus"

      
        
        3658
        +                                        role="button" aria-label="Set dictionary search to German-English Dictionary"

      
        
        3659
        +                                        tabindex="0" title="German-English Dictionary">German&ndash;English</span>

      
        
        3660
        +                                </li>

      
        
        3661
        +                                                            <li>

      
        
        3662
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        3663
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_indonesian: ! stateSidebarDictBi.english_indonesian }, stateSearch: { dataset: stateSidebarDictBi.english_indonesian ? 'english-indonesian' : 'indonesian-english', dataset_text: stateSidebarDictBi.english_indonesian ? 'English&ndash;Indonesian' : 'Indonesian&ndash;English', dataset_search: stateSidebarDictBi.english_indonesian ? 'Search English&ndash;Indonesian' : 'Search Indonesian&ndash;English' } })"

      
        
        3664
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        3665
        +                                    </i>

      
        
        3666
        +                                    <span data-dictCode="english-indonesian" class="hp"

      
        
        3667
        +                                        [class]="stateSidebarDictBi.english_indonesian ? 'hdn' : 'hp'"

      
        
        3668
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-indonesian', dataset_text: 'English&ndash;Indonesian', dataset_search: 'Search English–Indonesian', isbilang: true, datasetrev: 'indonesian-english', datasetrev_text: 'Indonesian&ndash;English', datasetrev_search: 'Search Indonesian–English'} }),sidebarDict.close,searchword.focus"

      
        
        3669
        +                                        role="button" aria-label="Set dictionary search to English-Indonesian Dictionary"

      
        
        3670
        +                                        tabindex="0" title="English-Indonesian Dictionary">English&ndash;Indonesian</span>

      
        
        3671
        +                                    <span data-dictCode="indonesian-english" class="hdn"

      
        
        3672
        +                                        [class]="stateSidebarDictBi.english_indonesian ? 'hp' : 'hdn'"

      
        
        3673
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'indonesian-english', dataset_text: 'Indonesian&ndash;English', dataset_search: 'Search Indonesian–English', isbilang: true, datasetrev: 'english-indonesian', datasetrev_text: 'English&ndash;Indonesian', datasetrev_search: 'Search English–Indonesian'} }),sidebarDict.close,searchword.focus"

      
        
        3674
        +                                        role="button" aria-label="Set dictionary search to Indonesian-English Dictionary"

      
        
        3675
        +                                        tabindex="0" title="Indonesian-English Dictionary">Indonesian&ndash;English</span>

      
        
        3676
        +                                </li>

      
        
        3677
        +                                                            <li>

      
        
        3678
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        3679
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_italian: ! stateSidebarDictBi.english_italian }, stateSearch: { dataset: stateSidebarDictBi.english_italian ? 'english-italian' : 'italian-english', dataset_text: stateSidebarDictBi.english_italian ? 'English&ndash;Italian' : 'Italian&ndash;English', dataset_search: stateSidebarDictBi.english_italian ? 'Search English&ndash;Italian' : 'Search Italian&ndash;English' } })"

      
        
        3680
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        3681
        +                                    </i>

      
        
        3682
        +                                    <span data-dictCode="english-italian" class="hp"

      
        
        3683
        +                                        [class]="stateSidebarDictBi.english_italian ? 'hdn' : 'hp'"

      
        
        3684
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-italian', dataset_text: 'English&ndash;Italian', dataset_search: 'Search English–Italian', isbilang: true, datasetrev: 'italian-english', datasetrev_text: 'Italian&ndash;English', datasetrev_search: 'Search Italian–English'} }),sidebarDict.close,searchword.focus"

      
        
        3685
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Italian Dictionary"

      
        
        3686
        +                                        tabindex="0" title="Cambridge English-Italian Dictionary">English&ndash;Italian</span>

      
        
        3687
        +                                    <span data-dictCode="italian-english" class="hdn"

      
        
        3688
        +                                        [class]="stateSidebarDictBi.english_italian ? 'hp' : 'hdn'"

      
        
        3689
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'italian-english', dataset_text: 'Italian&ndash;English', dataset_search: 'Search Italian–English', isbilang: true, datasetrev: 'english-italian', datasetrev_text: 'English&ndash;Italian', datasetrev_search: 'Search English–Italian'} }),sidebarDict.close,searchword.focus"

      
        
        3690
        +                                        role="button" aria-label="Set dictionary search to Italian-English Dictionary"

      
        
        3691
        +                                        tabindex="0" title="Italian-English Dictionary">Italian&ndash;English</span>

      
        
        3692
        +                                </li>

      
        
        3693
        +                                                            <li>

      
        
        3694
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        3695
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_japanese: ! stateSidebarDictBi.english_japanese }, stateSearch: { dataset: stateSidebarDictBi.english_japanese ? 'english-japanese' : 'japanese-english', dataset_text: stateSidebarDictBi.english_japanese ? 'English&ndash;Japanese' : 'Japanese&ndash;English', dataset_search: stateSidebarDictBi.english_japanese ? 'Search English&ndash;Japanese' : 'Search Japanese&ndash;English' } })"

      
        
        3696
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        3697
        +                                    </i>

      
        
        3698
        +                                    <span data-dictCode="english-japanese" class="hp"

      
        
        3699
        +                                        [class]="stateSidebarDictBi.english_japanese ? 'hdn' : 'hp'"

      
        
        3700
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-japanese', dataset_text: 'English&ndash;Japanese', dataset_search: 'Search English–Japanese', isbilang: true, datasetrev: 'japanese-english', datasetrev_text: 'Japanese&ndash;English', datasetrev_search: 'Search Japanese–English'} }),sidebarDict.close,searchword.focus"

      
        
        3701
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Japanese Dictionary"

      
        
        3702
        +                                        tabindex="0" title="Cambridge English-Japanese Dictionary">English&ndash;Japanese</span>

      
        
        3703
        +                                    <span data-dictCode="japanese-english" class="hdn"

      
        
        3704
        +                                        [class]="stateSidebarDictBi.english_japanese ? 'hp' : 'hdn'"

      
        
        3705
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'japanese-english', dataset_text: 'Japanese&ndash;English', dataset_search: 'Search Japanese–English', isbilang: true, datasetrev: 'english-japanese', datasetrev_text: 'English&ndash;Japanese', datasetrev_search: 'Search English–Japanese'} }),sidebarDict.close,searchword.focus"

      
        
        3706
        +                                        role="button" aria-label="Set dictionary search to Japanese-English Dictionary"

      
        
        3707
        +                                        tabindex="0" title="Japanese-English Dictionary">Japanese&ndash;English</span>

      
        
        3708
        +                                </li>

      
        
        3709
        +                                                            <li>

      
        
        3710
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        3711
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_norwegian: ! stateSidebarDictBi.english_norwegian }, stateSearch: { dataset: stateSidebarDictBi.english_norwegian ? 'english-norwegian' : 'norwegian-english', dataset_text: stateSidebarDictBi.english_norwegian ? 'English&ndash;Norwegian' : 'Norwegian&ndash;English', dataset_search: stateSidebarDictBi.english_norwegian ? 'Search English&ndash;Norwegian' : 'Search Norwegian&ndash;English' } })"

      
        
        3712
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        3713
        +                                    </i>

      
        
        3714
        +                                    <span data-dictCode="english-norwegian" class="hp"

      
        
        3715
        +                                        [class]="stateSidebarDictBi.english_norwegian ? 'hdn' : 'hp'"

      
        
        3716
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-norwegian', dataset_text: 'English&ndash;Norwegian', dataset_search: 'Search English–Norwegian', isbilang: true, datasetrev: 'norwegian-english', datasetrev_text: 'Norwegian&ndash;English', datasetrev_search: 'Search Norwegian–English'} }),sidebarDict.close,searchword.focus"

      
        
        3717
        +                                        role="button" aria-label="Set dictionary search to English-Norwegian Dictionary"

      
        
        3718
        +                                        tabindex="0" title="English-Norwegian Dictionary">English&ndash;Norwegian</span>

      
        
        3719
        +                                    <span data-dictCode="norwegian-english" class="hdn"

      
        
        3720
        +                                        [class]="stateSidebarDictBi.english_norwegian ? 'hp' : 'hdn'"

      
        
        3721
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'norwegian-english', dataset_text: 'Norwegian&ndash;English', dataset_search: 'Search Norwegian–English', isbilang: true, datasetrev: 'english-norwegian', datasetrev_text: 'English&ndash;Norwegian', datasetrev_search: 'Search English–Norwegian'} }),sidebarDict.close,searchword.focus"

      
        
        3722
        +                                        role="button" aria-label="Set dictionary search to Norwegian-English Dictionary"

      
        
        3723
        +                                        tabindex="0" title="Norwegian-English Dictionary">Norwegian&ndash;English</span>

      
        
        3724
        +                                </li>

      
        
        3725
        +                                                            <li>

      
        
        3726
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        3727
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_polish: ! stateSidebarDictBi.english_polish }, stateSearch: { dataset: stateSidebarDictBi.english_polish ? 'english-polish' : 'polish-english', dataset_text: stateSidebarDictBi.english_polish ? 'English&ndash;Polish' : 'Polish&ndash;English', dataset_search: stateSidebarDictBi.english_polish ? 'Search English&ndash;Polish' : 'Search Polish&ndash;English' } })"

      
        
        3728
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        3729
        +                                    </i>

      
        
        3730
        +                                    <span data-dictCode="english-polish" class="hp"

      
        
        3731
        +                                        [class]="stateSidebarDictBi.english_polish ? 'hdn' : 'hp'"

      
        
        3732
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-polish', dataset_text: 'English&ndash;Polish', dataset_search: 'Search English–Polish', isbilang: true, datasetrev: 'polish-english', datasetrev_text: 'Polish&ndash;English', datasetrev_search: 'Search Polish–English'} }),sidebarDict.close,searchword.focus"

      
        
        3733
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Polish Dictionary"

      
        
        3734
        +                                        tabindex="0" title="Cambridge English-Polish Dictionary">English&ndash;Polish</span>

      
        
        3735
        +                                    <span data-dictCode="polish-english" class="hdn"

      
        
        3736
        +                                        [class]="stateSidebarDictBi.english_polish ? 'hp' : 'hdn'"

      
        
        3737
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'polish-english', dataset_text: 'Polish&ndash;English', dataset_search: 'Search Polish–English', isbilang: true, datasetrev: 'english-polish', datasetrev_text: 'English&ndash;Polish', datasetrev_search: 'Search English–Polish'} }),sidebarDict.close,searchword.focus"

      
        
        3738
        +                                        role="button" aria-label="Set dictionary search to Polish-English Dictionary"

      
        
        3739
        +                                        tabindex="0" title="Polish-English Dictionary">Polish&ndash;English</span>

      
        
        3740
        +                                </li>

      
        
        3741
        +                                                            <li>

      
        
        3742
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        3743
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_portuguese: ! stateSidebarDictBi.english_portuguese }, stateSearch: { dataset: stateSidebarDictBi.english_portuguese ? 'english-portuguese' : 'portuguese-english', dataset_text: stateSidebarDictBi.english_portuguese ? 'English&ndash;Portuguese' : 'Portuguese&ndash;English', dataset_search: stateSidebarDictBi.english_portuguese ? 'Search English&ndash;Portuguese' : 'Search Portuguese&ndash;English' } })"

      
        
        3744
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        3745
        +                                    </i>

      
        
        3746
        +                                    <span data-dictCode="english-portuguese" class="hp"

      
        
        3747
        +                                        [class]="stateSidebarDictBi.english_portuguese ? 'hdn' : 'hp'"

      
        
        3748
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-portuguese', dataset_text: 'English&ndash;Portuguese', dataset_search: 'Search English–Portuguese', isbilang: true, datasetrev: 'portuguese-english', datasetrev_text: 'Portuguese&ndash;English', datasetrev_search: 'Search Portuguese–English'} }),sidebarDict.close,searchword.focus"

      
        
        3749
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Portuguese Dictionary"

      
        
        3750
        +                                        tabindex="0" title="Cambridge English-Portuguese Dictionary">English&ndash;Portuguese</span>

      
        
        3751
        +                                    <span data-dictCode="portuguese-english" class="hdn"

      
        
        3752
        +                                        [class]="stateSidebarDictBi.english_portuguese ? 'hp' : 'hdn'"

      
        
        3753
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'portuguese-english', dataset_text: 'Portuguese&ndash;English', dataset_search: 'Search Portuguese–English', isbilang: true, datasetrev: 'english-portuguese', datasetrev_text: 'English&ndash;Portuguese', datasetrev_search: 'Search English–Portuguese'} }),sidebarDict.close,searchword.focus"

      
        
        3754
        +                                        role="button" aria-label="Set dictionary search to Portuguese-English Dictionary"

      
        
        3755
        +                                        tabindex="0" title="Portuguese-English Dictionary">Portuguese&ndash;English</span>

      
        
        3756
        +                                </li>

      
        
        3757
        +                                                            <li>

      
        
        3758
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        3759
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_spanish: ! stateSidebarDictBi.english_spanish }, stateSearch: { dataset: stateSidebarDictBi.english_spanish ? 'english-spanish' : 'spanish-english', dataset_text: stateSidebarDictBi.english_spanish ? 'English&ndash;Spanish' : 'Spanish&ndash;English', dataset_search: stateSidebarDictBi.english_spanish ? 'Search English&ndash;Spanish' : 'Search Spanish&ndash;English' } })"

      
        
        3760
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        3761
        +                                    </i>

      
        
        3762
        +                                    <span data-dictCode="english-spanish" class="hp"

      
        
        3763
        +                                        [class]="stateSidebarDictBi.english_spanish ? 'hdn' : 'hp'"

      
        
        3764
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-spanish', dataset_text: 'English&ndash;Spanish', dataset_search: 'Search English–Spanish', isbilang: true, datasetrev: 'spanish-english', datasetrev_text: 'Spanish&ndash;English', datasetrev_search: 'Search Spanish–English'} }),sidebarDict.close,searchword.focus"

      
        
        3765
        +                                        role="button" aria-label="Set dictionary search to English-Spanish Dictionary"

      
        
        3766
        +                                        tabindex="0" title="English-Spanish Dictionary">English&ndash;Spanish</span>

      
        
        3767
        +                                    <span data-dictCode="spanish-english" class="hdn"

      
        
        3768
        +                                        [class]="stateSidebarDictBi.english_spanish ? 'hp' : 'hdn'"

      
        
        3769
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'spanish-english', dataset_text: 'Spanish&ndash;English', dataset_search: 'Search Spanish–English', isbilang: true, datasetrev: 'english-spanish', datasetrev_text: 'English&ndash;Spanish', datasetrev_search: 'Search English–Spanish'} }),sidebarDict.close,searchword.focus"

      
        
        3770
        +                                        role="button" aria-label="Set dictionary search to Diccionario Espa&ntilde;ol-ingl&eacute;s"

      
        
        3771
        +                                        tabindex="0" title="Diccionario Espa&ntilde;ol-ingl&eacute;s">Spanish&ndash;English</span>

      
        
        3772
        +                                </li>

      
        
        3773
        +                                                            <li>

      
        
        3774
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        3775
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_swedish: ! stateSidebarDictBi.english_swedish }, stateSearch: { dataset: stateSidebarDictBi.english_swedish ? 'english-swedish' : 'swedish-english', dataset_text: stateSidebarDictBi.english_swedish ? 'English&ndash;Swedish' : 'Swedish&ndash;English', dataset_search: stateSidebarDictBi.english_swedish ? 'Search English&ndash;Swedish' : 'Search Swedish&ndash;English' } })"

      
        
        3776
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        3777
        +                                    </i>

      
        
        3778
        +                                    <span data-dictCode="english-swedish" class="hp"

      
        
        3779
        +                                        [class]="stateSidebarDictBi.english_swedish ? 'hdn' : 'hp'"

      
        
        3780
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-swedish', dataset_text: 'English&ndash;Swedish', dataset_search: 'Search English–Swedish', isbilang: true, datasetrev: 'swedish-english', datasetrev_text: 'Swedish&ndash;English', datasetrev_search: 'Search Swedish–English'} }),sidebarDict.close,searchword.focus"

      
        
        3781
        +                                        role="button" aria-label="Set dictionary search to English-Swedish Dictionary"

      
        
        3782
        +                                        tabindex="0" title="English-Swedish Dictionary">English&ndash;Swedish</span>

      
        
        3783
        +                                    <span data-dictCode="swedish-english" class="hdn"

      
        
        3784
        +                                        [class]="stateSidebarDictBi.english_swedish ? 'hp' : 'hdn'"

      
        
        3785
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'swedish-english', dataset_text: 'Swedish&ndash;English', dataset_search: 'Search Swedish–English', isbilang: true, datasetrev: 'english-swedish', datasetrev_text: 'English&ndash;Swedish', datasetrev_search: 'Search English–Swedish'} }),sidebarDict.close,searchword.focus"

      
        
        3786
        +                                        role="button" aria-label="Set dictionary search to Swedish-English Dictionary"

      
        
        3787
        +                                        tabindex="0" title="Swedish-English Dictionary">Swedish&ndash;English</span>

      
        
        3788
        +                                </li>

      
        
        3789
        +                                                        </ul>

      
        
        3790
        +                        

      
        
        3791
        +                                                                            <div class="tb lmb-5">Semi-bilingual Dictionaries</div>

      
        
        3792
        +                            <div class="hul-u tc-d fs16 hlh1_5 lmb-20">

      
        
        3793
        +                                                            <span data-dictCode="english-arabic" class="hp hdb"

      
        
        3794
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-arabic', dataset_text: 'English&ndash;Arabic', dataset_search: 'Search English&ndash;Arabic', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3795
        +                                    role="button" aria-label="Set dictionary search to Cambridge English-Arabic Dictionary"

      
        
        3796
        +                                    tabindex="0" title="Cambridge English-Arabic Dictionary">English&ndash;Arabic</span>

      
        
        3797
        +                                                            <span data-dictCode="english-bengali" class="hp hdb"

      
        
        3798
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-bengali', dataset_text: 'English&ndash;Bengali', dataset_search: 'Search English&ndash;Bengali', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3799
        +                                    role="button" aria-label="Set dictionary search to Cambridge English-Bengali Dictionary"

      
        
        3800
        +                                    tabindex="0" title="Cambridge English-Bengali Dictionary">English&ndash;Bengali</span>

      
        
        3801
        +                                                            <span data-dictCode="english-catalan" class="hp hdb"

      
        
        3802
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-catalan', dataset_text: 'English&ndash;Catalan', dataset_search: 'Search English&ndash;Catalan', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3803
        +                                    role="button" aria-label="Set dictionary search to Cambridge English-Catalan Dictionary"

      
        
        3804
        +                                    tabindex="0" title="Cambridge English-Catalan Dictionary">English&ndash;Catalan</span>

      
        
        3805
        +                                                            <span data-dictCode="english-czech" class="hp hdb"

      
        
        3806
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-czech', dataset_text: 'English&ndash;Czech', dataset_search: 'Search English&ndash;Czech', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3807
        +                                    role="button" aria-label="Set dictionary search to English-Czech Dictionary"

      
        
        3808
        +                                    tabindex="0" title="English-Czech Dictionary">English&ndash;Czech</span>

      
        
        3809
        +                                                            <span data-dictCode="english-gujarati" class="hp hdb"

      
        
        3810
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-gujarati', dataset_text: 'English&ndash;Gujarati', dataset_search: 'Search English&ndash;Gujarati', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3811
        +                                    role="button" aria-label="Set dictionary search to English-Gujarati Dictionary"

      
        
        3812
        +                                    tabindex="0" title="English-Gujarati Dictionary">English&ndash;Gujarati</span>

      
        
        3813
        +                                                            <span data-dictCode="english-hindi" class="hp hdb"

      
        
        3814
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-hindi', dataset_text: 'English&ndash;Hindi', dataset_search: 'Search English&ndash;Hindi', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3815
        +                                    role="button" aria-label="Set dictionary search to English-Hindi Dictionary"

      
        
        3816
        +                                    tabindex="0" title="English-Hindi Dictionary">English&ndash;Hindi</span>

      
        
        3817
        +                                                            <span data-dictCode="english-korean" class="hp hdb"

      
        
        3818
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-korean', dataset_text: 'English&ndash;Korean', dataset_search: 'Search English&ndash;Korean', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3819
        +                                    role="button" aria-label="Set dictionary search to Cambridge English-Korean Dictionary"

      
        
        3820
        +                                    tabindex="0" title="Cambridge English-Korean Dictionary">English&ndash;Korean</span>

      
        
        3821
        +                                                            <span data-dictCode="english-malaysian" class="hp hdb"

      
        
        3822
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-malaysian', dataset_text: 'English&ndash;Malay', dataset_search: 'Search English&ndash;Malay', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3823
        +                                    role="button" aria-label="Set dictionary search to English-Malay Dictionary"

      
        
        3824
        +                                    tabindex="0" title="English-Malay Dictionary">English&ndash;Malay</span>

      
        
        3825
        +                                                            <span data-dictCode="english-marathi" class="hp hdb"

      
        
        3826
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-marathi', dataset_text: 'English&ndash;Marathi', dataset_search: 'Search English&ndash;Marathi', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3827
        +                                    role="button" aria-label="Set dictionary search to English-Marathi Dictionary"

      
        
        3828
        +                                    tabindex="0" title="English-Marathi Dictionary">English&ndash;Marathi</span>

      
        
        3829
        +                                                            <span data-dictCode="english-russian" class="hp hdb"

      
        
        3830
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-russian', dataset_text: 'English&ndash;Russian', dataset_search: 'Search English&ndash;Russian', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3831
        +                                    role="button" aria-label="Set dictionary search to Cambridge English-Russian Dictionary"

      
        
        3832
        +                                    tabindex="0" title="Cambridge English-Russian Dictionary">English&ndash;Russian</span>

      
        
        3833
        +                                                            <span data-dictCode="english-tamil" class="hp hdb"

      
        
        3834
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-tamil', dataset_text: 'English&ndash;Tamil', dataset_search: 'Search English&ndash;Tamil', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3835
        +                                    role="button" aria-label="Set dictionary search to English-Tamil Dictionary"

      
        
        3836
        +                                    tabindex="0" title="English-Tamil Dictionary">English&ndash;Tamil</span>

      
        
        3837
        +                                                            <span data-dictCode="english-telugu" class="hp hdb"

      
        
        3838
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-telugu', dataset_text: 'English&ndash;Telugu', dataset_search: 'Search English&ndash;Telugu', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3839
        +                                    role="button" aria-label="Set dictionary search to English-Telugu Dictionary"

      
        
        3840
        +                                    tabindex="0" title="English-Telugu Dictionary">English&ndash;Telugu</span>

      
        
        3841
        +                                                            <span data-dictCode="english-thai" class="hp hdb"

      
        
        3842
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-thai', dataset_text: 'English&ndash;Thai', dataset_search: 'Search English&ndash;Thai', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3843
        +                                    role="button" aria-label="Set dictionary search to English-Thai Dictionary"

      
        
        3844
        +                                    tabindex="0" title="English-Thai Dictionary">English&ndash;Thai</span>

      
        
        3845
        +                                                            <span data-dictCode="english-turkish" class="hp hdb"

      
        
        3846
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-turkish', dataset_text: 'English&ndash;Turkish', dataset_search: 'Search English&ndash;Turkish', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3847
        +                                    role="button" aria-label="Set dictionary search to English-Turkish Dictionary, &#304;ngilizce-T&uuml;rk&ccedil;e &Ccedil;eviri"

      
        
        3848
        +                                    tabindex="0" title="English-Turkish Dictionary, &#304;ngilizce-T&uuml;rk&ccedil;e &Ccedil;eviri">English&ndash;Turkish</span>

      
        
        3849
        +                                                            <span data-dictCode="english-ukrainian" class="hp hdb"

      
        
        3850
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-ukrainian', dataset_text: 'English&ndash;Ukrainian', dataset_search: 'Search English&ndash;Ukrainian', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3851
        +                                    role="button" aria-label="Set dictionary search to English-Ukrainian Dictionary"

      
        
        3852
        +                                    tabindex="0" title="English-Ukrainian Dictionary">English&ndash;Ukrainian</span>

      
        
        3853
        +                                                            <span data-dictCode="english-urdu" class="hp hdb"

      
        
        3854
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-urdu', dataset_text: 'English&ndash;Urdu', dataset_search: 'Search English&ndash;Urdu', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3855
        +                                    role="button" aria-label="Set dictionary search to English-Urdu Dictionary"

      
        
        3856
        +                                    tabindex="0" title="English-Urdu Dictionary">English&ndash;Urdu</span>

      
        
        3857
        +                                                            <span data-dictCode="english-vietnamese" class="hp hdb"

      
        
        3858
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-vietnamese', dataset_text: 'English&ndash;Vietnamese', dataset_search: 'Search English&ndash;Vietnamese', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        3859
        +                                    role="button" aria-label="Set dictionary search to English-Vietnamese Dictionary"

      
        
        3860
        +                                    tabindex="0" title="English-Vietnamese Dictionary">English&ndash;Vietnamese</span>

      
        
        3861
        +                                                        </div>

      
        
        3862
        +                       	                    </div>

      
        
        3863
        +                </li>

      
        
        3864
        +

      
        
        3865
        +                <li class="lbt lb-cm">

      
        
        3866
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        3867
        +                            on="tap: AMP.setState({ stateSidebarDict: { plus: ! stateSidebarDict.plus } })">

      
        
        3868
        +                        <span class="pr hdb">

      
        
        3869
        +                            <span class="fs12 tcu">Dictionary +Plus</span>

      
        
        3870
        +                            <i aria-hidden="true" class="i i-minus ibd pa pr0 lpt-2"

      
        
        3871
        +                                [class]="stateSidebarDict.plus ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'">

      
        
        3872
        +                            </i>

      
        
        3873
        +                        </span> 

      
        
        3874
        +                    </span>

      
        
        3875
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.plus ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        3876
        +                        <div class="pr tc-d fs16 lmb-20">

      
        
        3877
        +                                                        <span data-dictCode="wordlists" class="hp hdb lmb-5 hp"

      
        
        3878
        +                                on="tap:AMP.setState({ stateSearch: { dataset: 'wordlists', dataset_text: 'Word Lists', dataset_search: 'Search Word Lists' } }), sidebarDict.close, searchword.focus"

      
        
        3879
        +                                role="button" aria-label="Set dictionary search to Word Lists" tabindex="0"

      
        
        3880
        +                                title="Word Lists">Word Lists</span>

      
        
        3881
        +                            <div class="pa p0 bw" [class]="stateSidebarDict.open ? 'hdn' : 'pa p0 bw'">

      
        
        3882
        +                                <span class="pa p0 bload"></span>

      
        
        3883
        +                            </div>

      
        
        3884
        +                        </div>

      
        
        3885
        +                    </div>

      
        
        3886
        +                </li>

      
        
        3887
        +            </ul>

      
        
        3888
        +        </div>

      
        
        3889
        +    </div>

      
        
        3890
        +

      
        
        3891
        +</amp-sidebar>

      
        
        3892
        +

      
        
        3893
        +<amp-sidebar id="sidebarLang" layout="nodisplay" side="right" class="bw cm-f">

      
        
        3894
        +

      
        
        3895
        +    <div class="pr cms han">

      
        
        3896
        +

      
        
        3897
        +        <span class="pa pt0 pr0 lmt-5 lmr-15 lpt-15 hp fon"

      
        
        3898
        +                on="tap:sidebarLang.close" role="button" aria-label='Close' title='Close' tabindex="0">

      
        
        3899
        +            <i class="i i-close ibd" aria-hidden="true"></i>

      
        
        3900
        +        </span>

      
        
        3901
        +

      
        
        3902
        +        <nav class="lp-s_t-5">

      
        
        3903
        +            <div class="fs18 lbb lb-cm lp-5 lpt-20 lpb-15 lpl-15">

      
        
        3904
        +                Choose your language

      
        
        3905
        +            </div>

      
        
        3906
        +            <div class="lp-15">

      
        
        3907
        +                <span class="hax hdb pr">

      
        
        3908
        +                    <i class="i i-globe ibd fs16 hv0" aria-hidden="true"></i>

      
        
        3909
        +                    <span class="lpl-2">English (UK) <span class="tb">&nbsp;</span></span>

      
        
        3910
        +                </span>

      
        
        3911
        +

      
        
        3912
        +                <div class="han hul-u lmt-10 lmb-0 lpl-20 hlh1_5">

      
        
        3913
        +                                                                                            <a href="/us/dictionary/english/hello"

      
        
        3914
        +                        hreflang="en-US" lang="en-US"

      
        
        3915
        +                        class="hdb lmb-5">English (US)</a>

      
        
        3916
        +                                                                            <a href="/es/diccionario/ingles/hello"

      
        
        3917
        +                        hreflang="es" lang="es"

      
        
        3918
        +                        class="hdb lmb-5">Español</a>

      
        
        3919
        +                                                                            <a href="/pt/dicionario/ingles/hello"

      
        
        3920
        +                        hreflang="pt" lang="pt"

      
        
        3921
        +                        class="hdb lmb-5">Português</a>

      
        
        3922
        +                                                                            <a href="/zhs/%E8%AF%8D%E5%85%B8/%E8%8B%B1%E8%AF%AD/hello"

      
        
        3923
        +                        hreflang="zh-Hans" lang="zh-Hans"

      
        
        3924
        +                        class="hdb lmb-5">中文 (简体)</a>

      
        
        3925
        +                                                                            <a href="/zht/%E8%A9%9E%E5%85%B8/%E8%8B%B1%E8%AA%9E/hello"

      
        
        3926
        +                        hreflang="zh-Hant" lang="zh-Hant"

      
        
        3927
        +                        class="hdb lmb-5">正體中文 (繁體)</a>

      
        
        3928
        +                                                                            <a href="/da/ordbog/engelsk/hello"

      
        
        3929
        +                        hreflang="da" lang="da"

      
        
        3930
        +                        class="hdb lmb-5">Dansk</a>

      
        
        3931
        +                                                                            <a href="/de/worterbuch/englisch/hello"

      
        
        3932
        +                        hreflang="de" lang="de"

      
        
        3933
        +                        class="hdb lmb-5">Deutsch</a>

      
        
        3934
        +                                                                            <a href="/fr/dictionnaire/anglais/hello"

      
        
        3935
        +                        hreflang="fr" lang="fr"

      
        
        3936
        +                        class="hdb lmb-5">Français</a>

      
        
        3937
        +                                                                            <a href="/it/dizionario/inglese/hello"

      
        
        3938
        +                        hreflang="it" lang="it"

      
        
        3939
        +                        class="hdb lmb-5">Italiano</a>

      
        
        3940
        +                                                                            <a href="/nl/woordenboek/engels/hello"

      
        
        3941
        +                        hreflang="nl" lang="nl"

      
        
        3942
        +                        class="hdb lmb-5">Nederlands</a>

      
        
        3943
        +                                                                            <a href="/no/ordbok/engelsk/hello"

      
        
        3944
        +                        hreflang="no" lang="no"

      
        
        3945
        +                        class="hdb lmb-5">Norsk</a>

      
        
        3946
        +                                                                            <a href="/pl/dictionary/english/hello"

      
        
        3947
        +                        hreflang="pl" lang="pl"

      
        
        3948
        +                        class="hdb lmb-5">Polski</a>

      
        
        3949
        +                                                                            <a href="/ru/%D1%81%D0%BB%D0%BE%D0%B2%D0%B0%D1%80%D1%8C/%D0%B0%D0%BD%D0%B3%D0%BB%D0%B8%D0%B9%D1%81%D0%BA%D0%B8%D0%B9/hello"

      
        
        3950
        +                        hreflang="ru" lang="ru"

      
        
        3951
        +                        class="hdb lmb-5">Русский</a>

      
        
        3952
        +                                                                            <a href="/tr/s%C3%B6zl%C3%BCk/ingilizce/hello"

      
        
        3953
        +                        hreflang="tr" lang="tr"

      
        
        3954
        +                        class="hdb lmb-5">Türkçe</a>

      
        
        3955
        +                                                                            <a href="/vi/dictionary/english/hello"

      
        
        3956
        +                        hreflang="vi" lang="vi"

      
        
        3957
        +                        class="hdb lmb-5">Tiếng Việt</a>

      
        
        3958
        +                                                                            <a href="/sv/ordbok/engelska/hello"

      
        
        3959
        +                        hreflang="sv" lang="sv"

      
        
        3960
        +                        class="hdb lmb-5">Svenska</a>

      
        
        3961
        +                                                                            <a href="/uk/dictionary/english/hello"

      
        
        3962
        +                        hreflang="uk" lang="uk"

      
        
        3963
        +                        class="hdb lmb-5">Українська</a>

      
        
        3964
        +                                                                            <a href="/ja/dictionary/english/hello"

      
        
        3965
        +                        hreflang="ja" lang="ja"

      
        
        3966
        +                        class="hdb lmb-5">日本語</a>

      
        
        3967
        +                                                                            <a href="/ko/%EC%82%AC%EC%A0%84/%EC%98%81%EC%96%B4/hello"

      
        
        3968
        +                        hreflang="ko" lang="ko"

      
        
        3969
        +                        class="hdb lmb-5">한국어</a>

      
        
        3970
        +                                                                            <a href="/gu/dictionary/english/hello"

      
        
        3971
        +                        hreflang="gu" lang="gu"

      
        
        3972
        +                        class="hdb lmb-5">ગુજરાતી</a>

      
        
        3973
        +                                                                            <a href="/ta/dictionary/english/hello"

      
        
        3974
        +                        hreflang="ta" lang="ta"

      
        
        3975
        +                        class="hdb lmb-5">தமிழ்</a>

      
        
        3976
        +                                                                            <a href="/te/dictionary/english/hello"

      
        
        3977
        +                        hreflang="te" lang="te"

      
        
        3978
        +                        class="hdb lmb-5">తెలుగు</a>

      
        
        3979
        +                                                                            <a href="/bn/dictionary/english/hello"

      
        
        3980
        +                        hreflang="bn" lang="bn"

      
        
        3981
        +                        class="hdb lmb-5">বাঙ্গালি</a>

      
        
        3982
        +                                                                            <a href="/mr/dictionary/english/hello"

      
        
        3983
        +                        hreflang="mr" lang="mr"

      
        
        3984
        +                        class="hdb lmb-5">मराठी</a>

      
        
        3985
        +                                                                            <a href="/hi/%E0%A4%B6%E0%A4%AC%E0%A5%8D%E0%A4%A6%E0%A4%95%E0%A5%8B%E0%A4%B6/%E0%A4%85%E0%A4%82%E0%A4%97%E0%A5%8D%E0%A4%B0%E0%A5%87%E0%A4%9C%E0%A4%BC%E0%A5%80/hello"

      
        
        3986
        +                        hreflang="hi" lang="hi"

      
        
        3987
        +                        class="hdb lmb-5">हिंदी</a>

      
        
        3988
        +                                                    </div>

      
        
        3989
        +            </div>

      
        
        3990
        +

      
        
        3991
        +        </nav>

      
        
        3992
        +

      
        
        3993
        +    </div>

      
        
        3994
        +

      
        
        3995
        +</amp-sidebar>

      
        
        3996
        +

      
        
        3997
        +            

      
        
        3998
        +<amp-sidebar id="sidebarContentNav" layout="nodisplay" side="left" class="bw cm-f">

      
        
        3999
        +

      
        
        4000
        +    <div class="pr cm-fc lm-auto">

      
        
        4001
        +        <span class="pa pt0 pr0 lmt-5 lmr-15 lpt-15 hp fon"

      
        
        4002
        +                on="tap:sidebarContentNav.close" role="button" aria-label='Close' title='Close' tabindex="0">

      
        
        4003
        +            <i class="i i-close ibd lpr-5" aria-hidden="true"></i>

      
        
        4004
        +        </span>

      
        
        4005
        +

      
        
        4006
        +        <div class="han tc-bd lpt-5">

      
        
        4007
        +

      
        
        4008
        +            <div class="fs18 lbb lb-cm lp-5 lpt-20 lpb-15 lpl-15">

      
        
        4009
        +                Contents            </div>

      
        
        4010
        +

      
        
        4011
        +                            <div id="navigation" class="dtoc">

      
        
        4012
        +

      
        
        4013
        +                <amp-state id="stateSidebarContentNav"><script type="application/json">

      
        
        4014
        +                    {

      
        
        4015
        +                    "cald4":   true ,"cacd":   false ,"examples":   false ,                    "erroneous_extra_item": false

      
        
        4016
        +                    }

      
        
        4017
        +                </script></amp-state><ul class="hul-u hul-u0 fs14 lmb-0 lbb lb-cm order-container"><li class="lbb lb-cm order-firstItem" data-dataset="cald4">

      
        
        4018
        +<div class="habg hax lp-15 lpt-10 lpb-10"><a class="pr tcu hdb lpt-2 lpb-2" role="button" aria-label="Open variations list" on="tap: AMP.setState({ stateSidebarContentNav: {'cald4': !stateSidebarContentNav['cald4'] } })">

      
        
        4019
        +                            English 

      
        
        4020
        +                            <i class="  i-minus  i ibd pa pr5 " [class]="stateSidebarContentNav['cald4'] ? 'i i-minus ibd pa pr5' : 'i i-plus ibd pa pr5'"> </i></a></div><div class="  " [class]="stateSidebarContentNav['cald4'] ? '' : 'hdn'"><div class="lbt lml-15 lmr-15 lpt-10 lpb-10 lpl-10"><a href="#cald4-1"><span class="ti tb">Exclamation, noun</span></a></div></div>

      
        
        4021
        +</li><li class="lbb lb-cm " data-dataset="cacd">

      
        
        4022
        +<div class="habg hax lp-15 lpt-10 lpb-10"><a class="pr tcu hdb lpt-2 lpb-2" role="button" aria-label="Open variations list" on="tap: AMP.setState({ stateSidebarContentNav: {'cacd': !stateSidebarContentNav['cacd'] } })">

      
        
        4023
        +                            American 

      
        
        4024
        +                            <i class="  i-plus  i ibd pa pr5 " [class]="stateSidebarContentNav['cacd'] ? 'i i-minus ibd pa pr5' : 'i i-plus ibd pa pr5'"> </i></a></div><div class="  hdn  " [class]="stateSidebarContentNav['cacd'] ? '' : 'hdn'"><div class="lbt lml-15 lmr-15 lpt-10 lpb-10 lpl-10"><a href="#cacd-1"><span class="ti tb">Exclamation, noun</span></a></div></div>

      
        
        4025
        +</li><li class="lbb lb-cm lp-15 lpt-10 lpb-10"><a class="habg hax tcu hdb lpt-2 lpb-2" href="#dataset_examples">

      
        
        4026
        +                        Examples                    </a></li></ul>

      
        
        4027
        +</div>

      
        
        4028
        +            

      
        
        4029
        +            <ul class="hul-u hul-u0 fs14">

      
        
        4030
        +

      
        
        4031
        +                

      
        
        4032
        +                                

      
        
        4033
        +                                <li class="lbb lb-cm lp-15 lpt-10 lpb-10">

      
        
        4034
        +                    <a href="#dataset_translations" class="habg hax tcu hdb lpt-2 lpb-2">

      
        
        4035
        +                        Translations

      
        
        4036
        +                    </a>

      
        
        4037
        +                </li>

      
        
        4038
        +                

      
        
        4039
        +                                <li class="lbb lb-cm lp-15 lpt-10 lpb-10">

      
        
        4040
        +                    <a href="https://dictionary.cambridge.org/grammar/british-grammar/" class="pr habg hax tcu hdb lpt-2 lpb-2">

      
        
        4041
        +                        Grammar                        <i class="i i-external-link-alt ibd pa pr5 lpt-2" aria-hidden="true"></i>

      
        
        4042
        +                    </a>

      
        
        4043
        +                </li>

      
        
        4044
        +                                <li class="lp-15 lpt-10 lpb-10">

      
        
        4045
        +                    <a href="https://dictionary.cambridge.org/translate/" class="pr habg hax tcu hdb lpt-2 lpb-2">

      
        
        4046
        +                        All translations                        <i class="i i-external-link-alt ibd pa pr5 lpt-2" aria-hidden="true"></i>

      
        
        4047
        +                    </a>

      
        
        4048
        +                </li>

      
        
        4049
        +            </ul>

      
        
        4050
        +

      
        
        4051
        +        </div>

      
        
        4052
        +    </div>

      
        
        4053
        +

      
        
        4054
        +</amp-sidebar>

      
        
        4055
        +    

      
        
        4056
        +    <amp-state id="stateSidebarWordList">

      
        
        4057
        +    <script type="application/json">

      
        
        4058
        +    {

      
        
        4059
        +        "wordlist_id": "",

      
        
        4060
        +        "word": "",

      
        
        4061
        +        "wordlist": "",

      
        
        4062
        +        "dictCode": "english",

      
        
        4063
        +        "url": "",

      
        
        4064
        +        "expended": false

      
        
        4065
        +    }

      
        
        4066
        +    </script>

      
        
        4067
        +</amp-state>

      
        
        4068
        +

      
        
        4069
        +<amp-state id="stateSidebarWordListItems" [src]="'/plus/getWordlists?foo=' + stateSidebarWordList.wordlist_id" credentials="include">

      
        
        4070
        +    <script type="application/json">

      
        
        4071
        +        []

      
        
        4072
        +    </script>

      
        
        4073
        +</amp-state>

      
        
        4074
        +

      
        
        4075
        +<amp-sidebar id="sidebarWordList" layout="nodisplay" side="left" class="bw cm-f" amp-access-hide>

      
        
        4076
        +    <div class="pr hdf hflxy lminh100">

      
        
        4077
        +        <div class="pr cm-fc hflx1 lm-auto">

      
        
        4078
        +            <span class="pa pt0 pr0 lmt-5 lmr-15 lpt-15 hp fon" role="button" tabindex="0"

      
        
        4079
        +                    on="tap:formAddToWordlistNew.clear, formAddToWordlist.clear, sidebarWordList.close" aria-label='Close' title='Close'>

      
        
        4080
        +                <i class="i i-close ibd lpr-5" aria-hidden="true"></i>

      
        
        4081
        +            </span>

      
        
        4082
        +

      
        
        4083
        +            <div class="han tc-bd lp-15 lpt-5 lpb-25" amp-access="NOT loggedIn">

      
        
        4084
        +                <div class="fs18 lpt-20 lmb-25">My word lists</div>

      
        
        4085
        +                <p>To add <strong class='tb' [text]='stateGlobal.wotd'>hello</strong> to a word list please sign up or log in.</p>

      
        
        4086
        +

      
        
        4087
        +                <div>

      
        
        4088
        +    <span on="tap:amp-access.login-sign-up" class="boa hao hbtn hbtn-tab tb tc-bd">Sign up</span>

      
        
        4089
        +    <span class="lpl-5 lpr-5">or</span>

      
        
        4090
        +    <span on="tap:amp-access.login-sign-in" class="bh hao hbtn hbtn-tab tb">Log in</span>

      
        
        4091
        +</div>

      
        
        4092
        +            </div>

      
        
        4093
        +

      
        
        4094
        +            <div class="han tc-bd lp-15 lpt-5 lpb-25" amp-access="loggedIn">

      
        
        4095
        +                <div class="fs18 lpt-20 lmb-25">My word lists</div>

      
        
        4096
        +                <p>Add <strong class='tb' [text]='stateGlobal.wotd'>hello</strong> to one of your lists below, or create a new one.</p>

      
        
        4097
        +

      
        
        4098
        +                <div class="lp-10 lc1 lmb-10">

      
        
        4099
        +                    <form class="x" id="formAddToWordlistNew" method="post" action-xhr="https://dictionary.cambridge.org/plus/addWordlist"

      
        
        4100
        +                            verify-xhr="https://dictionary.cambridge.org/plus/addWordlist" target="_top" 

      
        
        4101
        +                            on="submit-success:AMP.setState({ stateSidebarWordList: { wordlist_id: event.response.wordlistId } }),formAddToWordlist.submit">

      
        
        4102
        +                        <div>

      
        
        4103
        +                            <div class="hfr">

      
        
        4104
        +                                <button type="submit" class="bo iwc iwc-40 hao lb0" aria-label="Create side bar"

      
        
        4105
        +                                    title="Create">

      
        
        4106
        +                                    <i class="i i-check" aria-hidden="true"></i>

      
        
        4107
        +                                </button>

      
        
        4108
        +                            </div>

      
        
        4109
        +

      
        
        4110
        +                            <div class="hoh lpr-5">

      
        
        4111
        +                                <input type="text" name="name" class="ft fon pr pt0 hbr-20 lc1 lp-10 lpl-15"

      
        
        4112
        +                                    placeholder="New word list name" />

      
        
        4113
        +                            </div>

      
        
        4114
        +                        </div>

      
        
        4115
        +                        <div submitting>

      
        
        4116
        +                            <template type="amp-mustache">

      
        
        4117
        +                                <div class="pa p0 lp-5 bl-l">

      
        
        4118
        +                                    <div class="pa p0 bload">

      
        
        4119
        +                                    </div>

      
        
        4120
        +                                </div>

      
        
        4121
        +                            </template>

      
        
        4122
        +                        </div>

      
        
        4123
        +                        <div submit-error>

      
        
        4124
        +                            <template type="amp-mustache">

      
        
        4125
        +                                <div class="fs14 lpt-5 tc-err">

      
        
        4126
        +                                    {{#verifyErrors}}

      
        
        4127
        +                                        <p>{{message}}</p>

      
        
        4128
        +                                    {{/verifyErrors}}

      
        
        4129
        +                                    {{^verifyErrors}}

      
        
        4130
        +                                        {{#message}}

      
        
        4131
        +                                            <p>{{message}}</p>

      
        
        4132
        +                                        {{/message}}

      
        
        4133
        +                                        {{^message}}

      
        
        4134
        +                                            <p>Something went wrong.</p>

      
        
        4135
        +                                        {{/message}}

      
        
        4136
        +                                    {{/verifyErrors}}

      
        
        4137
        +                                </div>

      
        
        4138
        +                            </template>

      
        
        4139
        +                        </div>

      
        
        4140
        +                    </form>

      
        
        4141
        +                </div>

      
        
        4142
        +                <amp-list id="sideBarWordListLists" height="0" layout="fixed-height" items="."

      
        
        4143
        +                    [height]="(stateSidebarWordListItems.length > 5 && !stateSidebarWordList.expended) ? 195 : (stateSidebarWordListItems.length * 39)"

      
        
        4144
        +                    [src]="stateSidebarWordListItems">

      
        
        4145
        +                        <template type="amp-mustache">

      
        
        4146
        +                            <div class="lbb lb-cm lp-10 wordlist-row">

      
        
        4147
        +                                <span class="hdb hoh to-e tw-nw hp"

      
        
        4148
        +                                    on="tap:AMP.setState({ stateSidebarWordList: { wordlist_id: '{{id}}' } }),formAddToWordlist.submit">

      
        
        4149
        +                                    {{name}}

      
        
        4150
        +                                </span>

      
        
        4151
        +                            </div>

      
        
        4152
        +                        </template>

      
        
        4153
        +                </amp-list>

      
        
        4154
        +                <div id="sideBarWordListListsOver" class="hao hp lmt-25" role="button" on="tap:AMP.setState({ stateSidebarWordList: { expended: 'true'}})" [class]="(stateSidebarWordListItems.length > 5 && !stateSidebarWordList.expended) ? 'hao hp lmt-25' : 'hdn'">

      
        
        4155
        +                    <div class="fs14 boa hp lp-5 lpl-10 lpr-10">

      
        
        4156
        +                        <i class="i i-chevron-down lmr-5 lpt-3 lpb-3" aria-hidden="true"></i>

      
        
        4157
        +                        More

      
        
        4158
        +                    </div>

      
        
        4159
        +                </div>

      
        
        4160
        +

      
        
        4161
        +                                <div class="had lmt-25 lpb-25">Go to your <a  class='tb' href='/plus/wordlist'>word lists</a></div>

      
        
        4162
        +

      
        
        4163
        +                <form id="formAddToWordlist" method="post" action-xhr="https://dictionary.cambridge.org/plus/addWordlistEntry" verify-xhr="https://dictionary.cambridge.org/plus/addWordlistEntry" target="_top" 

      
        
        4164
        +                    on="submit-success:formAddToWordlistNew.clear,sidebarWordList.close,AMP.setState({ stateSidebarWordList: { wordlist_id: '', word: event.response.word, wordlist: event.response.wordlist, url: event.response.url } })">

      
        
        4165
        +                    <div>

      
        
        4166
        +                        <input type="hidden" name="dictCode" [value]="stateSidebarWordList.dictCode" />

      
        
        4167
        +                        <input type="hidden" name="senseId" [value]="stateGlobal.wlSenseId" />

      
        
        4168
        +                        <input type="hidden" name="wordlistId" [value]="stateSidebarWordList.wordlist_id" />

      
        
        4169
        +                    </div>

      
        
        4170
        +                    <div submitting>

      
        
        4171
        +                        <template type="amp-mustache">

      
        
        4172
        +                            <div class="pa p0 lp-5 bl-l">

      
        
        4173
        +                                <div class="pa p0 bload">

      
        
        4174
        +                                </div>

      
        
        4175
        +                            </div>

      
        
        4176
        +                        </template>

      
        
        4177
        +                    </div>

      
        
        4178
        +                    <div submit-error>

      
        
        4179
        +                        <template type="amp-mustache">

      
        
        4180
        +                            <div class="m me fs14">

      
        
        4181
        +                                {{#verifyErrors}}

      
        
        4182
        +                                    <p>{{message}}</p>

      
        
        4183
        +                                {{/verifyErrors}}

      
        
        4184
        +                                {{^verifyErrors}}

      
        
        4185
        +                                    {{#message}}

      
        
        4186
        +                                        <p>{{message}}</p>

      
        
        4187
        +                                    {{/message}}

      
        
        4188
        +                                    {{^message}}

      
        
        4189
        +                                        <p>Something went wrong.</p>

      
        
        4190
        +                                    {{/message}}

      
        
        4191
        +                                {{/verifyErrors}}

      
        
        4192
        +                            </div>

      
        
        4193
        +                        </template>

      
        
        4194
        +                    </div>

      
        
        4195
        +                </form>

      
        
        4196
        +

      
        
        4197
        +            </div>

      
        
        4198
        +        </div>

      
        
        4199
        +    </div>

      
        
        4200
        +</amp-sidebar>

      
        
        4201
        +    

      
        
        4202
        +<amp-state id="stateSidebarEntryTellUs">

      
        
        4203
        +    <script type="application/json">

      
        
        4204
        +    {

      
        
        4205
        +        "example_id": "",

      
        
        4206
        +        "dataset_id": "",

      
        
        4207
        +        "success": false

      
        
        4208
        +    }

      
        
        4209
        +    </script>

      
        
        4210
        +</amp-state>

      
        
        4211
        +

      
        
        4212
        +<amp-sidebar id="sidebarEntryTellUs" layout="nodisplay" side="left" class="bw cm-f">

      
        
        4213
        +

      
        
        4214
        +    <div class="pr hdf hflxy lminh100">

      
        
        4215
        +        <div class="pr cm-fc hflx1 lm-auto">

      
        
        4216
        +            <span class="pa pt0 pr0 lmt-5 lmr-15 lpt-15 hp" role="button" tabindex="0"

      
        
        4217
        +                    on="tap: sidebarEntryTellUs.close" aria-label='Close' title='Close'>

      
        
        4218
        +                <i class="i i-close ibd lpr-5" aria-hidden="true"></i>

      
        
        4219
        +            </span>

      
        
        4220
        +

      
        
        4221
        +            <div class="han tc-bd lp-15 lpt-5 lpb-25">

      
        
        4222
        +                <div class="fs18 lpt-20 lpr-25 lmb-25">

      
        
        4223
        +                    Tell us about this example sentence:                </div>

      
        
        4224
        +

      
        
        4225
        +                <form class="" [class]="stateSidebarEntryTellUs.dataset_id == 'NONE' ? 'hdn' : ''"

      
        
        4226
        +                        id="formTellUs" method="post" action-xhr="https://dictionary.cambridge.org/putunga/report" target="_top"

      
        
        4227
        +                        on="submit-success: AMP.setState({ stateSidebarEntryTellUs: { success: true } })">

      
        
        4228
        +                    <div class="fs15">

      
        
        4229
        +                        <input type="hidden" name="id" [value]="stateSidebarEntryTellUs.example_id" />

      
        
        4230
        +                        <input type="hidden" name="dataset" [value]="stateSidebarEntryTellUs.dataset_id" />

      
        
        4231
        +

      
        
        4232
        +                        <div class="lbt lb-cm">

      
        
        4233
        +                            <label class="tn lp-5 lpt-15 lpb-15 x">

      
        
        4234
        +                                <input type="radio" name="reason" class="hfl lmr-10 lmt-2" value="The word in the example sentence does not match the entry word." 

      
        
        4235
        +                                       role="button" tabindex="0">

      
        
        4236
        +                                <span class="hdb hoh">

      
        
        4237
        +                                    The word in the example sentence does not match the entry word.                                </span>

      
        
        4238
        +                            </label>

      
        
        4239
        +                        </div>

      
        
        4240
        +

      
        
        4241
        +                        <div class="lbt lb-cm">

      
        
        4242
        +                            <label class="tn lp-5 lpt-15 lpb-15 x">

      
        
        4243
        +                                <input type="radio" name="reason" class="hfl lmr-10 lmt-2" value="The sentence contains offensive content." 

      
        
        4244
        +                                       role="button" tabindex="0" />

      
        
        4245
        +                                <span class="hdb hoh">

      
        
        4246
        +                                    The sentence contains offensive content.                                </span>

      
        
        4247
        +                            </label>

      
        
        4248
        +                        </div>

      
        
        4249
        +

      
        
        4250
        +                        <div class="lbt lb-cm x lpt-15">

      
        
        4251
        +                            <div [class]="stateSidebarEntryTellUs.success ? 'hdn' : ''">

      
        
        4252
        +                                <button class="hfl hao hao hbtn hbtn-tab bhb fon" title="Search"

      
        
        4253
        +                                        on="tap:sidebarEntryTellUs.close" role="button" aria-label='Close' title='Close' tabindex="0">

      
        
        4254
        +                                    Cancel                                </button>

      
        
        4255
        +

      
        
        4256
        +                                <button type="submit" class="hfr boa hao hbtn hbtn-tab tb tc-bd" aria-label="Submit">

      
        
        4257
        +                                    Submit                                </button>

      
        
        4258
        +                            </div>

      
        
        4259
        +                        </div>

      
        
        4260
        +                    </div>

      
        
        4261
        +                    <div submitting>

      
        
        4262
        +                        <template type="amp-mustache">

      
        
        4263
        +                            <div class="pa p0 lp-5 bl-l">

      
        
        4264
        +                            <div class="pa p0 bload">

      
        
        4265
        +                            </div>

      
        
        4266
        +                            </div>

      
        
        4267
        +                        </template>

      
        
        4268
        +                    </div>

      
        
        4269
        +                    <div submit-success>

      
        
        4270
        +                        <template type="amp-mustache">

      
        
        4271
        +                            <div class="m ms fs14 lmt-10">

      
        
        4272
        +                                Thanks! Your feedback will be reviewed.

      
        
        4273
        +                            </div>

      
        
        4274
        +                        </template>

      
        
        4275
        +                    </div>

      
        
        4276
        +                    <div submit-error>

      
        
        4277
        +                        <template type="amp-mustache">

      
        
        4278
        +                            <div class="m me fs14 lmt-25">

      
        
        4279
        +                                {{#verifyErrors}}

      
        
        4280
        +                                    <p>{{message}}</p>

      
        
        4281
        +                                {{/verifyErrors}}

      
        
        4282
        +                                {{^verifyErrors}}

      
        
        4283
        +                                    {{#message}}

      
        
        4284
        +                                        <p>{{message}}</p>

      
        
        4285
        +                                    {{/message}}

      
        
        4286
        +                                    {{^message}}

      
        
        4287
        +                                        <p>There was a problem sending your report.</p>

      
        
        4288
        +                                    {{/message}}

      
        
        4289
        +                                {{/verifyErrors}}

      
        
        4290
        +                            </div>

      
        
        4291
        +                        </template>

      
        
        4292
        +                    </div>

      
        
        4293
        +                </form>

      
        
        4294
        +

      
        
        4295
        +                <form class="hdn" [class]="stateSidebarEntryTellUs.dataset_id == 'NONE' ? '' : 'hdn'"

      
        
        4296
        +                        id="formTellUsDefinition" method="post" action-xhr="https://dictionary.cambridge.org/dictionary/rate" target="_top"

      
        
        4297
        +                        on="submit-success: AMP.setState({ stateSidebarEntryTellUs: { success: true } })">

      
        
        4298
        +                    <div class="fs15">

      
        
        4299
        +                        <input type="hidden" name="id" [value]="stateSidebarEntryTellUs.example_id" />

      
        
        4300
        +                        <input type="hidden" name="rate" [value]="-1" />

      
        
        4301
        +

      
        
        4302
        +                        <div class="lbt lb-cm">

      
        
        4303
        +                            <label class="tn lp-5 lpt-15 lpb-15 x">

      
        
        4304
        +                                <input type="radio" name="reason" class="hfl lmr-10 lmt-2" value="The word in the example sentence does not match the entry word." 

      
        
        4305
        +                                       role="button" tabindex="0">

      
        
        4306
        +                                <span class="hdb hoh">

      
        
        4307
        +                                    The word in the example sentence does not match the entry word.                                </span>

      
        
        4308
        +                            </label>

      
        
        4309
        +                        </div>

      
        
        4310
        +

      
        
        4311
        +                        <div class="lbt lb-cm">

      
        
        4312
        +                            <label class="tn lp-5 lpt-15 lpb-15 x">

      
        
        4313
        +                                <input type="radio" name="reason" class="hfl lmr-10 lmt-2" value="The sentence contains offensive content." 

      
        
        4314
        +                                       role="button" tabindex="0" />

      
        
        4315
        +                                <span class="hdb hoh">

      
        
        4316
        +                                    The sentence contains offensive content.                                </span>

      
        
        4317
        +                            </label>

      
        
        4318
        +                        </div>

      
        
        4319
        +

      
        
        4320
        +                        <div class="lbt lb-cm x lpt-15">

      
        
        4321
        +                            <div [class]="stateSidebarEntryTellUs.success ? 'hdn' : ''">

      
        
        4322
        +                                <button class="hfl hao hao hbtn hbtn-tab bhb fon" title="Search"

      
        
        4323
        +                                        on="tap:sidebarEntryTellUs.close" role="button" aria-label='Close' title='Close' tabindex="0">

      
        
        4324
        +                                    Cancel                                </button>

      
        
        4325
        +

      
        
        4326
        +                                <button type="submit" class="hfr boa hao hbtn hbtn-tab tb tc-bd" aria-label="Submit">

      
        
        4327
        +                                    Submit                                </button>

      
        
        4328
        +                            </div>

      
        
        4329
        +                        </div>

      
        
        4330
        +                    </div>

      
        
        4331
        +                    <div submitting>

      
        
        4332
        +                        <template type="amp-mustache">

      
        
        4333
        +                            <div class="pa p0 lp-5 bl-l">

      
        
        4334
        +                            <div class="pa p0 bload">

      
        
        4335
        +                            </div>

      
        
        4336
        +                            </div>

      
        
        4337
        +                        </template>

      
        
        4338
        +                    </div>

      
        
        4339
        +                    <div submit-success>

      
        
        4340
        +                        <template type="amp-mustache">

      
        
        4341
        +                            <div class="m ms fs14 lmt-10">

      
        
        4342
        +                                Thanks! Your feedback will be reviewed.

      
        
        4343
        +                            </div>

      
        
        4344
        +                        </template>

      
        
        4345
        +                    </div>

      
        
        4346
        +                    <div submit-error>

      
        
        4347
        +                        <template type="amp-mustache">

      
        
        4348
        +                            <div class="m me fs14 lmt-25">

      
        
        4349
        +                                {{#verifyErrors}}

      
        
        4350
        +                                    <p>{{message}}</p>

      
        
        4351
        +                                {{/verifyErrors}}

      
        
        4352
        +                                {{^verifyErrors}}

      
        
        4353
        +                                    {{#message}}

      
        
        4354
        +                                        <p>{{message}}</p>

      
        
        4355
        +                                    {{/message}}

      
        
        4356
        +                                    {{^message}}

      
        
        4357
        +                                        <p>There was a problem sending your report.</p>

      
        
        4358
        +                                    {{/message}}

      
        
        4359
        +                                {{/verifyErrors}}

      
        
        4360
        +                            </div>

      
        
        4361
        +                        </template>

      
        
        4362
        +                    </div>

      
        
        4363
        +                </form>

      
        
        4364
        +            </div>

      
        
        4365
        +

      
        
        4366
        +        </div>

      
        
        4367
        +    </div>

      
        
        4368
        +

      
        
        4369
        +</amp-sidebar>

      
        
        4370
        +</body>

      
        
        4371
        +</html>
      
A testdata/cambridge_notfound.html
···
        
        1
        +<!DOCTYPE html>

      
        
        2
        +<html lang="en" >

      
        
        3
        +

      
        
        4
        +<head>

      
        
        5
        +    <title>Cambridge English Dictionary: Meanings &amp; Definitions</title>

      
        
        6
        +    <meta charset="utf-8">

      
        
        7
        +    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

      
        
        8
        +    <meta name="description" content="The most popular dictionary and thesaurus. Meanings &amp; definitions of words in English with examples, synonyms, pronunciations and translations.">

      
        
        9
        +    <meta name="keywords" content="Home page for English Dictionary, english, definition, define, meaning, spelling, pronounce, pronunciation, pronounciation, audio, conjugation, inflection">

      
        
        10
        +    <meta http-equiv="X-UA-Compatible" content="IE=edge">

      
        
        11
        +    <meta name='viewport' content="width=device-width,minimum-scale=1,initial-scale=1">

      
        
        12
        +    <meta name="google" content="notranslate">

      
        
        13
        +            

      
        
        14
        +        

      
        
        15
        +    

      
        
        16
        +                

      
        
        17
        +                <script async src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="1be0fc8f-627a-4f3a-a13f-a4d11e467d2a"></script>

      
        
        18
        +    

      
        
        19
        +

      
        
        20
        +        

      
        
        21
        +                    

      
        
        22
        +        <meta property="og:url" content="https://dictionary.cambridge.org/dictionary/english/" />

      
        
        23
        +

      
        
        24
        +                                    <link rel="canonical" href="https://dictionary.cambridge.org/dictionary/english/" />

      
        
        25
        +                                                                                                    <link rel="alternate" hreflang="en" href="https://dictionary.cambridge.org/dictionary/english/"/>

      
        
        26
        +                         <link rel="alternate" hreflang="en-GB" href="https://dictionary.cambridge.org/dictionary/english/"/>                                                                                 <link rel="alternate" hreflang="en-US" href="https://dictionary.cambridge.org/us/dictionary/english/"/>

      
        
        27
        +                                                                    <link rel="alternate" hreflang="en-MX" href="https://dictionary.cambridge.org/us/dictionary/english/"/>

      
        
        28
        +                                                                    <link rel="alternate" hreflang="en-PH" href="https://dictionary.cambridge.org/us/dictionary/english/"/>

      
        
        29
        +                                                                    <link rel="alternate" hreflang="en-BR" href="https://dictionary.cambridge.org/us/dictionary/english/"/>

      
        
        30
        +                                                                    <link rel="alternate" hreflang="en-CO" href="https://dictionary.cambridge.org/us/dictionary/english/"/>

      
        
        31
        +                                                                                                        <link rel="alternate" hreflang="es" href="https://dictionary.cambridge.org/es/diccionario/ingles/"/>

      
        
        32
        +                                                                    <link rel="alternate" hreflang="es-ES" href="https://dictionary.cambridge.org/es/diccionario/ingles/"/>

      
        
        33
        +                                                                                                        <link rel="alternate" hreflang="pt" href="https://dictionary.cambridge.org/pt/dicionario/ingles/"/>

      
        
        34
        +                                                                    <link rel="alternate" hreflang="pt-BR" href="https://dictionary.cambridge.org/pt/dicionario/ingles/"/>

      
        
        35
        +                                                                                                        <link rel="alternate" hreflang="zh-Hans" href="https://dictionary.cambridge.org/zhs/%E8%AF%8D%E5%85%B8/%E8%8B%B1%E8%AF%AD/"/>

      
        
        36
        +                                                                                                        <link rel="alternate" hreflang="zh-Hant" href="https://dictionary.cambridge.org/zht/%E8%A9%9E%E5%85%B8/%E8%8B%B1%E8%AA%9E/"/>

      
        
        37
        +                                                                                                        <link rel="alternate" hreflang="da" href="https://dictionary.cambridge.org/da/ordbog/engelsk/"/>

      
        
        38
        +                                                                                                        <link rel="alternate" hreflang="de" href="https://dictionary.cambridge.org/de/worterbuch/englisch/"/>

      
        
        39
        +                                                                                                        <link rel="alternate" hreflang="fr" href="https://dictionary.cambridge.org/fr/dictionnaire/anglais/"/>

      
        
        40
        +                                                                                                        <link rel="alternate" hreflang="it" href="https://dictionary.cambridge.org/it/dizionario/inglese/"/>

      
        
        41
        +                                                                                                        <link rel="alternate" hreflang="nl" href="https://dictionary.cambridge.org/nl/woordenboek/engels/"/>

      
        
        42
        +                                                                                                        <link rel="alternate" hreflang="no" href="https://dictionary.cambridge.org/no/ordbok/engelsk/"/>

      
        
        43
        +                                                                                                        <link rel="alternate" hreflang="pl" href="https://dictionary.cambridge.org/pl/dictionary/english/"/>

      
        
        44
        +                                                                                                        <link rel="alternate" hreflang="ru" href="https://dictionary.cambridge.org/ru/%D1%81%D0%BB%D0%BE%D0%B2%D0%B0%D1%80%D1%8C/%D0%B0%D0%BD%D0%B3%D0%BB%D0%B8%D0%B9%D1%81%D0%BA%D0%B8%D0%B9/"/>

      
        
        45
        +                                                                                                        <link rel="alternate" hreflang="tr" href="https://dictionary.cambridge.org/tr/s%C3%B6zl%C3%BCk/ingilizce/"/>

      
        
        46
        +                                                                                                        <link rel="alternate" hreflang="vi" href="https://dictionary.cambridge.org/vi/dictionary/english/"/>

      
        
        47
        +                                                                                                        <link rel="alternate" hreflang="sv" href="https://dictionary.cambridge.org/sv/ordbok/engelska/"/>

      
        
        48
        +                                                                                                        <link rel="alternate" hreflang="uk" href="https://dictionary.cambridge.org/uk/dictionary/english/"/>

      
        
        49
        +                                                                                                        <link rel="alternate" hreflang="ja" href="https://dictionary.cambridge.org/ja/dictionary/english/"/>

      
        
        50
        +                                                                                                        <link rel="alternate" hreflang="ko" href="https://dictionary.cambridge.org/ko/%EC%82%AC%EC%A0%84/%EC%98%81%EC%96%B4/"/>

      
        
        51
        +                                                                                                        <link rel="alternate" hreflang="gu" href="https://dictionary.cambridge.org/gu/dictionary/english/"/>

      
        
        52
        +                                                                                                        <link rel="alternate" hreflang="ta" href="https://dictionary.cambridge.org/ta/dictionary/english/"/>

      
        
        53
        +                                                                                                        <link rel="alternate" hreflang="te" href="https://dictionary.cambridge.org/te/dictionary/english/"/>

      
        
        54
        +                                                                                                        <link rel="alternate" hreflang="bn" href="https://dictionary.cambridge.org/bn/dictionary/english/"/>

      
        
        55
        +                                                                                                        <link rel="alternate" hreflang="mr" href="https://dictionary.cambridge.org/mr/dictionary/english/"/>

      
        
        56
        +                                                                                                        <link rel="alternate" hreflang="hi" href="https://dictionary.cambridge.org/hi/%E0%A4%B6%E0%A4%AC%E0%A5%8D%E0%A4%A6%E0%A4%95%E0%A5%8B%E0%A4%B6/%E0%A4%85%E0%A4%82%E0%A4%97%E0%A5%8D%E0%A4%B0%E0%A5%87%E0%A4%9C%E0%A4%BC%E0%A5%80/"/>

      
        
        57
        +                                                                        

      
        
        58
        +                                    

      
        
        59
        +    

      
        
        60
        +            

      
        
        61
        +            

      
        
        62
        +            

      
        
        63
        +            

      
        
        64
        +        <meta name="google-site-verification" content="lg0qcRkaLtMeKJcXsOLoptzK-2MIRJzuEtiYHZf_O2Y">

      
        
        65
        +    <link rel="shortcut icon" type="image/x-icon" href="https://dictionary.cambridge.org/external/images/favicon.ico?version=6.0.78">

      
        
        66
        +    <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="Cambridge Dict">

      
        
        67
        +    <link rel="apple-touch-icon-precomposed" type="image/x-icon" href="https://dictionary.cambridge.org/external/images/apple-touch-icon-precomposed.png?version=6.0.78">

      
        
        68
        +    <link rel="preload" href="/external/fonts/cdoicons.woff?version=6.0.78" as="font" crossorigin>

      
        
        69
        +    <meta property="og:title" content="Cambridge English Dictionary: Meanings &amp; Definitions">

      
        
        70
        +    <meta property="og:description" content="The most popular dictionary and thesaurus. Meanings &amp; definitions of words in English with examples, synonyms, pronunciations and translations.">

      
        
        71
        +    <meta property="og:image" content="https://dictionary.cambridge.org/external/images/og-image.png">

      
        
        72
        +    <meta property="og:type" content="website">

      
        
        73
        +    <meta property="fb:app_id" content="118775618133878">

      
        
        74
        +    <meta property="twitter:card" content="summary">

      
        
        75
        +    <meta property="twitter:site" content="@CambridgeWords">

      
        
        76
        +                  <link rel="preconnect" href="https://cdn.polarbyte.com">

      
        
        77
        +        <link rel="preconnect" href="https://securepubads.g.doubleclick.net">

      
        
        78
        +        <link rel="preconnect" href="https://ib.adnxs.com">

      
        
        79
        +        <link rel="preconnect" href="https://bidder.criteo.com">

      
        
        80
        +        <link rel="preconnect" href="https://as-sec.casalemedia.com">

      
        
        81
        +        <link rel="preconnect" href="https://idm-d.openx.net">

      
        
        82
        +        <link rel="preconnect" href="https://hbopenbid.pubmatic.com">

      
        
        83
        +        <link rel="preconnect" href="https://fastlane.rubiconproject.com">

      
        
        84
        +        <link rel="preconnect" href="https://ap.lijit.com">

      
        
        85
        +        <link rel="preconnect" href="https://tlx.3lift.com">

      
        
        86
        +        <link rel="preconnect" href="https://script.4dex.io">

      
        
        87
        +        <link rel="preconnect" href="https://a.teads.tv">

      
        
        88
        +

      
        
        89
        +        <script defer type="text/javascript" src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>

      
        
        90
        +        <script defer type="text/javascript" src="https://cdn.polarbyte.com/idm/cdo/pb.min.js"></script>

      
        
        91
        +            <link rel="preload" href="https://www.googletagmanager.com/gtag/js?id=G-L9GCR21SZ7" as="script">

      
        
        92
        +      <link href="/common.css?version=6.0.78" rel="stylesheet" type="text/css">

      
        
        93
        +                    

      
        
        94
        +        <script async src="https://cdn.ampproject.org/lts/v0.js"></script>

      
        
        95
        +        <script async custom-element="amp-bind" src="https://cdn.ampproject.org/lts/v0/amp-bind-0.1.js"></script>

      
        
        96
        +            <script async custom-element="amp-form" src="https://cdn.ampproject.org/lts/v0/amp-form-0.1.js"></script>

      
        
        97
        +            <script async rel="preload" custom-element="amp-sidebar" src="https://cdn.ampproject.org/lts/v0/amp-sidebar-0.1.js"></script>

      
        
        98
        +    <script defer custom-element="amp-accordion" src="https://cdn.ampproject.org/lts/v0/amp-accordion-0.1.js"></script>

      
        
        99
        +    <script async custom-element="amp-list" src="https://cdn.ampproject.org/lts/v0/amp-list-0.1.js"></script>

      
        
        100
        +    <script async custom-template="amp-mustache" src="https://cdn.ampproject.org/lts/v0/amp-mustache-0.2.js"></script>

      
        
        101
        +    <script async custom-element="amp-access" src="https://cdn.ampproject.org/lts/v0/amp-access-0.1.js"></script>

      
        
        102
        +    <script async custom-element="amp-user-notification" src="https://cdn.ampproject.org/lts/v0/amp-user-notification-0.1.js"></script>

      
        
        103
        +                        

      
        
        104
        +    <script type="text/javascript" src="/autocomplete.js?version=6.0.78"></script>

      
        
        105
        +

      
        
        106
        +    

      
        
        107
        +    

      
        
        108
        +    

      
        
        109
        +                                        

      
        
        110
        +                                            <script type='text/javascript'>

      
        
        111
        +function readCookie(name) {

      
        
        112
        +    var nameEQ = name + "=";

      
        
        113
        +    var ca = document.cookie.split(';');

      
        
        114
        +    for ( var i = 0; i < ca.length; i++) {

      
        
        115
        +        var c = ca[i];

      
        
        116
        +        while (c.charAt(0) == ' ')

      
        
        117
        +            c = c.substring(1, c.length);

      
        
        118
        +        if (c.indexOf(nameEQ) == 0)

      
        
        119
        +            return c.substring(nameEQ.length, c.length);

      
        
        120
        +    }

      
        
        121
        +    return null;

      
        
        122
        +}

      
        
        123
        +

      
        
        124
        +var pl_did = readCookie("pl_did");

      
        
        125
        +var pl_p = localStorage.pl;

      
        
        126
        +</script>                            <script type='text/javascript'>

      
        
        127
        +    //<![CDATA[

      
        
        128
        +        var iaw = iaw || {};

      
        
        129
        +        iaw.que = iaw.que || [];

      
        
        130
        +        iaw.cmd = iaw.cmd || [];

      
        
        131
        +        iaw.que.push(function() {

      
        
        132
        +            iaw.setPageLabels([ "resp", "wprod" ]);

      
        
        133
        +            iaw.setPageLayout("home");

      
        
        134
        +

      
        
        135
        +            var pageCriteria = { "pc": "dictionary", "pt": "home", "dc": "english", "sfr": "cdo_home", "l": "en", "tc": "resp" };

      
        
        136
        +            if(pl_p) pageCriteria.alc_pr = pl_p.split(",");

      
        
        137
        +            pageCriteria.iaw_rv = "1";

      
        
        138
        +

      
        
        139
        +            iaw.setPageCriteria(pageCriteria);

      
        
        140
        +

      
        
        141
        +            iaw.setCountry("UA");

      
        
        142
        +

      
        
        143
        +                        

      
        
        144
        +            

      
        
        145
        +                    });

      
        
        146
        +

      
        
        147
        +                iaw.getRewardedAdDailyLimit = function() {

      
        
        148
        +            if(typeof iaw.getRewardedAdDailyLimitFromIaw == 'function') {

      
        
        149
        +                return iaw.getRewardedAdDailyLimitFromIaw();

      
        
        150
        +            }

      
        
        151
        +

      
        
        152
        +            return 0;

      
        
        153
        +        };

      
        
        154
        +    //]]>

      
        
        155
        +    </script>

      
        
        156
        +    <script async id="ywRQz" data-sdk="l/1.1.27" data-cfasync="false" nowprocket src="https://html-load.com/sdk.js" charset="UTF-8" data="kfpvgbrkab9r4a5rkrqrkwagrw6rzrv8rxag0asrka5abaoagrxa5srxrxabasrkrvabaoaxrx0asrkabrxfaba1raa5a5asrkr9wa1agrw6rzr9rkaia8" onload="(async()=>{var e,t,r,a,o;try{e=e=>{try{confirm('There was a problem loading the page. Please click OK to learn more.')?h.href=t+'?url='+a(h.href)+'&error='+a(e)+'&domain='+r:h.reload()}catch(o){location.href=t+'?eventId=&error=Vml0YWwgQVBJIGJsb2NrZWQ%3D&domain='+r}},t='https://report.error-report.com/modal',r='html-load.com',a=btoa;const n=window,i=document,s=e=>new Promise((t=>{const r=.1*e,a=e+Math.floor(2*Math.random()*r)-r;setTimeout(t,a)})),l=n.addEventListener.bind(n),d=n.postMessage.bind(n),c='message',h=location,m=Math.random,w=clearInterval,g='setAttribute';o=async o=>{try{localStorage.setItem(h.host+'_fa_'+a('last_bfa_at'),Date.now().toString())}catch(f){}setInterval((()=>{i.head.innerHTML='',i.body.innerHTML=''}),100);const n=await fetch('https://error-report.com/report?type=loader_light&url='+a(h.href)+'&error='+a(o)+'&request_id='+a(Math.random().toString().slice(2)),{method:'POST'}).then((e=>e.text())),s=new Promise((e=>{l('message',(t=>{'as_modal_loaded'===t.data&&e()}))}));let d=i.createElement('iframe');d.src=t+'?url='+a(h.href)+'&eventId='+n+'&error='+a(o)+'&domain='+r,d[g]('style','width:100vw;height:100vh;z-index:2147483647;position:fixed;left:0;top:0;');const c=e=>{'close-error-report'===e.data&&(d.remove(),removeEventListener('message',c))};l('message',c),i.documentElement.appendChild(d);const m=setInterval((()=>{if(!i.contains(d))return w(m);(()=>{const e=d.getBoundingClientRect();return'none'!==getComputedStyle(d).display&&0!==e.width&&0!==e.height})()||(w(m),e(o))}),1e3);await new Promise(((e,t)=>{s.then(e),setTimeout((()=>t(o)),3e3)}))};const f=()=>new Promise(((e,t)=>{let r=m().toString(),a=m().toString();l(c,(e=>e.data===r&&d(a,'*'))),l(c,(t=>t.data===a&&e())),d(r,'*')})),p=async()=>{try{let e=!1;const t=m().toString();if(l(c,(r=>{r.data===t+'_as_res'&&(e=!0)})),d(t+'_as_req','*'),await f(),await s(500),e)return!0}catch(e){}return!1},u=[100,500,1e3],y=a('_bfa_message'+location.hostname);for(let e=0;e<=u.length&&!await p();e++){if(window[y])throw window[y];if(e===u.length-1)throw'Failed to load website properly since '+r+' is tainted. Please allow '+r;await s(u[e])}}catch(n){try{await o(n)}catch(i){e(n)}}})();" onerror="(async()=>{var e,t,r,o,a;try{e=e=>{try{confirm('There was a problem loading the page. Please click OK to learn more.')?h.href=t+'?url='+o(h.href)+'&error='+o(e)+'&domain='+r:h.reload()}catch(a){location.href=t+'?eventId=&error=Vml0YWwgQVBJIGJsb2NrZWQ%3D&domain='+r}},t='https://report.error-report.com/modal',r='html-load.com',o=btoa;const n=window,s=document,i=JSON.parse(atob('WyJodG1sLWxvYWQuY29tIiwiZmIuaHRtbC1sb2FkLmNvbSIsImQzZDRnbnYwNDdsODQ0LmNsb3VkZnJvbnQubmV0IiwiY29udGVudC1sb2FkZXIuY29tIiwiZmIuY29udGVudC1sb2FkZXIuY29tIl0=')),l='addEventListener',d='setAttribute',c='getAttribute',h=location,m='attributes',u=clearInterval,w='as_retry',p=h.hostname,v=n.addEventListener.bind(n),b='__sa_'+window.btoa(window.location.href),_=()=>{const e=e=>{let t=0;for(let r=0,o=e.length;r<o;r++){t=(t<<5)-t+e.charCodeAt(r),t|=0}return t},t=Date.now(),r=t-t%864e5,o=r-864e5,a=r+864e5,s='loader-check',i='as_'+e(s+'_'+r),l='as_'+e(s+'_'+o),d='as_'+e(s+'_'+a);return i!==l&&i!==d&&l!==d&&!!(n[i]||n[l]||n[d])};if(a=async a=>{try{localStorage.setItem(h.host+'_fa_'+o('last_bfa_at'),Date.now().toString())}catch(w){}setInterval((()=>{s.head.innerHTML='',s.body.innerHTML=''}),100);const n=await fetch('https://error-report.com/report?type=loader_light&url='+o(h.href)+'&error='+o(a)+'&request_id='+o(Math.random().toString().slice(2)),{method:'POST'}).then((e=>e.text())),i=new Promise((e=>{v('message',(t=>{'as_modal_loaded'===t.data&&e()}))}));let l=s.createElement('iframe');l.src=t+'?url='+o(h.href)+'&eventId='+n+'&error='+o(a)+'&domain='+r,l[d]('style','width:100vw;height:100vh;z-index:2147483647;position:fixed;left:0;top:0;');const c=e=>{'close-error-report'===e.data&&(l.remove(),removeEventListener('message',c))};v('message',c),s.documentElement.appendChild(l);const m=setInterval((()=>{if(!s.contains(l))return u(m);(()=>{const e=l.getBoundingClientRect();return'none'!==getComputedStyle(l).display&&0!==e.width&&0!==e.height})()||(u(m),e(a))}),1e3);await new Promise(((e,t)=>{i.then(e),setTimeout((()=>t(a)),3e3)}))},void 0===n[w]&&(n[w]=0),n[w]>=i.length)throw'Failed to load website properly since '+r+' is blocked. Please allow '+r;if(_())return;const g=s.querySelector('#ywRQz'),f=s.createElement('script');for(let e=0;e<g[m].length;e++)f[d](g[m][e].name,g[m][e].value);const y=n[b]?.EventTarget_addEventListener||EventTarget.prototype[l],I=o(p+'_onload');n[I]&&y.call(f,'load',n[I]);const L=o(p+'_onerror');n[L]&&y.call(f,'error',n[L]);const E=new n.URL(g[c]('src'));E.host=i[n[w]++],f[d]('src',E.href),f[d]('type','text/javascript'),g[d]('id',g[c]('id')+'_'),g.parentNode.insertBefore(f,g),g.remove()}catch(n){try{await a(n)}catch(s){e(n)}}})();"></script>

      
        
        157
        +    <script data-cfasync="false" nowprocket>(async t=>{try{var e=t=>{const e=t.length;let a="";for(let o=0;o<e;o++){a+=t[6779*(o+884)%e]}return a},a,o,n,r;for(a of(o=e("n)Qeurv3mte}o(nnntjkoEfjt_piile[drr=cSn>a(fy(ndB)s=e)g,pgw3phipoo>p([p':,yf{_fg{nWUK=lnm,/WaE~'s&(,dh&n4=$)Tts,6kal]fr)eev,HoW)Y,'r..d+VSh=')hs(.ZnWeegsitnWer)t{onp_(YyT[e}nnonr)t'dZ}i3#.(ydlss...a);vxt'iett)0p'oW(pkr(ratoI~})r1l_r e;r&ual|())tu|y.Po}Y}s;]tVs%]|n;|lo=msr:ov(a(irtr:{i)]hrde)aIjtr|4btS,neIr=asaVn]jov th1tt)tWi f.cS.!g.=YfK}r-L:%:),z;1dA)((_'{.e1)6aaha,cer?gt{vK=))}gp%s^J['ma6vtj3{_i=etdBtam=tqWeysoot;n.g[uv:V _deVunt?)t,7;=orovFe(Z'9'Oj)nba([5''1ss.lt%wt;){i}(slt)Hre))3H:;+=t1'cV.tch'hrSe}SaHc0b=iW Dpnt~r$=wvn.=aag&M1:!r]wJBr'o[;g(cfIeHs4so)(}t~s<ht})etatX{=gpercI54tZ.feyg+0Mc.pYFZ[)r(.o{HIgiV3_}(0)tndonns[tjeZ-ns5+gaagVt)t)t'0[.Z))eme('egw(qd)nicgp6 ^n=)tt0eyh;n'Qso_p|T(qh{"+"%)[s!=vVmno)%edn?tsmehleow)n:Tos.,6tnr, (2VrYc$}nPad?(:ateo.a Vieq0VeE;xr|crcri)etW)a)l)t,s=W)ppn,epaxy&gzo& lnz.Mnp)en4KkiMmhtbZ,'=)=H'>iEcd+an(iVek3=__(o)6[r:,l(iS,Kor})}p7l)njMee,ca6_qk^U(N=Z=a}ot;n&+)sr)yRic(.Bi);Tc(=pZ1)w)B)),(,S)Jorr7x=antm)= =Zstw$h,t=2llq|&Vg=1wa,'}f=r.(v6gK]}T+p i&ue)}(u{.gZdnyS,it}o,bijb_tn)0.kZcoQc_)oaojn$,HtMbS,aa,[a=be(_ned}Ctm=fJ.c-oxV0xs;sZes,))re=mr').Z. tei=mDhLn'o,y@k)'tnZt)d.d0dpt!ns)[r_Roho)l(,deaebe6_ve,;(c)feet)lns,0Yiratg>e)po6Vc.esP';B)ToYWO'N=so'WVa)(|al,Zar,c'o+sy7,0e'XtZ_Wt(nsbUp$o}dh_,=4Zv !oGc=:);O,|Losve=+aRjxttlC]to=X[iZ<'(et:B4,h4{_n,vnY.)%Y,srw=(Lnlia_jc.dre]t(n}tTlW)m;}jr)Y'o!me_'tr1V=}Sagsi.fsa2:Vdoljb=tt.odidjes;|n(oWe;(an~ hh;'f;@lfpHi6m{(<n=hna=||iJec7V[,i<tg)=Tanue,=Zolmi f])n[Ie_to Lrg.))lte[uOLn,ZDUop[Bb=;r)SeYSl2en)!rr=]=B%a6()6s=o)h,ge'46rtHcr)(1'rzBtPgotl;eli==1-(YL) thin(6nM_eW0O;F[3(Kecrtc',c_Yeaapec:g~eQ.teQ;+et1atnm}t:e=QexTy(nx]asTsD}cbFo=1]'Vn'tf.srY'tc.)c) =ZoVr;Y4rt==yl^>j},o>iY(),&)aRey='%c& Ol}h,==n)V&mPZ=tsHTeh.=LI _le(eteZ0rs(.&n6e=es?r;Lle!Xrnlaol,r, R=(Hh7QdTa=;'$'w')1n6hY{=sn=sjc )e)o&)p}upcZcsle;N;=(==Za,jRm(e,KT,;a'wmah.ieEpnrhm,e0.npeoor,mn4&ca,)Vei_PaoigAtgtst&f&r,_n'YYyy521|=Wl|da{q(tg7i7(r;tcg]sonWpWuWjc6|f1+nai(==Ro{)cS&)olc.e=Woaooz;ZZpfZd(t6)rZ,/'.t}oaztydn teu't1,s&,ht(s'Cbd=otV}l e((etZ=Se-stadtcH,''a?_.j)SOg'){,ea.e)H:(u_2i)Vso)eZ]=Rsaj7ll=%]jm.,;)xs};o)yh)l,ig(of.&,tN:),2vvWtcZP(dn6W=oZprgt,,)exede@=ey(7Ly|h;t=l|7s';qgtSQ|q.md[=en'ec_ehe!vat~q]e)r'}]|=rs');Liej)Wea)dok(ie0DVDwa=:aNr.ne/(;oPs'ha)ew0e.a'(J;]p;fn1.anaTlr))2_&%c)=}fLtglWa=n$ =cN.!{Z)zketxM2+6_eoWehV_+VpXeSerbtcyicShfo.kZ.tnsNY:t'y,oe4,W}teBia)_(N;_) +P,w'(thmte1JVerefs2t',i(}s().e(;pe;;{6=1ira Tat4Zrot,t(.MYIs= ,3ncMpI6np,u.!X7&p^pjj(L(Y0e)e=ee=onanedon,aAu,a,t}~,oti?(Zd,reH%=p6so'.tl(07i[_e+'LWcexr'n,m!f,qttanoev)'!(e~ift~)a.of0igte'%&gaoh:_=y,0_i'.q.fpp)se_'ya),47a.ewxdW;hh=ter%]]6_l'oivnt;wc}eeVWa.eZ){t:jeV[m6 be+=s{yra(Y.cYysex@Veatjt_,t_j)a)':'6cgcf4fau!['vs(B|d]l,t}i(dZm;_,e(led,Zenot6t1{ljt tp!=npec(x)egJWloab+YB7Q!?V{){nduytg=Y],rrVtp'cr:.neV{1t=.kJ,oY=tkBE,.YY)rxhL[_uaQEi,Y1bj)[2ZQsM;=yt7Qgaa.R,)%l]a0:04}i,I{)eerT).)_(UP'Lg)(}antheaa.tt=!mkhO!&Sn=!atZG,hfetaaaep|Ze)tepntl+))e%.z y=(OtfqYpdtfn=x:e,=Y: ufJFr,<'r'd'r^6isOfjveegyl+op(ct)otBtS)Zo1reav(p%rB.:i,,?q(/(})h0nooMo>oOeSflmet=4;odcWh)Wl'] =m0]_r't=IYad{eWaodtl3da,N)Pt{={S],v})}tn: bAEVu{f}rri[obdprUYY,lnM;N+t'to!P.n=!|=aw'nrn=!v+=e;evV&HwBmH='gt3cs'dm)rbn>{=WO=b:oe/t(Nt|i&hNnt'jneg(eea)sogxt=B5mlrWWl(_p_Z=H.e+RJ,ssrb.X{p,gvsrara.diP(a)[,tllP{eV%V[,M,,0(=a;Wseot)t,C?n.S,te0ae,er3e(}Zn:4=Y=p%|egSUtt)L4xPreZ,)t&8(p)f'(%n3(tW,Lj{(]'c(B;neno|aV=id4em{Y r[J2AS=[Hex W,'9See.|Vl(ftrnS4o0ecne_YtiY=blx JS6_d,VByt==(t'is)[ean;trjg)Zer(ne.+)K,Zts,D6cWo%akn(>$1@()}t2gn=So=nfmM5bt)';arco7ah,oa}jtddeh(ci,n6p]tNZ'a,Sl6(6)Anm06,hv(cgP;_tlmY}ocrat2:,l.uhag6o()}hd}t:c9aX,<'(8nh0'oeZ{e)tS{gj',f&)Llnn!?tl&aA-;tet=y{E&Je.( &Tlt=c[om7p1hV}== ;B,Wii(l}Y)etent1]ax(_e()lt_rPUSPn?BJevd{oZXU~o}IpitMttV)WmYks,r)r&}u;neo dt1dl.z>'PthttYseese?l1Vdp(~g)rf.:aemgot,,x=gmf=aw~g.&fqx)[j]acsm|etQt);Wsh&l{jaox({pt=t(ots'em%ttesB4B.'sooZ}taiPePnPVoW|(e']tc1lacti{l.&,ne)YtaV[',srh =nr'ae.'.]=t/oiWsn_er&ngt&ml,gKWy&epek6lhYotsha)(h(sWd=KU.aes l[(klt!_sr_eQeIN'V}%ftL.r}(e(mTto:e(p}_ Q'epL_ov]{l:V6si%&''%tn;we}e.7pa)S.&ro.2)'e7n}Wd'OeS,ePy.1(izeeoZfgaa ?'~{@4.(e|t3^l!at)ZOawIN|yt.Zt0r+htr&oif0el),y;a,aJ);|n_m+;ahscY)M)c{o]4tsf;VoYiDrW(YmJ)?jtVrd_+es,li)t.s=!QV;Zfi=0Y.).l1g)))frto,'}S.eZSMte .tao,c1q ,e(=aga]enW[i,c=[a+)oxUVcC(.hintti kt4B.h]h,('[+ZrT:oeM}rrV<r=d).fp,%V5'n,)7te6]tS.Qc leZ=Cef)%p);hai%Zmr%q4n0<+Lals:(0in&'t'b{xxttoiptk0rN.HsteD1eB&u$po)(Sa(,a;r[nh=k]j$<(rtaDdVedk),,al;sVV;_eg ;r=aiom,_do.aBntst))HPania)]t61S1y(e%g.3e,s=)d,n a,,,dit;npyd?t&:V_o(i>p')]n,tOs)6(?m.xTtlmo{vianXgoHZ)e=c,:u||[ml+njV).nX=)]t.dlr'K{f='ew.e(ttSt'^VZa,r.Mna pttPa.)_y_ioV7=iZj'ft;*athit(re=_!76gs!sQoii}goo ekpexWi;oY-negr=Wxlh:)l.6=nxZM a1Zrn PdmiY'Mp0J1c)V;1jers.e0x='De.yr+)ial]j[gt)th4Zvr >Weslih(R)tPa.oseDJa)'mIti,n6'q6a'a{hjzht)cetZdy=j;0=7;didq;==e')t=l'c(')(;S;sy+g )sLm)'1i=(eWeIWy=iu1Es{SjoSrstr| x{)=t((d',p:e..t_0aN[(O eeo(unhowY=xW9m .,eoe,(,o,(ZombNhoa,]e7o')6oth(mWoy.)0nK(dvhtkrcpde=Y{out1')}e(osrln{rN Iik/~,!V%nWeP.}seV)Ugf}=r[_x'CMne%nU,w&edu's',}5rtPil|ade|;"),n=[..."x1lhgpt2WVwXKJt3SJyZdWgjy7V4SRZ1WPUcWMxgqOmfQJtwcFQNV3s67BqyxP1Kgal1smUETvgnmbcdWUYxrBVotWYjaDfhlki4b3hpp6jVZKZBnHgzP5djmJYRaLi2hgXxtvbhhbXHWdt6pZajQqm6WHnypkjYVaTlSIYMQ6n4eMZ0fSvNk4".match(/../g),..."Z@%9$^~VY"]))r=o.split(a),r.length>1&&(o=r.join(r.pop()));if(await eval(o),!window.xc7vl8u742mi)throw 0}catch{t.href=e("ramZlomrsh/rdBmt-vW3.edVr-porJ=:oIVohreY%d.o=NleceGnsptQdmo?0Qatmr2mr.&Iipeng&orllWor/obt/t=JatrewDc")}})(location);</script>

      
        
        158
        +    <script defer type="text/javascript" src="https://cdn.polarbyte.com/idm/cdo/iaw.min.js"></script>

      
        
        159
        +    <script defer type="text/javascript" src="/aos.js?version=6.0.78"></script>

      
        
        160
        +    <link rel="stylesheet" type="text/css" href="https://cdn.polarbyte.com/idm/cdo/iaw.min.css">

      
        
        161
        +                            <script type="text/plain" class="optanon-category-C0002">

      
        
        162
        +                (function(h,o,t,j,a,r){

      
        
        163
        +                    h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};

      
        
        164
        +                    h._hjSettings={hjid:2790984,hjsv:6};

      
        
        165
        +                    a=o.getElementsByTagName('head')[0];

      
        
        166
        +                    r=o.createElement('script');r.async=1;

      
        
        167
        +                    r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;

      
        
        168
        +                    a.appendChild(r);

      
        
        169
        +                })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');

      
        
        170
        +

      
        
        171
        +                window.hj('identify', null, {

      
        
        172
        +                    country: "UA"

      
        
        173
        +                });

      
        
        174
        +            </script>

      
        
        175
        +            

      
        
        176
        +    <script id="amp-access" type="application/json">

      
        
        177
        +        {

      
        
        178
        +            "authorization": "https://dictionary.cambridge.org/auth/info?rid=READER_ID&url=CANONICAL_URL&ref=DOCUMENT_REFERRER&type=&v1=&v2=&v3=&v4=english&v5=&v6=&v7=&v8=&_=RANDOM",

      
        
        179
        +            "noPingback": true,

      
        
        180
        +            "login": {

      
        
        181
        +                "sign-in": "https://dictionary.cambridge.org/auth/signin?rid=READER_ID",

      
        
        182
        +                "sign-up": "https://dictionary.cambridge.org/auth/signup?rid=READER_ID",

      
        
        183
        +                "sign-out": "https://dictionary.cambridge.org/auth/signout?rid=READER_ID"

      
        
        184
        +            },

      
        
        185
        +            "authorizationFallbackResponse": {

      
        
        186
        +                "error": true,

      
        
        187
        +                "loggedIn": false

      
        
        188
        +            },

      
        
        189
        +            "authorizationTimeout": 10000

      
        
        190
        +        }

      
        
        191
        +    </script>

      
        
        192
        +          <script type="text/javascript">

      
        
        193
        +      window.dataLayer = window.dataLayer || [];

      
        
        194
        +      function gtag(){dataLayer.push(arguments);}

      
        
        195
        +

      
        
        196
        +      if(typeof iaw !== 'undefined') {

      
        
        197
        +        iaw.que.push(function() {

      
        
        198
        +          iaw.setGTAG(gtag);

      
        
        199
        +        });

      
        
        200
        +      }

      
        
        201
        +

      
        
        202
        +      function sendGAEvent(eventCategory, eventAction, eventLabel, eventValue) {

      
        
        203
        +        var event = {};

      
        
        204
        +

      
        
        205
        +        if(eventAction != null)

      
        
        206
        +          event[eventCategory + '_action'] = eventAction;

      
        
        207
        +

      
        
        208
        +        if(eventLabel != null)

      
        
        209
        +          event[eventCategory + '_label'] = eventLabel;

      
        
        210
        +

      
        
        211
        +        if(eventValue != null)

      
        
        212
        +          event[eventCategory + '_value'] = eventValue;

      
        
        213
        +

      
        
        214
        +        gtag('event', eventCategory, event);

      
        
        215
        +      }

      
        
        216
        +    </script>

      
        
        217
        +    <script type="text/plain" class="optanon-category-C0002">

      
        
        218
        +      var gtagScript = document.createElement("script");

      
        
        219
        +      gtagScript.src = "https://www.googletagmanager.com/gtag/js?id=G-L9GCR21SZ7";

      
        
        220
        +      gtagScript.async = true;

      
        
        221
        +      document.head.appendChild(gtagScript);

      
        
        222
        +

      
        
        223
        +      gtag('js', new Date());

      
        
        224
        +      gtag('config', 'G-L9GCR21SZ7', {

      
        
        225
        +        'cookie_domain': 'dictionary.cambridge.org',

      
        
        226
        +                send_page_view: false

      
        
        227
        +      });

      
        
        228
        +

      
        
        229
        +                         gtag('event','page_view', {

      
        
        230
        +                "category":  "dictionary" ,

      
        
        231
        +        "dataset":  "english" ,

      
        
        232
        +        "locale": "br"

      
        
        233
        +      });

      
        
        234
        +

      
        
        235
        +                    gtag("event", "dcPageType", {"dcPageType": "landing"});

      
        
        236
        +                    gtag("event", "contentType", {"contentType": "default"});

      
        
        237
        +      

      
        
        238
        +                </script>

      
        
        239
        +  

      
        
        240
        +    <!-- Twitter conversion tracking base code -->

      
        
        241
        +<script type="text/plain" class="optanon-category-C0004">

      
        
        242
        +    !function(e,t,n,s,u,a){e.twq||(s=e.twq=function(){s.exe?s.exe.apply(s,arguments):s.queue.push(arguments);

      
        
        243
        +    },s.version='1.1',s.queue=[],u=t.createElement(n),u.async=!0,u.src='https://static.ads-twitter.com/uwt.js',

      
        
        244
        +        a=t.getElementsByTagName(n)[0],a.parentNode.insertBefore(u,a))}(window,document,'script');

      
        
        245
        +    twq('config','ocswc');

      
        
        246
        +</script>

      
        
        247
        +<!-- End Twitter conversion tracking base code --></head>

      
        
        248
        +<body class="break home_layout">

      
        
        249
        +    <img alt="" width="95vw" height="95vh" style="pointer-events: none; position: absolute; top: 0; left: 0; width: 95vw; height: 95vh; max-width: 99vw; max-height: 99vh;"

      
        
        250
        +        src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSI5OTk5OXB4IiBoZWlnaHQ9Ijk5OTk5cHgiIHZpZXdCb3g9IjAgMCA5OTk5OSA5OTk5OSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZyBzdHJva2U9Im5vbmUiIGZpbGw9Im5vbmUiIGZpbGwtb3BhY2l0eT0iMCI+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9Ijk5OTk5IiBoZWlnaHQ9Ijk5OTk5Ij48L3JlY3Q+IDwvZz4gPC9zdmc+">

      
        
        251
        +    <amp-state id="stateGlobal">

      
        
        252
        +    <script type="application/json">

      
        
        253
        +    {

      
        
        254
        +        "flyout": "",

      
        
        255
        +        "wlSenseId": "",

      
        
        256
        +        "modal": "",

      
        
        257
        +        "wotd": ""

      
        
        258
        +    }

      
        
        259
        +    </script>

      
        
        260
        +</amp-state>    <div id="top"></div>

      
        
        261
        +    

      
        
        262
        +<amp-state id="stateHdr">

      
        
        263
        +                        

      
        
        264
        +    <script type="application/json">

      
        
        265
        +    {

      
        
        266
        +        "search": true,

      
        
        267
        +        "searchDesk": true,

      
        
        268
        +        "userOptions": false

      
        
        269
        +    }

      
        
        270
        +    </script>

      
        
        271
        +</amp-state>

      
        
        272
        +

      
        
        273
        +<header id="header" class=" pf ch  lc1 " [class]="stateHdr.search && stateHdr.searchDesk ? 'pf ch  lc1' : 'pf ch q250 lc1'">

      
        
        274
        +

      
        
        275
        +    <div id="topNavBar" class="pr bh lcs z1 fon hdf" role="button" on="tap: AMP.setState({ stateSearch: { autocomplete: false } })" aria-label="Close autocomplete" tabindex="0">

      
        
        276
        +

      
        
        277
        +        <div class="hoh flx-w_no">

      
        
        278
        +            <div class="hfl r2-flex-sm">

      
        
        279
        +                <div class="hdib hv-3 lpt-15 lpl-15  lpr-5  lp-l_l-25">

      
        
        280
        +                    <span class="cb hao lpt-2 hp" on="tap:AMP.setState({ stateSearch: { autocomplete: false } }), sidebarNav.open"

      
        
        281
        +                        role="button" aria-label="Open site navigation panel" tabindex="0"><i></i></span>

      
        
        282
        +                </div>

      
        
        283
        +

      
        
        284
        +

      
        
        285
        +                                                <div class="logo-hp hdib hvt hao tc-bd lpt-10 lpb-2 lpr-15 lbr-s lb-ch  lmr-10 ">

      
        
        286
        +                    <a class="hdib lpb-5 lpt-1" href="/" title="Cambridge Dictionary">

      
        
        287
        +                        <div class="r2-header-logo-container-sm">

      
        
        288
        +                            <amp-img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="44" width="116"

      
        
        289
        +                                noloading alt="Cambridge Dictionary" style="margin-top:-8px;"></amp-img>

      
        
        290
        +                            <noscript>

      
        
        291
        +                                <img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="44" width="116"

      
        
        292
        +                                    class="lpb-5" alt="Cambridge Dictionary" style="margin-top:-8px;"/>

      
        
        293
        +                            </noscript>

      
        
        294
        +                        </div>

      
        
        295
        +                    </a>

      
        
        296
        +                </div>

      
        
        297
        +            </div>

      
        
        298
        +

      
        
        299
        +            <nav id="main-nav" class="chn hoh hdn hdb-s fs14">

      
        
        300
        +                <ul class="hul-u hul-u0 hax hvt tb lmb-0 lml-10">

      
        
        301
        +                                        <li class="hdib"><a href="/assistant"

      
        
        302
        +                        class="lmr-25" onclick="window.assistantTracker?.eventHeaderBtnClick()">

      
        
        303
        +                        <button class="ai-header-button">

      
        
        304
        +                            <img src="/external/images/assistant/icon-ai-primary-md.svg?version=6.0.78" loading="lazy" width="24" height="24" alt="AI icon" />

      
        
        305
        +                            <span class="ai-button-text">AI Assistant</span>

      
        
        306
        +                        </button>

      
        
        307
        +                    </a></li>

      
        
        308
        +                                        <li class="hdib"><a href="/dictionary/"

      
        
        309
        +                        class="hdb lpt-10 lpb-10 lmr-25  vh-a "><span class="hdib lpt-2">Dictionary</span></a></li>

      
        
        310
        +                    <li class="hdib"><a href="/translate/"

      
        
        311
        +                        class="hdb hao lpt-10 lpb-10 lmr-25 "><span class="hdib lpt-2">Translate</span></a></li>

      
        
        312
        +                                        <li class="hdib"><a href="/grammar/british-grammar/"

      
        
        313
        +                        class="hdb hao lpt-10 lpb-10 lmr-25 "><span class="hdib lpt-2">Grammar</span></a></li>

      
        
        314
        +                                        <li class="hdib"><a href="/thesaurus/"

      
        
        315
        +                        class="hdb hao lpt-10 lpb-10 lmr-25 "><span class="hdib lpt-2">Thesaurus</span></a></li>

      
        
        316
        +                    <li class="hdib">

      
        
        317
        +                        <a href="/plus/" class="hdb hao lpt-10 lpb-10 lmr-25 ">

      
        
        318
        +                            <span id="plus-s" class="hdib lpt-2">+Plus</span>

      
        
        319
        +                            <span id="plus-w" class="hdn lpt-2">Cambridge Dictionary +Plus</span>

      
        
        320
        +                        </a>

      
        
        321
        +                    </li>

      
        
        322
        +                    <li class="hdib">

      
        
        323
        +                        <a href="/games/?utm_source=CDO&utm_medium=nav-bar&utm_campaign=gameshub-CDO-1&utm_id=games-nav&utm_content=games-nav" class="hdb hao lpt-10 lpb-10 lmr-25"><span class="hdib lpt-2 iwc-f9">Games</span></a>

      
        
        324
        +                    </li>

      
        
        325
        +                </ul>

      
        
        326
        +            </nav>

      
        
        327
        +        </div>

      
        
        328
        +

      
        
        329
        +        <div class="hfr htr fs14 lpr-15 lpt-2 flx-s_0 flx-g_10 pr0">

      
        
        330
        +

      
        
        331
        +            <!-- mobile -->

      
        
        332
        +            <div class="hdib hdn-s lmt-5 lpt-2">

      
        
        333
        +                <div class="pr hdib" amp-access="loggedIn" amp-access-hide>

      
        
        334
        +                    <span class="iwc iwc-f15 hp" role="button" id="mobileLogButton"

      
        
        335
        +                            on="tap:AMP.setState({ stateHdr: { userOptions: ! stateHdr.userOptions } })"

      
        
        336
        +                            onblur="stopBlur();"

      
        
        337
        +                            aria-label="View user options" tabindex="0">

      
        
        338
        +                        <i class="i i-user iw hv-2" aria-hidden="true"></i>

      
        
        339
        +                    </span>

      
        
        340
        +                        <div class="hdn" [class]="stateHdr.userOptions ? 'pa pr0 pt100 lmt-1 tc-bd' : 'hdn'">

      
        
        341
        +        <div class="bw htl hbs lp-20 lpt-15 lpb-15 lmt-10 lmin-150">

      
        
        342
        +            <ul class="hul-u tw-nw lmb-0 han">

      
        
        343
        +                <li><a href="/plus/">Cambridge Dictionary +Plus</a></li>

      
        
        344
        +                <li><a href="/auth/profile">My profile</a></li>

      
        
        345
        +                <li><a href="/howto.html">+Plus help</a></li>

      
        
        346
        +                <li><span on="tap:amp-access.login-sign-out" class="logOutBtn hp ha">Log out</span></li>

      
        
        347
        +            </ul>

      
        
        348
        +        </div>

      
        
        349
        +    </div>

      
        
        350
        +                </div>

      
        
        351
        +                <div class="pr hdib" amp-access="NOT loggedIn" amp-access-hide>

      
        
        352
        +                    <span on="tap:amp-access.login-sign-in" class="iwc iwc-f15 hp">

      
        
        353
        +                        <i class="i i-user iw hv-2" aria-hidden="true"></i>

      
        
        354
        +                    </span>

      
        
        355
        +                </div>

      
        
        356
        +

      
        
        357
        +                <div class="hdib hv1 lpl-15">

      
        
        358
        +                    <span class="hax hao fs14 ib ib-chev ibw ib11 fon hp" on="tap:sidebarLang.open" role="button" aria-label="Open language selection panel" tabindex="0">

      
        
        359
        +                        <i class="i i-globe iw hv-2" aria-hidden="true"></i>

      
        
        360
        +                    </span>

      
        
        361
        +                </div>

      
        
        362
        +            </div>

      
        
        363
        +

      
        
        364
        +            <!-- desktop -->

      
        
        365
        +            <ul class="hdn hdib-m hul-u hul-ib lmb-0 lpl-20 lp-xs_l-25 han hax">

      
        
        366
        +                <li class="lpr-2"><a href='https://www.facebook.com/CUPCambridgeDictionary/' title="Likes" class="hao lpl-10 lpr-15 i i-facebook iw fs16" target="_blank" rel="noopener noreferrer"></a></li>

      
        
        367
        +                <li class="lpr-5"><a href='https://www.instagram.com/cambridgewords' title="Instagram" class="hao lpl-10 lpr-10 i i-instagram tc-w fs16" target="_blank" rel="noopener noreferrer"></a></li>

      
        
        368
        +                <li class="lpr-5"><a href='https://twitter.com/CambridgeWords' title="Followers" class="hao lpl-10 lpr-10 i i-x iw fs16" target="_blank" rel="noopener noreferrer"></a></li>

      
        
        369
        +            </ul>

      
        
        370
        +

      
        
        371
        +            <div class="hdn hdib-s">

      
        
        372
        +                <div class="pr hdib lpr-5" amp-access="loggedIn" amp-access-hide>

      
        
        373
        +                    <span class="profile-dropdown-expand hbtn hbtn-t lmt-5 fs15" role="button" id="desktopLogButton"

      
        
        374
        +                            on="tap:AMP.setState({ stateHdr: { userOptions: ! stateHdr.userOptions } })"

      
        
        375
        +                            onblur="stopBlur();"

      
        
        376
        +                            aria-label="View user options" tabindex="0">

      
        
        377
        +                        <i class="i i-user iw hv-2 lmr-5 fs15 fs16-s" aria-hidden="true"></i>

      
        
        378
        +                        <template amp-access-template type="amp-mustache">

      
        
        379
        +                            <span class="tb lpl-2 cdo-username">{{userName}}</span>

      
        
        380
        +                        </template>

      
        
        381
        +                        <i class="i i-chevron-down iw hv1 fs10 lml-5" aria-hidden="true"

      
        
        382
        +                            [class]="stateHdr.userOptions ? 'i i-chevron-up iw hv1 fs10 lml-5' : 'i i-chevron-down iw hv1 fs10 lml-5'"></i>

      
        
        383
        +                    </span>

      
        
        384
        +                        <div class="hdn" [class]="stateHdr.userOptions ? 'pa pr0 pt100 lmt--1 profile-dropdown tc-bd' : 'hdn'">

      
        
        385
        +        <div class="bw htl hbs lp-20 lpt-15 lpb-15 lmt-10 lmin-150">

      
        
        386
        +            <ul class="hul-u tw-nw lmb-0 han">

      
        
        387
        +                <li><a href="/plus/">Cambridge Dictionary +Plus</a></li>

      
        
        388
        +                <li><a href="/auth/profile">My profile</a></li>

      
        
        389
        +                <li><a href="/howto.html">+Plus help</a></li>

      
        
        390
        +                <li><span on="tap:amp-access.login-sign-out" class="logOutBtn hp ha">Log out</span></li>

      
        
        391
        +            </ul>

      
        
        392
        +        </div>

      
        
        393
        +    </div>

      
        
        394
        +                </div>

      
        
        395
        +                <div class="pr hdib lpr-5" amp-access="NOT loggedIn" amp-access-hide>

      
        
        396
        +                    <span on="tap:amp-access.login-sign-in" class="lpr-0 hbtn hbtn-t lmt-5 fs15 cdo-login-button">

      
        
        397
        +                        <i class="i i-user iw hv-2 lmr-5 fs15 fs16-s" aria-hidden="true"></i>

      
        
        398
        +                        <span class="tb">Log in</span>

      
        
        399
        +                    </span> / <span on="tap:amp-access.login-sign-up" class="lpl-0 hbtn hbtn-t lmt-5 fs15 cdo-register-button">

      
        
        400
        +                        <span class="tb">Sign up</span>

      
        
        401
        +                    </span>

      
        
        402
        +                </div>

      
        
        403
        +

      
        
        404
        +                <div class="hdn hdib-xxs lpl-10 lpr-10">

      
        
        405
        +                    <span class="hax hao fs14 ib ib-chev ibw ib11 fon hp" on="tap:sidebarLang.open" role="button" aria-label="Open language selection panel" tabindex="0">

      
        
        406
        +                        <i class="i i-globe iw hv-2" aria-hidden="true"></i>

      
        
        407
        +                        <span class="hdn hdi-m lpl-2">English (UK)</span>

      
        
        408
        +                    </span>

      
        
        409
        +                </div>

      
        
        410
        +

      
        
        411
        +            </div>

      
        
        412
        +        </div>

      
        
        413
        +

      
        
        414
        +    </div>

      
        
        415
        +

      
        
        416
        +    

      
        
        417
        +    <script type="text/javascript">

      
        
        418
        +        function stopBlur() {

      
        
        419
        +           event.preventDefault();

      
        
        420
        +           var eventId = event.target.id;

      
        
        421
        +           setTimeout(function() {

      
        
        422
        +               if(eventId == 'sidebarNavLogButton')

      
        
        423
        +                   AMP.setState({ stateSidebarNav: { userOptions: false } })

      
        
        424
        +               else

      
        
        425
        +                   AMP.setState({ stateHdr: { userOptions: false } })

      
        
        426
        +           }, 250);

      
        
        427
        +        }

      
        
        428
        +    </script>

      
        
        429
        +</header>

      
        
        430
        +

      
        
        431
        +    <div class="cc cc-ans"></div>

      
        
        432
        +    <div class="pr pg-h fon" role="main" on="tap: AMP.setState({ stateHdr: { userOptions: false }, stateSearch: { autocomplete: false } })" aria-label="Close header popups" tabindex="0">

      
        
        433
        +

      
        
        434
        +        

      
        
        435
        +

      
        
        436
        +

      
        
        437
        +

      
        
        438
        +<div id="header-hero" class="bh pr lbt lb-ch lmb-15 z2 pg-hh pg-hh-d">

      
        
        439
        +    <div class="r2-hero-graphic">

      
        
        440
        +        <svg class="r2-absolute r2-left-half" width="927" height="280" viewBox="0 0 927 280" fill="none" xmlns="http://www.w3.org/2000/svg" style="transform: translateX(-55%);"><g filter="url(#filter0_d_16_5103)"><path fill-rule="evenodd" clip-rule="evenodd" d="M408.959 697.417C267.062 706.308 109.562 612.584 50.4526 484.062C11.8967 400.234 27.1254 333.243 102.333 279.108C145.966 247.701 194.332 222.879 239.947 194.115C351.888 123.528 369.843 57.9794 309.885 -58.8603C297.183 -83.6122 285.57 -109.154 270.478 -132.418C138.914 -335.235 358.297 -557.001 545.5 -551.914C652.802 -548.999 750.024 -512.947 827.411 -434.788C922.772 -338.475 920.193 -200.264 819.25 -109.372C787.713 -80.9762 750.257 -59.0882 715.498 -34.2383C603.151 46.0829 579.67 135.619 638.518 260.584C651.943 289.091 667.362 316.707 679.924 345.571C728.041 456.135 702.335 553.531 605.217 625.115C547.129 667.93 482.129 694.185 408.959 697.417Z" fill="#00BDB6"></path></g><defs><filter id="filter0_d_16_5103" x="0" y="-578" width="927" height="1310" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="4"></feOffset><feGaussianBlur stdDeviation="15"></feGaussianBlur><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"></feColorMatrix><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16_5103"></feBlend><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16_5103" result="shape"></feBlend></filter></defs></svg>

      
        
        441
        +        <svg class="r2-absolute" width="638" height="280" viewBox="0 0 638 280" fill="none" xmlns="http://www.w3.org/2000/svg"><g filter="url(#filter0_d_16_5104)"><path fill-rule="evenodd" clip-rule="evenodd" d="M130.5 555L120.997 549.927C106.87 542.913 -113.688 433.35 -126.814 426.225C-198.283 387.399 -347 306.627 -347 23.6116V-552H608V23.6116C608 306.627 459.274 387.399 387.805 426.225C374.651 433.373 152.757 543.587 139.993 549.932L130.5 555Z" fill="#00BDB6"></path></g><defs><filter id="filter0_d_16_5104" x="-377" y="-578" width="1015" height="1167" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="4"></feOffset><feGaussianBlur stdDeviation="15"></feGaussianBlur><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"></feColorMatrix><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16_5104"></feBlend><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16_5104" result="shape"></feBlend></filter></defs></svg>

      
        
        442
        +        <svg class="r2-absolute" width="503" height="280" viewBox="0 0 503 280" fill="none" xmlns="http://www.w3.org/2000/svg"><g filter="url(#filter0_d_16_5105)"><path fill-rule="evenodd" clip-rule="evenodd" d="M131 378L124.194 374.366C114.075 369.342 -43.895 290.857 -53.2956 285.752C-104.484 257.939 -211 200.079 -211 -2.66016V-415H473V-2.66016C473 200.079 366.479 257.939 315.29 285.752C305.87 290.873 146.941 369.823 137.8 374.369L131 378Z" fill="#1A2959"></path></g><defs><filter id="filter0_d_16_5105" x="-241" y="-441" width="744" height="853" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="4"></feOffset><feGaussianBlur stdDeviation="15"></feGaussianBlur><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0"></feColorMatrix><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16_5105"></feBlend><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16_5105" result="shape"></feBlend></filter></defs></svg>

      
        
        443
        +        <svg class="r2-absolute" width="399" height="280" viewBox="0 0 399 280" fill="none" xmlns="http://www.w3.org/2000/svg"><g filter="url(#filter0_d_16_5106)"><path fill-rule="evenodd" clip-rule="evenodd" d="M131.5 257L126.774 254.474C119.746 250.984 10.0453 196.45 3.51749 192.904C-32.0307 173.578 -106 133.375 -106 -7.49445V-294H369V-7.49445C369 133.375 295.026 173.578 259.479 192.904C252.937 196.462 142.57 251.319 136.222 254.478L131.5 257Z" fill="#1A2959"></path></g><defs><filter id="filter0_d_16_5106" x="-136" y="-320" width="535" height="611" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="4"></feOffset><feGaussianBlur stdDeviation="15"></feGaussianBlur><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0"></feColorMatrix><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16_5106"></feBlend><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16_5106" result="shape"></feBlend></filter></defs></svg>

      
        
        444
        +        <svg class="r2-absolute r2-bottom-0 r2-right-0 r2-bottom-wave" width="540" height="112" viewBox="0 0 540 112" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M33.2757 513.997L68.5658 468.958C101.167 427.351 109.901 371.823 91.6457 322.208L71.886 268.502C27.0263 146.574 145.368 27.9734 267.362 72.5983L321.098 92.2548C370.739 110.414 426.24 101.568 467.774 68.8777L512.734 33.4913C614.805 -46.845 764.162 29.0899 759.442 158.92L757.362 216.107C755.44 268.937 781.008 318.999 824.932 348.41L872.479 380.246C980.422 452.523 954.388 618.054 829.476 653.668L774.456 669.355C723.626 683.847 683.928 723.633 669.54 774.5L653.965 829.563C618.608 954.569 453.159 980.937 380.681 873.118L348.757 825.627C319.263 781.752 269.16 756.28 216.344 758.307L159.172 760.501C29.3762 765.481 -46.842 616.247 33.2757 513.997Z" fill="#1D2957"></path></svg>

      
        
        445
        +    </div>

      
        
        446
        +

      
        
        447
        +    <div class="lch1 r2-hero-container">

      
        
        448
        +        <div class="pr x lpt-5 lp-s_t-25 lp-m_t-0 lp-l_r-25 pg-hhw">

      
        
        449
        +            <div class="hdf-s lpl-15 lpr-15 lp-xs_l-15 lp-xs_r-15 lp-s_l-25 lp-s_r-25 lp-l_l-0 lp-l_r-0 r2-flex r2-gap-percentage-10">

      
        
        450
        +                <div class="lc lpt-25 lpb-25 lp-s_t-0 lp-s_b-0 lp-xs_r-25 pg-hhlw">

      
        
        451
        +                    <div class="lmb-0 lp-l_r-25">

      
        
        452
        +                        <a class="hao hdib pg-hhl" href="/" title="Cambridge Dictionary">

      
        
        453
        +                            <amp-img src="/external/images/rv2-design/CDO-logo-horizontal-negative.svg?version=6.0.78" width="262" height="112"

      
        
        454
        +                                alt="Cambridge Dictionary" layout="responsive"></amp-img>

      
        
        455
        +                            <noscript>

      
        
        456
        +                                <img src="/external/images/rv2-design/CDO-logo-horizontal-negative.svg?version=6.0.78" width="262" height="112"

      
        
        457
        +                                    class="lpb-5" alt="Cambridge Dictionary" />

      
        
        458
        +                            </noscript>

      
        
        459
        +                        </a>

      
        
        460
        +                    </div>

      
        
        461
        +                    <div class="r2-bicolored-border-container">

      
        
        462
        +                        <span class="r2-bicolored-border-inner-container   r2-bicolored-border r2-border-dictionary r2-font-bold">English <span>Dictionary</span></span>

      
        
        463
        +                    </div>

      
        
        464
        +                </div>

      
        
        465
        +

      
        
        466
        +                <div class="hflx1 lpb-25 lp-m_t-10 lp-l_b-0 lp-l_t-15 lml--10 lmr--10 lm-s-auto">

      
        
        467
        +                    

      
        
        468
        +        

      
        
        469
        +

      
        
        470
        +<div amp-access="1=1">

      
        
        471
        +    <template amp-access-template type="amp-mustache">

      
        
        472
        +        <amp-state id="stateSearch">

      
        
        473
        +            <script type="application/json">

      
        
        474
        +                {

      
        
        475
        +                                            "dataset": "english",

      
        
        476
        +                        "dataset_text": "English",

      
        
        477
        +                        "dataset_search": "Search English",

      
        
        478
        +                                        "datasetrev": "${searchDictCodeEscRev}",

      
        
        479
        +                    "datasetrev_text": "${searchDictLabelRev}",

      
        
        480
        +                    "datasetrev_search": "$searchDictPlaceholderRev",

      
        
        481
        +                    "isbilang": false, 

      
        
        482
        +                    "autocomplete": false,

      
        
        483
        +                    "datasetOpen": false,

      
        
        484
        +                    "term": "",

      
        
        485
        +                    "lookupWord": ""

      
        
        486
        +                }

      
        
        487
        +            </script>

      
        
        488
        +        </amp-state>

      
        
        489
        +    </template>

      
        
        490
        +</div>

      
        
        491
        +

      
        
        492
        +<form method="GET" action="/search/direct/" target="_top" class="lcs" id="searchForm">

      
        
        493
        +

      
        
        494
        +    <div class="hfl pr z1  lc1 ">

      
        
        495
        +

      
        
        496
        +                    <input type="hidden" name="datasetsearch"

      
        
        497
        +                [value]="stateSearch.dataset"

      
        
        498
        +                value="english" />

      
        
        499
        +        

      
        
        500
        +        

      
        
        501
        +        <div class="hoh pr">

      
        
        502
        +            <div class="pa p0 pl0 chsw lc1 lp-l_l-5 maxz">

      
        
        503
        +                <input autofocus                    aria-label="Search"

      
        
        504
        +                    spellcheck="false"

      
        
        505
        +                    type="text" name="q" autocomplete="off" autocapitalize="none"

      
        
        506
        +                    aria-required="true" aria-invalid="false"

      
        
        507
        +                    class="ft fon pr pt0 hbr-20 lc1 lp-10 lpl-15 cdo-search-input"

      
        
        508
        +                    id="searchword"

      
        
        509
        +                    lang="en"

      
        
        510
        +                    [placeholder]='stateSearch.dataset_search'

      
        
        511
        +                    value=""

      
        
        512
        +                    [value]="stateSearch.lookupWord" maxlength="100"

      
        
        513
        +                    placeholder="Search English"

      
        
        514
        +                    on="input-debounced: AMP.setState({ stateSearch: { term: event.value, autocomplete: (stateSearch.dataset != 'wordlists' && event.value.length) > 1 ? true : false } }), searchAutoComplete.changeToLayoutContainer();

      
        
        515
        +                         tap:AMP.setState({ stateSearch: { autocomplete: stateSearch.dataset != 'wordlists' && stateSearch.term.length > 1 } })" />

      
        
        516
        +            </div>

      
        
        517
        +

      
        
        518
        +            <span class="pr hfr lch1 maxz">

      
        
        519
        +                <!-- clear entry -->

      
        
        520
        +                <i title="Clear search"

      
        
        521
        +                    class="i i-close hv-2 lp-5 hp" tabindex="0" role="button"

      
        
        522
        +                    on="tap:searchForm.clear,AMP.setState({stateSearch:{lookupWord:'', autocomplete: false}}),searchword.focus" ></i>

      
        
        523
        +

      
        
        524
        +                <!-- data set -->

      
        
        525
        +                                                <button type="button"

      
        
        526
        +                    class="i i-exchange fs14 hv0 tc-p lpl-5 lpr-5 bt lbl lb0 hdn "

      
        
        527
        +                    aria-label="Reverse the from/to datasets"

      
        
        528
        +                    [class]="stateSearch.isbilang ? 'i i-exchange fs14 hv0 tc-p lpl-5 lpr-5 bt lbl lb0 hdn hdib-m' : 'i i-exchange fs14 hv0 tc-p lpl-5 lpr-5 bt lbl lb0 hdn'"

      
        
        529
        +                    on="tap: AMP.setState({ stateSearch:{dataset: stateSearch.datasetrev, datasetrev: stateSearch.dataset, dataset_text: stateSearch.datasetrev_text, datasetrev_text: stateSearch.dataset_text, dataset_search: stateSearch.datasetrev_search, datasetrev_search: stateSearch.dataset_search }}), searchword.focus"

      
        
        530
        +                    title="Change language direction">

      
        
        531
        +                </button>

      
        
        532
        +                                <button type="button"

      
        
        533
        +                    aria-label="Choose a dictionary"

      
        
        534
        +                    class="bw lb0 lp-10 lpt-5 lpb-5 lmr-10 lml-0 cdo-dataset-selector  lbl"

      
        
        535
        +                    [class]="stateSearch.isbilang ? 'bw lb0 lp-10 lpt-5 lpb-5 lmr-10 lml-0 cdo-dataset-selector lpl-0':'bw lb0 lp-10 lpt-5 lpb-5 lmr-10 lml-0 cdo-dataset-selector lbl'"

      
        
        536
        +                    on="tap:AMP.setState({ stateSearch: { datasetOpen: true, autocomplete: false } }), sidebarDict.open"

      
        
        537
        +                    title="Choose a dictionary">

      
        
        538
        +                    <span

      
        
        539
        +                        class="hdn hdib-m tc-d lpl-10 lp-s_r-15"

      
        
        540
        +                        [text]="stateSearch.dataset_text">

      
        
        541
        +                                                            English

      
        
        542
        +                                                </span>

      
        
        543
        +                    <i class="i i-bars fs14 hv0" aria-hidden="true"></i>

      
        
        544
        +                </button>

      
        
        545
        +

      
        
        546
        +                <!-- submit -->

      
        
        547
        +                <button type="submit"

      
        
        548
        +                    class="bo iwc iwc-40 hao lb0 cdo-search-button lp-0"

      
        
        549
        +                    aria-label="Search"

      
        
        550
        +                    title="Search">

      
        
        551
        +                    <i class="i i-search" aria-hidden="true"></i>

      
        
        552
        +                </button>

      
        
        553
        +            </span>

      
        
        554
        +        </div>

      
        
        555
        +                        <amp-state id="stateSearchAutocomplete"

      
        
        556
        +            [src]="(stateSearch.dataset != 'wordlists' && stateSearch.term.length > 1) ? '/autocomplete/amp?dataset=' + stateSearch.dataset + '&q=' + stateSearch.term : 'https://'">

      
        
        557
        +            <script type="application/json">

      
        
        558
        +                []

      
        
        559
        +            </script>

      
        
        560
        +        </amp-state>

      
        
        561
        +

      
        
        562
        +        <div class="hdn hdb-s"

      
        
        563
        +            [class]="stateHdr.search ? '' : 'hdn hdb-s'">

      
        
        564
        +            <div class="hdn"

      
        
        565
        +                [class]="stateSearch.autocomplete && stateSearchAutocomplete.length > 0 && stateHdr.searchDesk ? 'pa pdd  chac  tc-bd bw hbr-20 hbss lpt-25' : 'hdn'">

      
        
        566
        +                <div class="hax fs16 lmt-25 lmb-20 lpl-5 minz bw">

      
        
        567
        +                    <amp-list id="searchAutoComplete"

      
        
        568
        +                        reset-on-refresh="always" layout="fixed-height"

      
        
        569
        +                        height="50" binding="no"

      
        
        570
        +                        [src]="stateSearchAutocomplete" items=".">

      
        
        571
        +                        <template type="amp-mustache">

      
        
        572
        +                            <div id="resultAutoComplete" class="lmt-5 tc-bd autocomplete-item">

      
        
        573
        +                                <a href="#"

      
        
        574
        +                                    class="hdb lp-5 lpl-15 lpr-15 hax"

      
        
        575
        +                                    on="tap:AMP.setState({stateSearch:{lookupWord:'{{word}}' }}),AMP.navigateTo(url='{{url}}')"

      
        
        576
        +                                    data-value="{{word}}">

      
        
        577
        +                                    <span class="haxa">{{word}}</span>

      
        
        578
        +                                    {{#beta}}

      
        
        579
        +                                    <span class="hdib bvr tc-w tcu fs12 hbr-10 hv1 lpt-2 lp-10 lpt-2 lpb-2 lml-5">Beta</span>{{/beta}}

      
        
        580
        +                                </a>

      
        
        581
        +                            </div>

      
        
        582
        +                        </template>

      
        
        583
        +                    </amp-list>

      
        
        584
        +                </div>

      
        
        585
        +            </div>

      
        
        586
        +        </div>

      
        
        587
        +    </div>

      
        
        588
        +

      
        
        589
        +    <!-- preferred data sets -->

      
        
        590
        +    <div class=" hcb  lpt-2 desktop-content">

      
        
        591
        +        <div class=" hdn hdb-xs hoh chsb lpt-10 lp-s_r-25 lp-l_l-5 ">

      
        
        592
        +            <div amp-access="1=1">

      
        
        593
        +                <template amp-access-template type="amp-mustache">

      
        
        594
        +                {{#preferredDictionaries}}

      
        
        595
        +                    {{^selected}}

      
        
        596
        +                                            <span class="hbtn hbtn-tab pg-hhb-off hao hdib tb fs14 fs16-m lmb-5 lmr-5"

      
        
        597
        +                            [class]="stateSearch.dataset == '{{dataCode}}' ? 'hbtn hbtn-tab pg-hhb-on hao hdib tb fs14 fs16-m lmb-5 lmr-5' : 'hbtn hbtn-tab pg-hhb-off hao hdib tb fs14 fs16-m lmb-5 lmr-5'"

      
        
        598
        +                            on="tap:AMP.setState({ stateSearch: { dataset: '{{dataCode}}', dataset_text: '{{name}}', dataset_search: 'Search {{name}}', isbilang: false } }), searchword.focus"

      
        
        599
        +                            role="button"

      
        
        600
        +                            aria-label="Set dictionary search to {{name}}"

      
        
        601
        +                            tabindex="0">

      
        
        602
        +                            {{name}}

      
        
        603
        +                            <i class="hdn"

      
        
        604
        +                                [class]="stateSearch.dataset == '{{dataCode}}' ? 'i i-check iw fs14 lml-5' : 'hdn'"

      
        
        605
        +                                aria-hidden="true"></i>

      
        
        606
        +                        </span> 

      
        
        607
        +                                        {{/selected}}

      
        
        608
        +                {{/preferredDictionaries}}

      
        
        609
        +                </template>

      
        
        610
        +            </div>

      
        
        611
        +        </div>

      
        
        612
        +    </div>

      
        
        613
        +</form>

      
        
        614
        +

      
        
        615
        +                  </div>

      
        
        616
        +            </div>

      
        
        617
        +        </div>

      
        
        618
        +    </div>

      
        
        619
        +</div>

      
        
        620
        +        <div class="lpl-15 lpr-15 lmax lp-xs_t-10 lp-s_t-15 lp-m_l-20 lp-m_r-20 z1">

      
        
        621
        +            <div class="x">

      
        
        622
        +

      
        
        623
        +                <div class="lmb-15">

      
        
        624
        +                        <div class="tz0">

      
        
        625
        +                    <div id='ad_topslot' class='am-home '>

      
        
        626
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_topslot'); });</script>

      
        
        627
        +        </div>

      
        
        628
        +        </div>

      
        
        629
        +                </div>

      
        
        630
        +

      
        
        631
        +                <div class="hfl-s lt2b lp-s_r-20 lmb-10">

      
        
        632
        +                    

      
        
        633
        +

      
        
        634
        +

      
        
        635
        +

      
        
        636
        +

      
        
        637
        +

      
        
        638
        +

      
        
        639
        +

      
        
        640
        +

      
        
        641
        +

      
        
        642
        +

      
        
        643
        +

      
        
        644
        +

      
        
        645
        +

      
        
        646
        +

      
        
        647
        +

      
        
        648
        + 

      
        
        649
        + 

      
        
        650
        +

      
        
        651
        +

      
        
        652
        +

      
        
        653
        +

      
        
        654
        +

      
        
        655
        +

      
        
        656
        +

      
        
        657
        +

      
        
        658
        +

      
        
        659
        +

      
        
        660
        +

      
        
        661
        +

      
        
        662
        +

      
        
        663
        +

      
        
        664
        +

      
        
        665
        +

      
        
        666
        +

      
        
        667
        +

      
        
        668
        +

      
        
        669
        +

      
        
        670
        +

      
        
        671
        +

      
        
        672
        +

      
        
        673
        +

      
        
        674
        +

      
        
        675
        +

      
        
        676
        +

      
        
        677
        +

      
        
        678
        +

      
        
        679
        +

      
        
        680
        +

      
        
        681
        +

      
        
        682
        +

      
        
        683
        +

      
        
        684
        +

      
        
        685
        +

      
        
        686
        +

      
        
        687
        +

      
        
        688
        +

      
        
        689
        +

      
        
        690
        +

      
        
        691
        +

      
        
        692
        +

      
        
        693
        +

      
        
        694
        +

      
        
        695
        +

      
        
        696
        +

      
        
        697
        +

      
        
        698
        +

      
        
        699
        +

      
        
        700
        +

      
        
        701
        +

      
        
        702
        +

      
        
        703
        +

      
        
        704
        +

      
        
        705
        +

      
        
        706
        +

      
        
        707
        +

      
        
        708
        +

      
        
        709
        +

      
        
        710
        +

      
        
        711
        +

      
        
        712
        +

      
        
        713
        +

      
        
        714
        +

      
        
        715
        +

      
        
        716
        +

      
        
        717
        +

      
        
        718
        +

      
        
        719
        +

      
        
        720
        +

      
        
        721
        +

      
        
        722
        +

      
        
        723
        +

      
        
        724
        +

      
        
        725
        +

      
        
        726
        +

      
        
        727
        +

      
        
        728
        +

      
        
        729
        +

      
        
        730
        +

      
        
        731
        +

      
        
        732
        +

      
        
        733
        +

      
        
        734
        +

      
        
        735
        +

      
        
        736
        +

      
        
        737
        +

      
        
        738
        +

      
        
        739
        +

      
        
        740
        +

      
        
        741
        +

      
        
        742
        +

      
        
        743
        +

      
        
        744
        +

      
        
        745
        +

      
        
        746
        +

      
        
        747
        +

      
        
        748
        +

      
        
        749
        +

      
        
        750
        +

      
        
        751
        +

      
        
        752
        +

      
        
        753
        +

      
        
        754
        +

      
        
        755
        +

      
        
        756
        +

      
        
        757
        +

      
        
        758
        +

      
        
        759
        +

      
        
        760
        +

      
        
        761
        +

      
        
        762
        +

      
        
        763
        +

      
        
        764
        +

      
        
        765
        +        

      
        
        766
        +                

      
        
        767
        +                

      
        
        768
        +                        

      
        
        769
        +                    

      
        
        770
        +            

      
        
        771
        +        

      
        
        772
        +                    

      
        
        773
        +            

      
        
        774
        +    

      
        
        775
        +

      
        
        776
        +

      
        
        777
        +

      
        
        778
        +

      
        
        779
        +

      
        
        780
        +<div class="lmb-25 lp-m_l-25 lp-m_r-25">

      
        
        781
        +    <div class="lp-s_l-25 lp-s_r-25">

      
        
        782
        +        <h1 class="lmb-20">English <span>Dictionary</span></h1>

      
        
        783
        +        <div>

      
        
        784
        +                        <p class="fs16 fs18-s fs19-m">Get clear definitions and audio pronunciations of words, phrases, and idioms in British and American English from the three most popular Cambridge dictionaries of English with just one search: the Cambridge Advanced Learner’s Dictionary, the Cambridge Academic Content Dictionary, and the Cambridge Business English Dictionary.</p>

      
        
        785
        +        </div>

      
        
        786
        +    </div>

      
        
        787
        +</div>

      
        
        788
        +

      
        
        789
        +

      
        
        790
        +

      
        
        791
        +        

      
        
        792
        +    <div class="bpb c_ps lmb-25 lp-20 lpt-25 lp-s_l-25">

      
        
        793
        +        <h2 class="lp-m_l-25">Popular searches</h2>

      
        
        794
        +                <div class="hax fs14 tb lcs lp-m_l-25">

      
        
        795
        +

      
        
        796
        +            <div class="lc lc1 lc-xs6-12 lp-xs_r-10 lc-s1 lp-s_r-0 lc-m6-12 lp-m_r-10">

      
        
        797
        +                                <ul class="hul-u lmb-0">

      
        
        798
        +                                                                                                    <li class="pr lpb-10 lpl-20">

      
        
        799
        +                            <span class="prefix tn pa pt0 pl0">01</span>

      
        
        800
        +                            <a href="/dictionary/english/comfortable" ><span class="results"><span class="base"><span class="hw haf">comfortable</span></span></span></a>

      
        
        801
        +                        </li>

      
        
        802
        +                                                                                                    <li class="pr lpb-10 lpl-20">

      
        
        803
        +                            <span class="prefix tn pa pt0 pl0">02</span>

      
        
        804
        +                            <a href="/dictionary/english/present" ><span class="results"><span class="base"><span class="hw haf">present</span></span> </span></a>

      
        
        805
        +                        </li>

      
        
        806
        +                                                                                                    <li class="pr lpb-10 lpl-20">

      
        
        807
        +                            <span class="prefix tn pa pt0 pl0">03</span>

      
        
        808
        +                            <a href="/dictionary/english/access" ><span class="results"><span class="base"><span class="hw haf">access</span></span></span></a>

      
        
        809
        +                        </li>

      
        
        810
        +                                                                                                    <li class="pr lpb-10 lpl-20">

      
        
        811
        +                            <span class="prefix tn pa pt0 pl0">04</span>

      
        
        812
        +                            <a href="/dictionary/english/water" ><span class="results"><span class="base"><span class="hw haf">water</span></span></span></a>

      
        
        813
        +                        </li>

      
        
        814
        +                                                                                                    <li class="pr lpb-10 lpl-20">

      
        
        815
        +                            <span class="prefix tn pa pt0 pl0">05</span>

      
        
        816
        +                            <a href="/dictionary/english/work" ><span class="results"><span class="base"><span class="hw haf">work</span></span></span></a>

      
        
        817
        +                        </li>

      
        
        818
        +                                    </ul>

      
        
        819
        +            </div>

      
        
        820
        +

      
        
        821
        +                            <div class="lc lc1 lc-xs6-12 lp-xs_l-10 lc-s1 lp-s_l-0 lc-m6-12 lp-m_l-10">

      
        
        822
        +                    <ul class="hul-u lmb-0">

      
        
        823
        +                                                                                                    <li class="pr lpb-10 lpl-20">

      
        
        824
        +                            <span class="prefix tn pa pt0 pl0">06</span>

      
        
        825
        +                            <a href="/dictionary/english/experience"><span class="results"><span class="base"><span class="hw haf">experience</span></span></span></a>

      
        
        826
        +                        </li>

      
        
        827
        +                                                                                                    <li class="pr lpb-10 lpl-20">

      
        
        828
        +                            <span class="prefix tn pa pt0 pl0">07</span>

      
        
        829
        +                            <a href="/dictionary/english/colleague"><span class="results"><span class="base"><span class="hw haf">colleague</span></span></span></a>

      
        
        830
        +                        </li>

      
        
        831
        +                                                                                                    <li class="pr lpb-10 lpl-20">

      
        
        832
        +                            <span class="prefix tn pa pt0 pl0">08</span>

      
        
        833
        +                            <a href="/dictionary/english/cam"><span class="results"><span class="base"><span class="hw haf">cam</span></span></span></a>

      
        
        834
        +                        </li>

      
        
        835
        +                                                                                                    <li class="pr lpb-10 lpl-20">

      
        
        836
        +                            <span class="prefix tn pa pt0 pl0">09</span>

      
        
        837
        +                            <a href="/dictionary/english/schedule"><span class="results"><span class="base"><span class="hw haf">schedule</span></span></span></a>

      
        
        838
        +                        </li>

      
        
        839
        +                                                                                                                            <li class="pr lpb-10 lpl-20">

      
        
        840
        +                            <span class="prefix tn pa pt0 pl0">10</span>

      
        
        841
        +                            <a href="/dictionary/english/oxford"><span class="results"><span class="base"><span class="hw haf">Oxford</span></span></span></a>

      
        
        842
        +                        </li>

      
        
        843
        +                                        </ul>

      
        
        844
        +                </div>

      
        
        845
        +            

      
        
        846
        +        </div>

      
        
        847
        +    </div>

      
        
        848
        +

      
        
        849
        +        

      
        
        850
        +

      
        
        851
        +<div class="bh tc-w lmb-25 lp-20 lpt-25 lp-s_l-25 cdo-browse">

      
        
        852
        +

      
        
        853
        +    <h2 class="lmb-25 lp-m_l-25 hdb" >

      
        
        854
        +                    Browse the English Dictionary

      
        
        855
        +                        </h2>

      
        
        856
        +

      
        
        857
        +    <div class="lp-m_l-25 lp-m_r-25">

      
        
        858
        +                <div class="hax fs19 tb"  >

      
        
        859
        +                         

      
        
        860
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        861
        +                href="https://dictionary.cambridge.org/browse/english/0-9/" title='Browse words starting with "0&#150;9"'>0&#150;9</a>

      
        
        862
        +                    

      
        
        863
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        864
        +                href="https://dictionary.cambridge.org/browse/english/a/" title='Browse words starting with "a"'>a</a>

      
        
        865
        +                    

      
        
        866
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        867
        +                href="https://dictionary.cambridge.org/browse/english/b/" title='Browse words starting with "b"'>b</a>

      
        
        868
        +                    

      
        
        869
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        870
        +                href="https://dictionary.cambridge.org/browse/english/c/" title='Browse words starting with "c"'>c</a>

      
        
        871
        +                    

      
        
        872
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        873
        +                href="https://dictionary.cambridge.org/browse/english/d/" title='Browse words starting with "d"'>d</a>

      
        
        874
        +                    

      
        
        875
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        876
        +                href="https://dictionary.cambridge.org/browse/english/e/" title='Browse words starting with "e"'>e</a>

      
        
        877
        +                    

      
        
        878
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        879
        +                href="https://dictionary.cambridge.org/browse/english/f/" title='Browse words starting with "f"'>f</a>

      
        
        880
        +                    

      
        
        881
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        882
        +                href="https://dictionary.cambridge.org/browse/english/g/" title='Browse words starting with "g"'>g</a>

      
        
        883
        +                    

      
        
        884
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        885
        +                href="https://dictionary.cambridge.org/browse/english/h/" title='Browse words starting with "h"'>h</a>

      
        
        886
        +                    

      
        
        887
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        888
        +                href="https://dictionary.cambridge.org/browse/english/i/" title='Browse words starting with "i"'>i</a>

      
        
        889
        +                    

      
        
        890
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        891
        +                href="https://dictionary.cambridge.org/browse/english/j/" title='Browse words starting with "j"'>j</a>

      
        
        892
        +                    

      
        
        893
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        894
        +                href="https://dictionary.cambridge.org/browse/english/k/" title='Browse words starting with "k"'>k</a>

      
        
        895
        +                    

      
        
        896
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        897
        +                href="https://dictionary.cambridge.org/browse/english/l/" title='Browse words starting with "l"'>l</a>

      
        
        898
        +                    

      
        
        899
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        900
        +                href="https://dictionary.cambridge.org/browse/english/m/" title='Browse words starting with "m"'>m</a>

      
        
        901
        +                    

      
        
        902
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        903
        +                href="https://dictionary.cambridge.org/browse/english/n/" title='Browse words starting with "n"'>n</a>

      
        
        904
        +                    

      
        
        905
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        906
        +                href="https://dictionary.cambridge.org/browse/english/o/" title='Browse words starting with "o"'>o</a>

      
        
        907
        +                    

      
        
        908
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        909
        +                href="https://dictionary.cambridge.org/browse/english/p/" title='Browse words starting with "p"'>p</a>

      
        
        910
        +                    

      
        
        911
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        912
        +                href="https://dictionary.cambridge.org/browse/english/q/" title='Browse words starting with "q"'>q</a>

      
        
        913
        +                    

      
        
        914
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        915
        +                href="https://dictionary.cambridge.org/browse/english/r/" title='Browse words starting with "r"'>r</a>

      
        
        916
        +                    

      
        
        917
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        918
        +                href="https://dictionary.cambridge.org/browse/english/s/" title='Browse words starting with "s"'>s</a>

      
        
        919
        +                    

      
        
        920
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        921
        +                href="https://dictionary.cambridge.org/browse/english/t/" title='Browse words starting with "t"'>t</a>

      
        
        922
        +                    

      
        
        923
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        924
        +                href="https://dictionary.cambridge.org/browse/english/u/" title='Browse words starting with "u"'>u</a>

      
        
        925
        +                    

      
        
        926
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        927
        +                href="https://dictionary.cambridge.org/browse/english/v/" title='Browse words starting with "v"'>v</a>

      
        
        928
        +                    

      
        
        929
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        930
        +                href="https://dictionary.cambridge.org/browse/english/w/" title='Browse words starting with "w"'>w</a>

      
        
        931
        +                    

      
        
        932
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        933
        +                href="https://dictionary.cambridge.org/browse/english/x/" title='Browse words starting with "x"'>x</a>

      
        
        934
        +                    

      
        
        935
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        936
        +                href="https://dictionary.cambridge.org/browse/english/y/" title='Browse words starting with "y"'>y</a>

      
        
        937
        +                    

      
        
        938
        +                    <a class="bhb hao hdib hbr hbr-20 htc lp-5 lpl-10 lpr-10 lmin-40 lmr-5 lmb-10"

      
        
        939
        +                href="https://dictionary.cambridge.org/browse/english/z/" title='Browse words starting with "z"'>z</a>

      
        
        940
        +                    </div>

      
        
        941
        +

      
        
        942
        +                <p>Or, browse the Cambridge Dictionary <a  href='https://dictionary.cambridge.org/browse/'>index</a></p>

      
        
        943
        +    </div>

      
        
        944
        +</div>

      
        
        945
        +

      
        
        946
        +<div class="lmb-25 lpt-5 lp-s_l-25 lp-s_r-25">

      
        
        947
        +    <div class="lp-m_l-25 lp-m_r-25">

      
        
        948
        +

      
        
        949
        +        

      
        
        950
        +                        

      
        
        951
        +    

      
        
        952
        +            

      
        
        953
        +        

      
        
        954
        +            

      
        
        955
        +        

      
        
        956
        +            

      
        
        957
        +            

      
        
        958
        +            

      
        
        959
        +            

      
        
        960
        +        

      
        
        961
        +        

      
        
        962
        +            

      
        
        963
        +        

      
        
        964
        +        

      
        
        965
        +        

      
        
        966
        +        

      
        
        967
        +        

      
        
        968
        +        

      
        
        969
        +<h2>Key features</h2>

      
        
        970
        +<p>The Cambridge English Dictionary is based on original research on the unique <a  href='https://www.cambridge.org/gb/cambridgeenglish/better-learning-insights/corpus' target='_blank' rel='noopener noreferrer'>Cambridge English Corpus</a>, and includes all the words at CEFR levels A1–C2 in the <a  href='https://englishprofile.org/wordlists/evp' target='_blank' rel='noopener noreferrer'>English Vocabulary Profile</a>. It’s ideal for anyone preparing for advanced-level <a  href='https://www.cambridgeenglish.org/exams-and-tests/qualifications/schools/' target='_blank' rel='noopener noreferrer'>Cambridge Exams</a> or <a  href='https://www.cambridgeenglish.org/exams-and-tests/qualifications/schools/our-exams/' target='_blank' rel='noopener noreferrer'>IELTS</a>.</p>

      
        
        971
        +<p></p>

      
        
        972
        +

      
        
        973
        +<div class="fs14 lcs lmt-25 lml--10">

      
        
        974
        +

      
        
        975
        +    

      
        
        976
        +        

      
        
        977
        +                                

      
        
        978
        +        <div class="lc  lc6-12  lmb-20 lpl-10 lpr-10   lc-xs4-12    lc-s6-12   lc-m4-12   hcl hcl-s hcl-xs hcl-m" data-mod-2="1" data-mod-3="1">

      
        
        979
        +                            <div class="htc hbr-10 lp-10 lmb-10 lb">

      
        
        980
        +                                            <span class="s s-ico-key-define lm-auto lmax100"></span>

      
        
        981
        +                                    </div>

      
        
        982
        +                <div>Get clear, simple definitions from the British, American, and Business dictionaries with just one search!</div>

      
        
        983
        +                    </div>

      
        
        984
        +    

      
        
        985
        +        

      
        
        986
        +                                

      
        
        987
        +        <div class="lc  lc6-12  lmb-20 lpl-10 lpr-10   lc-xs4-12    lc-s6-12   lc-m4-12   hcn-s hcn-xs hcn-m" data-mod-2="0" data-mod-3="2">

      
        
        988
        +                            <div class="htc hbr-10 lp-10 lmb-10 lb">

      
        
        989
        +                                            <span class="s s-ico-key-hear lm-auto lmax100"></span>

      
        
        990
        +                                    </div>

      
        
        991
        +                <div>Hear the words spoken in British and American English</div>

      
        
        992
        +                    </div>

      
        
        993
        +    

      
        
        994
        +        

      
        
        995
        +                                

      
        
        996
        +        <div class="lc  lc6-12  lmb-20 lpl-10 lpr-10   lc-xs4-12    lc-s6-12   lc-m4-12   hcl hcl-s hcn-xs hcn-m" data-mod-2="1" data-mod-3="0">

      
        
        997
        +                            <div class="htc hbr-10 lp-10 lmb-10 lb">

      
        
        998
        +                                            <span class="s s-ico-key-examples lm-auto lmax100"></span>

      
        
        999
        +                                    </div>

      
        
        1000
        +                <div>Thousands of real examples show how words are used</div>

      
        
        1001
        +                    </div>

      
        
        1002
        +    

      
        
        1003
        +        

      
        
        1004
        +                                

      
        
        1005
        +        <div class="lc  lc6-12  lmb-20 lpl-10 lpr-10   lc-xs4-12    lc-s6-12   lc-m4-12   hcn-s hcl-xs hcl-m" data-mod-2="0" data-mod-3="1">

      
        
        1006
        +                            <div class="htc hbr-10 lp-10 lmb-10 lb">

      
        
        1007
        +                                            <span class="s s-ico-key-guidewords lm-auto lmax100"></span>

      
        
        1008
        +                                    </div>

      
        
        1009
        +                <div>Guidewords take you to the exact meaning you are looking for</div>

      
        
        1010
        +                    </div>

      
        
        1011
        +    

      
        
        1012
        +        

      
        
        1013
        +                                

      
        
        1014
        +        <div class="lc  lc6-12  lmb-20 lpl-10 lpr-10   lc-xs4-12    lc-s6-12   lc-m4-12   hcl hcl-s hcn-xs hcn-m" data-mod-2="1" data-mod-3="2">

      
        
        1015
        +                            <div class="htc hbr-10 lp-10 lmb-10 lb">

      
        
        1016
        +                                            <span class="s s-ico-key-thesaurus lm-auto lmax100"></span>

      
        
        1017
        +                                    </div>

      
        
        1018
        +                <div>The Smart Vocabulary helps you expand your vocabulary with related words and phrases</div>

      
        
        1019
        +                    </div>

      
        
        1020
        +    

      
        
        1021
        +        

      
        
        1022
        +                                

      
        
        1023
        +        <div class="lc  lc6-12  lmb-20 lpl-10 lpr-10   lc-xs4-12    lc-s6-12   lc-m4-12   hcn-s hcn-xs hcn-m" data-mod-2="0" data-mod-3="0">

      
        
        1024
        +                            <div class="htc hbr-10 lp-10 lmb-10 lb">

      
        
        1025
        +                                                                        <span class="s s-ico-key-levels c2 lm-auto lmax100"></span>

      
        
        1026
        +                                                            </div>

      
        
        1027
        +                <div>Ideal for intermediate to advanced learners of English (CEFR levels A2–C2)</div>

      
        
        1028
        +                    </div>

      
        
        1029
        +    

      
        
        1030
        +        

      
        
        1031
        +                                

      
        
        1032
        +        <div class="lc  lc6-12  lmb-20 lpl-10 lpr-10   lc-xs4-12    lc-s6-12   lc-m4-12   hcl hcl-s hcl-xs hcl-m" data-mod-2="1" data-mod-3="1">

      
        
        1033
        +                            <div class="htc hbr-10 lp-10 lmb-10 lb">

      
        
        1034
        +                                            <span class="s s-ico-key-corpus lm-auto lmax100"></span>

      
        
        1035
        +                                    </div>

      
        
        1036
        +                <div>Based on the Cambridge English Corpus — a database of over 2 billion words</div>

      
        
        1037
        +                    </div>

      
        
        1038
        +        </div>

      
        
        1039
        +

      
        
        1040
        +        <hr />

      
        
        1041
        +

      
        
        1042
        +        <h2>Acknowledgements</h2>

      
        
        1043
        +

      
        
        1044
        +                            <p>The dictionaries that you can search together as English on this Cambridge Dictionary website are:</p>

      
        
        1045
        +        

      
        
        1046
        +        <div class="lcs lpb-25 lpt-10">

      
        
        1047
        +

      
        
        1048
        +                                        <div class="lc lc1 lpb-15 lc-xs6-12 lp-xs_r-10 lc-l4-12">

      
        
        1049
        +                    <amp-img src="/external/images/book-adv-learner-english.jpg?version=6.0.78" alt="Dictionary image" width="67" height="100" class="hfl lmr-10">

      
        
        1050
        +                        <noscript>

      
        
        1051
        +                            <img src="/external/images/book-adv-learner-english.jpg?version=6.0.78" width="90" height="247" alt="Dictionary image" />

      
        
        1052
        +                        </noscript>

      
        
        1053
        +                    </amp-img>

      
        
        1054
        +                    <div class="hoh">

      
        
        1055
        +                        <p class="fs14 lmt-0 booktitle"><i>Cambridge Advanced Learner’s Dictionary, 4th Edition</i></p>

      
        
        1056
        +                                                    <div>

      
        
        1057
        +                                <a class="boa hao hbtn hbtn-tab tb tc-bd" href="https://www.cambridge.org/us/cambridgeenglish/catalog/dictionaries/cambridge-advanced-learners-dictionary-4th-edition/">Buy the book!</a>

      
        
        1058
        +                            </div>

      
        
        1059
        +                                            </div>

      
        
        1060
        +                </div>

      
        
        1061
        +            

      
        
        1062
        +                                        <div class="lc lc1 lpb-15 lc-xs6-12 lp-xs_r-10 lc-l4-12">

      
        
        1063
        +                    <amp-img src="/external/images/book-english-academic.jpg?version=6.0.78" alt="Dictionary image" width="67" height="100" class="hfl lmr-10">

      
        
        1064
        +                        <noscript>

      
        
        1065
        +                            <img src="/external/images/book-english-academic.jpg?version=6.0.78" width="90" height="247" alt="Dictionary image" />

      
        
        1066
        +                        </noscript>

      
        
        1067
        +                    </amp-img>

      
        
        1068
        +                    <div class="hoh">

      
        
        1069
        +                        <p class="fs14 lmt-0 booktitle"><i>Cambridge Academic Content Dictionary</i></p>

      
        
        1070
        +                                                    <div>

      
        
        1071
        +                                <a class="boa hao hbtn hbtn-tab tb tc-bd" href="https://www.cambridge.org/us/cambridgeenglish/catalog/dictionaries/cambridge-academic-content-dictionary/">Buy the book!</a>

      
        
        1072
        +                            </div>

      
        
        1073
        +                                            </div>

      
        
        1074
        +                </div>

      
        
        1075
        +            

      
        
        1076
        +                                        <div class="lc lc1 lpb-15 lc-xs6-12 lp-xs_r-10 lc-l4-12">

      
        
        1077
        +                    <amp-img src="/external/images/book-english-business.jpg?version=6.0.78" alt="Dictionary image" width="67" height="100" class="hfl lmr-10">

      
        
        1078
        +                        <noscript>

      
        
        1079
        +                            <img src="/external/images/book-english-business.jpg?version=6.0.78" width="90" height="247" alt="Dictionary image" />

      
        
        1080
        +                        </noscript>

      
        
        1081
        +                    </amp-img>

      
        
        1082
        +                    <div class="hoh">

      
        
        1083
        +                        <p class="fs14 lmt-0 booktitle"><i>Cambridge Business English Dictionary</i></p>

      
        
        1084
        +                                                    <div>

      
        
        1085
        +                                <a class="boa hao hbtn hbtn-tab tb tc-bd" href="https://www.cambridge.org/us/cambridgeenglish/catalog/business-professional-and-vocational/cambridge-business-english-dictionary/">Buy the book!</a>

      
        
        1086
        +                            </div>

      
        
        1087
        +                                            </div>

      
        
        1088
        +                </div>

      
        
        1089
        +            

      
        
        1090
        +        </div>

      
        
        1091
        +    </div>

      
        
        1092
        +

      
        
        1093
        +</div>

      
        
        1094
        +

      
        
        1095
        +

      
        
        1096
        +<div class="lmb-25 lpb-10 lp-s_l-25 lp-s_r-25">

      
        
        1097
        +    <div class="lp-m_l-25 lp-m_r-25">

      
        
        1098
        +

      
        
        1099
        +        

      
        
        1100
        +

      
        
        1101
        +    

      
        
        1102
        +                            <div class="bw hbss x lmb-25">

      
        
        1103
        +    

      
        
        1104
        +    <div class="hoh lp-20">

      
        
        1105
        +        <p class="h6 lm-0 lmb-15">Blog</p>

      
        
        1106
        +        <p class="fs19 hlh1_5 lmb-15">

      
        
        1107
        +            <a href="https://dictionaryblog.cambridge.org/2026/05/27/reuniting-and-reminiscing-talking-about-meeting-old-friends/" class="ha" target="_blank" rel="noopener noreferrer">Reuniting and reminiscing: talking about meeting old friends</a>

      
        
        1108
        +        </p>

      
        
        1109
        +        <div class="fs14 tc-bl lmb-20">

      
        
        1110
        +                        <time datetime="2026-05-27">May 27, 2026</time>

      
        
        1111
        +        </div>

      
        
        1112
        +        <div>

      
        
        1113
        +            <a href="https://dictionaryblog.cambridge.org/2026/05/27/reuniting-and-reminiscing-talking-about-meeting-old-friends/" target="_blank" rel="noopener noreferrer" class="bh hao hbtn hbtn-tab tb">

      
        
        1114
        +                Read More            </a>

      
        
        1115
        +        </div>

      
        
        1116
        +    </div>

      
        
        1117
        +</div>

      
        
        1118
        +

      
        
        1119
        +

      
        
        1120
        +

      
        
        1121
        +                            <div class="pr bw hbss x lmb-25">

      
        
        1122
        +            <span class="hdn hdb-xs hdn-s hdb-m boa pa p0 pl0 pb0 pr50"></span>

      
        
        1123
        +    

      
        
        1124
        +    <div class="pr boa lp-5 lpl-10 lpr-10 lc lc1 lc-xs6-12 lc-s1 lc-m6-12">

      
        
        1125
        +                    <div class="pr hdib i i-facebook lp-5 lmr-10">

      
        
        1126
        +            <a class="pa p0" onclick="sendGAEvent('share_this_entry', 'facebook')" target="_blank" rel="noopener" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fdictionary.cambridge.org%2Fdictionary%2Fenglish%2Ffish-for%23cald4-1&t=" title="Share on Facebook"></a>

      
        
        1127
        +        </div>

      
        
        1128
        +        <div class="pr hdib i i-x lp-5 lmr-10">

      
        
        1129
        +            <a class="pa p0" onclick="sendGAEvent('share_this_entry', 'twitter')" target="_blank" rel="noopener" href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fdictionary.cambridge.org%2Fdictionary%2Fenglish%2Ffish-for%23cald4-1&text=" title="Share on X"></a>

      
        
        1130
        +        </div>

      
        
        1131
        +    

      
        
        1132
        +        <div class="htc hax lmt-20 lmb-25">

      
        
        1133
        +            <p class="fs12 tcu lmb-0">Word of the Day</p>

      
        
        1134
        +            <p class="fs36 lmt-5 feature-w-big wotd-hw">

      
        
        1135
        +                <a href="/dictionary/english/fish-for#cald4-1">fish for something</a>

      
        
        1136
        +            </p>

      
        
        1137
        +                                </div>

      
        
        1138
        +    </div>

      
        
        1139
        +

      
        
        1140
        +    <div class="hoh lp-20">

      
        
        1141
        +        <p class="lmt-0 lmb-20">to try to catch a particular kind of fish from a river, sea, lake, etc.</p>

      
        
        1142
        +

      
        
        1143
        +        <a href="/dictionary/english/fish-for#cald4-1" class="bh hao hbtn hbtn-tab tb">About this</a>

      
        
        1144
        +    </div>

      
        
        1145
        +</div>

      
        
        1146
        +

      
        
        1147
        +

      
        
        1148
        +<div class="bw hbss x lmb-25">

      
        
        1149
        +                    

      
        
        1150
        +                                                

      
        
        1151
        +                <a href="https://dictionaryblog.cambridge.org/2026/05/25/new-words-25-may-2026/" target="_blank" rel="noopener noreferrer" class="hdb hao lc lc1 lc-xs6-12 lc-s1 lc-m6-12">

      
        
        1152
        +            <amp-img src="/rss/images/tool-sprawl.jpg" height="180" width="300" alt="<p>tool sprawl" layout="responsive">

      
        
        1153
        +                <noscript>

      
        
        1154
        +                    <img src="/rss/images/tool-sprawl.jpg" height="180" width="300" alt="<p>tool sprawl" class="lc1" />

      
        
        1155
        +                </noscript>

      
        
        1156
        +            </amp-img>

      
        
        1157
        +        </a>

      
        
        1158
        +                <div class="hoh lp-20">

      
        
        1159
        +        <p class="h6 lm-0 lmb-5">New Words</p>

      
        
        1160
        +

      
        
        1161
        +        <div class="lmb-15  fs36 ">

      
        
        1162
        +            <a href="https://dictionaryblog.cambridge.org/2026/05/25/new-words-25-may-2026/" class="ha" target="_blank" rel="noopener noreferrer"><p>tool sprawl</a>

      
        
        1163
        +        </div>

      
        
        1164
        +

      
        
        1165
        +        <div class="fs14 tc-bl lmb-20">

      
        
        1166
        +                        <time datetime="2026-05-25">May 25, 2026</time>

      
        
        1167
        +        </div>

      
        
        1168
        +

      
        
        1169
        +        <a href="https://dictionaryblog.cambridge.org/2026/05/25/new-words-25-may-2026/" target="_blank" rel="noopener noreferrer" class="bh hao hbtn hbtn-tab tb">

      
        
        1170
        +            More new words        </a>

      
        
        1171
        +    </div>

      
        
        1172
        +</div>

      
        
        1173
        +

      
        
        1174
        +    </div>

      
        
        1175
        +</div>

      
        
        1176
        +

      
        
        1177
        +

      
        
        1178
        +                                    <div id='ad_btmslot' class='am-home '>

      
        
        1179
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_btmslot'); });</script>

      
        
        1180
        +        </div>

      
        
        1181
        +                    </div>

      
        
        1182
        +

      
        
        1183
        +                <div class="hfr-s lt2s lpb-20">

      
        
        1184
        +                    

      
        
        1185
        +<div class="pr bo lp-20 lpt-25 lmb-25">

      
        
        1186
        +    <svg class="r2-plus-promo-container" width="300" height="285" viewBox="0 0 300 285" fill="none" xmlns="http://www.w3.org/2000/svg"><g filter="url(#filter0_d_7_14347)"><path fill-rule="evenodd" clip-rule="evenodd" d="M51.5 362L45.759 358.934C37.223 354.695 -96.0357 288.483 -103.966 284.177C-147.147 260.713 -237 211.899 -237 40.8628V-307H340V40.8628C340 211.899 250.142 260.713 206.961 284.177C199.014 288.496 64.9471 355.103 57.2363 358.937L51.5 362Z" fill="#FACB2E"></path></g><g filter="url(#filter1_d_7_14347)"><path fill-rule="evenodd" clip-rule="evenodd" d="M51.5 182L48.6444 180.474C44.3984 178.364 -21.8842 145.406 -25.8284 143.263C-47.3069 131.583 -92 107.286 -92 22.1513V-151H195V22.1513C195 107.286 150.304 131.583 128.826 143.263C124.873 145.413 58.1888 178.567 54.3529 180.476L51.5 182Z" fill="#FACB2E"></path></g><defs><filter id="filter0_d_7_14347" x="-267" y="-333" width="637" height="729" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="4"></feOffset><feGaussianBlur stdDeviation="15"></feGaussianBlur><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"></feColorMatrix><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7_14347"></feBlend><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_7_14347" result="shape"></feBlend></filter><filter id="filter1_d_7_14347" x="-122" y="-177" width="347" height="393" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="4"></feOffset><feGaussianBlur stdDeviation="15"></feGaussianBlur><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"></feColorMatrix><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7_14347"></feBlend><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_7_14347" result="shape"></feBlend></filter></defs></svg>

      
        
        1187
        +    <div class="pr">

      
        
        1188
        +        <div class="fs18 fs20-s fs24-l hlh1_4 tb lmb-0">

      
        
        1189
        +            <span class="hdb">

      
        
        1190
        +                <span class="hdib bh lp-15 lpt-2 lpb-2 tc-w">Cambridge</span>

      
        
        1191
        +            </span>

      
        
        1192
        +            <span class="hdb">

      
        
        1193
        +                <span class="hdib bod lp-15 lpt-2 lpb-2">Dictionary +Plus</span>

      
        
        1194
        +            </span>

      
        
        1195
        +        </div>

      
        
        1196
        +

      
        
        1197
        +        <div amp-access="NOT loggedIn">

      
        
        1198
        +            <p class="lmt-15 lmb-25 break">Free word lists and quizzes to create, download and share!</p>

      
        
        1199
        +

      
        
        1200
        +            <div class="lmb-5">

      
        
        1201
        +                <a href="/plus/" class="bh hao hbtn hbtn-tab tb lmb-5">Go to +<span style="font-size: 6px; line-height:0px;"> </span>Plus</a>

      
        
        1202
        +                or                <span on="tap:amp-access.login-sign-in" class="bsb hao hbtn hbtn-tab tb tc-bd">Log in</span>

      
        
        1203
        +            </div>

      
        
        1204
        +        </div>

      
        
        1205
        +        <div amp-access="loggedIn" amp-access-hide>

      
        
        1206
        +            <p class="lmt-20 lmb-20">You’re logged in. Start creating a word list or do a quiz!</p>

      
        
        1207
        +

      
        
        1208
        +            <div class="lmb-5">

      
        
        1209
        +                <a href="/plus/" class="bh hao hbtn hbtn-tab tb lmb-5">Go to +<span style="font-size: 6px; line-height:0px;"> </span>Plus</a>

      
        
        1210
        +            </div>

      
        
        1211
        +            <div class="lmb-10">

      
        
        1212
        +                <a href="/plus/wordlist" class="bsb hao hbtn hbtn-tab tb tc-bd">Go to word lists</a>

      
        
        1213
        +            </div>

      
        
        1214
        +        </div>

      
        
        1215
        +    </div>

      
        
        1216
        +</div>                                    <div id='ad_rightslot' class='am-home '>

      
        
        1217
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_rightslot'); });</script>

      
        
        1218
        +        </div>

      
        
        1219
        +                    </div>

      
        
        1220
        +

      
        
        1221
        +            </div>

      
        
        1222
        +        </div>

      
        
        1223
        +    </div>

      
        
        1224
        +

      
        
        1225
        +    

      
        
        1226
        +    <script>

      
        
        1227
        +        var gigyaAuthEnabled = true;

      
        
        1228
        +        var thresholdPublic = 5;

      
        
        1229
        +    </script>

      
        
        1230
        +

      
        
        1231
        +<amp-state id="stateFtr">

      
        
        1232
        +    <script type="application/json">

      
        
        1233
        +        {

      
        
        1234
        +        "learn": false,

      
        
        1235
        +        "develop": false,

      
        
        1236
        +        "about": false

      
        
        1237
        +        }

      
        
        1238
        +    </script>

      
        
        1239
        +</amp-state>

      
        
        1240
        +

      
        
        1241
        +<script type="text/plain" class="optanon-category-C0004">

      
        
        1242
        +!function(f,b,e,v,n,t,s)

      
        
        1243
        +{if(f.fbq)return;n=f.fbq=function(){n.callMethod?

      
        
        1244
        +n.callMethod.apply(n,arguments):n.queue.push(arguments)};

      
        
        1245
        +if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';

      
        
        1246
        +n.queue=[];t=b.createElement(e);t.async=!0;

      
        
        1247
        +t.src=v;s=b.getElementsByTagName(e)[0];

      
        
        1248
        +s.parentNode.insertBefore(t,s)}(window,document,'script',

      
        
        1249
        +'https://connect.facebook.net/en_US/fbevents.js');

      
        
        1250
        +fbq('init', '3409493515968429');

      
        
        1251
        +fbq('track', 'PageView');

      
        
        1252
        +</script>

      
        
        1253
        +<noscript>

      
        
        1254
        +<img height="1" width="1"

      
        
        1255
        +src="https://www.facebook.com/tr?id=3409493515968429&ev=PageView

      
        
        1256
        +&noscript=1"/>

      
        
        1257
        +</noscript>

      
        
        1258
        +  <script type="text/javascript">

      
        
        1259
        +	var polarbyteConfig = {

      
        
        1260
        +		appId: "cdo",

      
        
        1261
        +        anonymousTrackingMode: "full"

      
        
        1262
        +        	}

      
        
        1263
        +            	polarbyteConfig.pageContext = {

      
        
        1264
        +    	locale:   "en" ,

      
        
        1265
        +        section:  "dictionary" ,

      
        
        1266
        +        subsection:  "english" ,

      
        
        1267
        +        type:  "home"         }

      
        
        1268
        +    

      
        
        1269
        +        

      
        
        1270
        +    

      
        
        1271
        +    		polarbyteConfig.searchMetadata = {"dataset":"English","datasetType":"english","searchFormId":"searchForm","searchFieldId":"searchword"}

      
        
        1272
        +    

      
        
        1273
        +    

      
        
        1274
        +                polarbyteConfig.survey = {"apiHost":"https://cloud.polarbyte.com/webapps-api","enabled":true,"projectName":"CDO","userAttributes":{"country":"UA"},"contexts":{"page":{"locale":true,"section":true,"subsection":true,"type":true,"scenario":false}}}

      
        
        1275
        +    

      
        
        1276
        +    

      
        
        1277
        +    window.assistantTracker = {

      
        
        1278
        +        sendEvent: function(event, metadata) {

      
        
        1279
        +            if (!window || !window.polarbytereach || !window.polarbytereach.trackPublisherCustomEvent) {

      
        
        1280
        +                console.error('Failed to call polarbytereach.trackPublisherCustomEvent, tracker is not available:', { event, metadata});

      
        
        1281
        +                return;

      
        
        1282
        +            }

      
        
        1283
        +

      
        
        1284
        +            try {

      
        
        1285
        +                window.polarbytereach.trackPublisherCustomEvent(event, metadata);

      
        
        1286
        +            } catch (error) {

      
        
        1287
        +                console.error('Failed to call polarbytereach.trackPublisherCustomEvent:', { error, event, metadata });

      
        
        1288
        +            }

      
        
        1289
        +        },

      
        
        1290
        +

      
        
        1291
        +        getEvent: function(action, label, property, value) {

      
        
        1292
        +            return {category: 'AI_ASSISTANT', action: action, label: label, property: property, value: value};

      
        
        1293
        +        },

      
        
        1294
        +

      
        
        1295
        +        eventHeaderBtnClick: function() {

      
        
        1296
        +            var event = this.getEvent('HEADER_BTN_CLICK');

      
        
        1297
        +            this.sendEvent(event, undefined);

      
        
        1298
        +        },

      
        
        1299
        +

      
        
        1300
        +        eventBurgerMenuItemClick: function() {

      
        
        1301
        +            var event = this.getEvent('BURGER_MENU_ITEM_CLICK');

      
        
        1302
        +            this.sendEvent(event, undefined);

      
        
        1303
        +        },

      
        
        1304
        +

      
        
        1305
        +        eventMobileStickyBtnClick: function() {

      
        
        1306
        +            var event = this.getEvent('MOBILE_STICKY_BTN_CLICK');

      
        
        1307
        +            this.sendEvent(event, undefined);

      
        
        1308
        +        }

      
        
        1309
        +    };

      
        
        1310
        +  </script>

      
        
        1311
        +

      
        
        1312
        +      <script type="text/javascript" src="https://assets.polarbyte.com/scripts/latest/reach/pb-reach.iife.min.js" async></script>

      
        
        1313
        +              <script type="text/javascript" src="https://assets.polarbyte.com/scripts/latest/survey/pb-survey.iife.min.js" async></script>

      
        
        1314
        +        

      
        
        1315
        +

      
        
        1316
        +<div class="ai-bar">

      
        
        1317
        +    <a href="/assistant" onclick="window.assistantTracker?.eventMobileStickyBtnClick()">

      
        
        1318
        +        <button class="ai-bar-button">

      
        
        1319
        +            <img src="/external/images/assistant/icon-ai-primary-md.svg?version=6.0.78" width="24" height="24" alt="AI icon" />

      
        
        1320
        +            <span class="ai-button-text">AI Assistant</span>

      
        
        1321
        +        </button>

      
        
        1322
        +    </a>

      
        
        1323
        +</div>

      
        
        1324
        +

      
        
        1325
        +<footer id="footer" class="pr bh han cf lp-s_25 lp-s_t-15">

      
        
        1326
        +    <div class="lcs lp-l_l-25 lp-l_r-25 lmax">

      
        
        1327
        +

      
        
        1328
        +        

      
        
        1329
        +        <div class="lpt-10 lpb-20 lpr-10 hdn hdb-xs hdn-s hfr-xs">

      
        
        1330
        +            <div class="hfl hax htc tc-w lc1 lc-xsa lb-ch lbb0-xs lpt-10 lp-xs_t-0">

      
        
        1331
        +    <div class="r2-flex-sm r2-flex-col r2-text-black r2-gap-25 r2-items-end">

      
        
        1332
        +        <div class="r2-flex-sm r2-gap-10">

      
        
        1333
        +            <a href="https://www.facebook.com/CUPCambridgeDictionary/" target="_blank" rel="noopener noreferrer external" title="Become our fan!">

      
        
        1334
        +                <svg color="#000" class="" role="img" viewBox="0 0 602 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;">

      
        
        1335
        +                    <path d="M548 34.286v150.857h-89.714q-49.143 0-66.286 20.571t-17.143 61.714v108h167.429l-22.286 169.143h-145.143v433.714h-174.857v-433.714h-145.714v-169.143h145.714v-124.571q0-106.286 59.429-164.857t158.286-58.571q84 0 130.286 6.857z"/>

      
        
        1336
        +                    <title>Facebook</title>

      
        
        1337
        +                </svg>

      
        
        1338
        +            </a>

      
        
        1339
        +            <a href="https://www.instagram.com/cambridgewords" target="_blank" rel="noopener noreferrer external" title="Follow our Instagram!">

      
        
        1340
        +                <svg color="#000" role="img" viewBox="0 0 1024 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;">

      
        
        1341
        +                    <path d="M512 92.2c136.8 0 153 0.6 206.8 3 50 2.2 77 10.6 95 17.6 23.8 9.2 41 20.4 58.8 38.2 18 18 29 35 38.4 58.8 7 18 15.4 45.2 17.6 95 2.4 54 3 70.2 3 206.8s-0.6 153-3 206.8c-2.2 50-10.6 77-17.6 95-9.2 23.8-20.4 41-38.2 58.8-18 18-35 29-58.8 38.4-18 7-45.2 15.4-95 17.6-54 2.4-70.2 3-206.8 3s-153-0.6-206.8-3c-50-2.2-77-10.6-95-17.6-23.8-9.2-41-20.4-58.8-38.2-18-18-29-35-38.4-58.8-7-18-15.4-45.2-17.6-95-2.4-54-3-70.2-3-206.8s0.6-153 3-206.8c2.2-50 10.6-77 17.6-95 9.2-23.8 20.4-41 38.2-58.8 18-18 35-29 58.8-38.4 18-7 45.2-15.4 95-17.6 53.8-2.4 70-3 206.8-3zM512 0c-139 0-156.4 0.6-211 3-54.4 2.4-91.8 11.2-124.2 23.8-33.8 13.2-62.4 30.6-90.8 59.2-28.6 28.4-46 57-59.2 90.6-12.6 32.6-21.4 69.8-23.8 124.2-2.4 54.8-3 72.2-3 211.2s0.6 156.4 3 211c2.4 54.4 11.2 91.8 23.8 124.2 13.2 33.8 30.6 62.4 59.2 90.8 28.4 28.4 57 46 90.6 59 32.6 12.6 69.8 21.4 124.2 23.8 54.6 2.4 72 3 211 3s156.4-0.6 211-3c54.4-2.4 91.8-11.2 124.2-23.8 33.6-13 62.2-30.6 90.6-59s46-57 59-90.6c12.6-32.6 21.4-69.8 23.8-124.2 2.4-54.6 3-72 3-211s-0.6-156.4-3-211c-2.4-54.4-11.2-91.8-23.8-124.2-12.6-34-30-62.6-58.6-91-28.4-28.4-57-46-90.6-59-32.6-12.6-69.8-21.4-124.2-23.8-54.8-2.6-72.2-3.2-211.2-3.2v0zM512 249c-145.2 0-263 117.8-263 263s117.8 263 263 263 263-117.8 263-263c0-145.2-117.8-263-263-263zM512 682.6c-94.2 0-170.6-76.4-170.6-170.6s76.4-170.6 170.6-170.6c94.2 0 170.6 76.4 170.6 170.6s-76.4 170.6-170.6 170.6zM846.8 238.6c0 33.91-27.49 61.4-61.4 61.4s-61.4-27.49-61.4-61.4c0-33.91 27.49-61.4 61.4-61.4s61.4 27.49 61.4 61.4z"/>

      
        
        1342
        +                    <title>Instagram</title>

      
        
        1343
        +                </svg>

      
        
        1344
        +            </a>

      
        
        1345
        +            <a href="https://twitter.com/CambridgeWords" target="_blank" rel="noopener noreferrer external" title="Follow us!">

      
        
        1346
        +                <svg color="#000" role="img" viewBox="0 0 1024 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;" >

      
        
        1347
        +                    <path d="M778.411 96h141.141l-308.352 352.427 362.752 479.573h-284.032l-222.464-290.859-254.549 290.859h-141.227l329.813-376.96-347.989-455.040h291.243l201.088 265.856zM728.875 843.52h78.208l-504.832-667.477h-83.925z"/>

      
        
        1348
        +                    <title>X</title>

      
        
        1349
        +                </svg>

      
        
        1350
        +            </a>

      
        
        1351
        +        </div>

      
        
        1352
        +        <div><a href="https://www.cambridge.org/" title="Cambridge University Press &amp; Assessment"><img src="/external/images/rv2-design/cup&a-logo-black-@1x.png?version=6.0.78" alt="cdo logo" rel="external" width="190" height="30"/></a></div>

      
        
        1353
        +        <div><img src="/external/images/rv2-design/where-your-world-grows.png?version=6.0.78" alt="cdo logo" width="305" height="35" /></div>

      
        
        1354
        +        <div class="fs12">© Cambridge University Press & Assessment 2026</div>

      
        
        1355
        +    </div>

      
        
        1356
        +</div>        </div>

      
        
        1357
        +

      
        
        1358
        +        <div class="cfn hfl-s lc1 lc-xsa hul-u hul-un hul-u0 lmb-0 lcs">

      
        
        1359
        +            <div class="cfnl hfl-s lp-s_r-20 lbb lb-ch lbb0-s">

      
        
        1360
        +    <div class="r2-text-black tc-w fs18 hax hdn-s">

      
        
        1361
        +        <span class="pr hdb fs12 tcu lp-15 lpt-5 lpb-5 hlh24 hp" on="tap:AMP.setState({ stateFtr: { learn: ! stateFtr.learn } })">

      
        
        1362
        +            Learn

      
        
        1363
        +            <span class="hdn-m"><i class="i i-plus ibw pa cfni" [class]="stateFtr.learn ? 'i i-minus ibw pa cfni' : 'i i-plus ibw pa cfni'" aria-hidden="true"></i></span>

      
        
        1364
        +        </span>

      
        
        1365
        +    </div>

      
        
        1366
        +    <div class="lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s" [class]="stateFtr.learn ? 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 r2-text-black' : 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s r2-text-black'">

      
        
        1367
        +        <a href="/learn.html" class="hdn hdb-s tc-w lpb-5 fs12 tcu hlh22">Learn</a>

      
        
        1368
        +        <a href="/learn.html" class="hdn-s">Learn</a>

      
        
        1369
        +        <a href="https://dictionaryblog.cambridge.org/category/new-words/" class="hdb">New Words</a>

      
        
        1370
        +        <a href="/help/" class=" hdb ">Help</a>

      
        
        1371
        +        <a href="https://www.cambridge.org/gb/cambridgeenglish/catalog/dictionaries" target="_blank" rel="noopener noreferrer" class="hdb">In Print</a>

      
        
        1372
        +                                    <a href="/editorial/word-of-the-year/2021" class="hdb">Word of the Year 2021</a>

      
        
        1373
        +                            <a href="/editorial/word-of-the-year/2022" class="hdb">Word of the Year 2022</a>

      
        
        1374
        +                            <a href="/editorial/word-of-the-year/2023" class="hdb">Word of the Year 2023</a>

      
        
        1375
        +                            <a href="/editorial/word-of-the-year/2024" class="hdb">Word of the Year 2024</a>

      
        
        1376
        +                            <a href="/editorial/word-of-the-year" class="hdb">Word of the Year 2025</a>

      
        
        1377
        +                        </div>

      
        
        1378
        +</div>

      
        
        1379
        +<div class="cfnl hfl-s lp-s_r-20 lp-s_l-20 lbb lb-ch lbb0-s">

      
        
        1380
        +    <div class="r2-text-black tc-w fs18 hax hdn-s">

      
        
        1381
        +        <span class="pr hdb fs12 tcu lp-15 lpt-5 lpb-5 hlh24 hp" on="tap:AMP.setState({ stateFtr: { develop: ! stateFtr.develop } })">

      
        
        1382
        +            Develop

      
        
        1383
        +            <span class="hdn-m"><i class="i i-plus ibw pa cfni" [class]="stateFtr.develop ? 'i i-minus ibw pa cfni' : 'i i-plus ibw pa cfni'" aria-hidden="true"></i></span>

      
        
        1384
        +        </span>

      
        
        1385
        +    </div>

      
        
        1386
        +    <div class="lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s" [class]="stateFtr.develop ? 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 r2-text-black' : 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s r2-text-black'">

      
        
        1387
        +        <a href="/develop.html" class="hdn hdb-s tc-w lpb-5 fs12 tcu hlh22">Develop</a>

      
        
        1388
        +        <a href="/develop.html" class="hdn-s">Develop</a>

      
        
        1389
        +        <a href="http://dictionary-api.cambridge.org" target="_blank" rel="noopener noreferrer" class="hdb">Dictionary API</a>

      
        
        1390
        +        <a href="/doubleclick.html" class="hdb">Double-Click Lookup</a>

      
        
        1391
        +        <a href="/freesearch.html" class="hdb">Search Widgets</a>

      
        
        1392
        +        <a href="/license.html" class="hdb">License Data</a>

      
        
        1393
        +                                </div>

      
        
        1394
        +</div>

      
        
        1395
        +<div class="cfnl hfl-s lp-s_r-20 lp-s_l-20 lbb lb-ch lbb0-s">

      
        
        1396
        +    <div class="r2-text-black tc-w fs18 hax hdn-s">

      
        
        1397
        +        <span class="pr hdb fs12 tcu lp-15 lpt-5 lpb-5 hlh24 hp" on="tap:AMP.setState({ stateFtr: { about: ! stateFtr.about } })">

      
        
        1398
        +            About

      
        
        1399
        +            <span class="hdn-m"><i class="i i-plus ibw pa cfni" [class]="stateFtr.about ? 'i i-minus ibw pa cfni' : 'i i-plus ibw pa cfni'" aria-hidden="true"></i></span>

      
        
        1400
        +        </span>

      
        
        1401
        +    </div>

      
        
        1402
        +    <div class="lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s" [class]="stateFtr.about ? 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 r2-text-black' : 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s r2-text-black'">

      
        
        1403
        +        <a href="/about.html" class="hdn hdb-s tc-w lpb-5 fs12 tcu hlh22">About</a>

      
        
        1404
        +        <a href="/about.html" class="hdn-s">About</a>

      
        
        1405
        +        <a href="https://www.cambridge.org/accessibility/" target="_blank" rel="noopener noreferrer" class="hdb">Accessibility</a>

      
        
        1406
        +        <a href="https://www.cambridge.org/us/cambridgeenglish" target="_blank" rel="noopener noreferrer" class="hdb">Cambridge English</a>

      
        
        1407
        +        <a href="https://www.cambridge.org/" target="_blank" rel="noopener noreferrer" class="hdb">Cambridge University Press & Assessment</a>

      
        
        1408
        +                    <span id="ot-sdk-btn" class="ot-sdk-show-settings hdb ha">Consent Management</span>

      
        
        1409
        +                <a href="https://www.cambridge.org/about-us/legal-notices/privacy-notice" target="_blank" rel="noopener noreferrer" class="hdb">Cookies and Privacy</a>

      
        
        1410
        +        <a href="https://www.cambridge.org/elt/corpus/" target="_blank" rel="noopener noreferrer" class="hdb">Corpus</a>

      
        
        1411
        +        <a href="https://www.cambridge.org/about-us/terms-use/" target="_blank" rel="noopener noreferrer" class="hdb">Terms of Use</a>

      
        
        1412
        +

      
        
        1413
        +                    <a href="https://www.cambridge.org/legal/ai-tool-terms-of-use" target="_blank" rel="noopener noreferrer" class="hdb">AI Terms of Use</a>

      
        
        1414
        +        

      
        
        1415
        +                                        </div>

      
        
        1416
        +</div>        </div>

      
        
        1417
        +

      
        
        1418
        +        <div class="cfd lpb-20 hdn-xs hdb-s hfr-s">

      
        
        1419
        +            <div class="hfl hax htc tc-w lc1 lc-xsa lb-ch lbb0-xs lpt-10 lp-xs_t-0">

      
        
        1420
        +    <div class="r2-flex-sm r2-flex-col r2-text-black r2-gap-25 r2-items-end">

      
        
        1421
        +        <div class="r2-flex-sm r2-gap-10">

      
        
        1422
        +            <a href="https://www.facebook.com/CUPCambridgeDictionary/" target="_blank" rel="noopener noreferrer external" title="Become our fan!">

      
        
        1423
        +                <svg color="#000" class="" role="img" viewBox="0 0 602 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;">

      
        
        1424
        +                    <path d="M548 34.286v150.857h-89.714q-49.143 0-66.286 20.571t-17.143 61.714v108h167.429l-22.286 169.143h-145.143v433.714h-174.857v-433.714h-145.714v-169.143h145.714v-124.571q0-106.286 59.429-164.857t158.286-58.571q84 0 130.286 6.857z"/>

      
        
        1425
        +                    <title>Facebook</title>

      
        
        1426
        +                </svg>

      
        
        1427
        +            </a>

      
        
        1428
        +            <a href="https://www.instagram.com/cambridgewords" target="_blank" rel="noopener noreferrer external" title="Follow our Instagram!">

      
        
        1429
        +                <svg color="#000" role="img" viewBox="0 0 1024 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;">

      
        
        1430
        +                    <path d="M512 92.2c136.8 0 153 0.6 206.8 3 50 2.2 77 10.6 95 17.6 23.8 9.2 41 20.4 58.8 38.2 18 18 29 35 38.4 58.8 7 18 15.4 45.2 17.6 95 2.4 54 3 70.2 3 206.8s-0.6 153-3 206.8c-2.2 50-10.6 77-17.6 95-9.2 23.8-20.4 41-38.2 58.8-18 18-35 29-58.8 38.4-18 7-45.2 15.4-95 17.6-54 2.4-70.2 3-206.8 3s-153-0.6-206.8-3c-50-2.2-77-10.6-95-17.6-23.8-9.2-41-20.4-58.8-38.2-18-18-29-35-38.4-58.8-7-18-15.4-45.2-17.6-95-2.4-54-3-70.2-3-206.8s0.6-153 3-206.8c2.2-50 10.6-77 17.6-95 9.2-23.8 20.4-41 38.2-58.8 18-18 35-29 58.8-38.4 18-7 45.2-15.4 95-17.6 53.8-2.4 70-3 206.8-3zM512 0c-139 0-156.4 0.6-211 3-54.4 2.4-91.8 11.2-124.2 23.8-33.8 13.2-62.4 30.6-90.8 59.2-28.6 28.4-46 57-59.2 90.6-12.6 32.6-21.4 69.8-23.8 124.2-2.4 54.8-3 72.2-3 211.2s0.6 156.4 3 211c2.4 54.4 11.2 91.8 23.8 124.2 13.2 33.8 30.6 62.4 59.2 90.8 28.4 28.4 57 46 90.6 59 32.6 12.6 69.8 21.4 124.2 23.8 54.6 2.4 72 3 211 3s156.4-0.6 211-3c54.4-2.4 91.8-11.2 124.2-23.8 33.6-13 62.2-30.6 90.6-59s46-57 59-90.6c12.6-32.6 21.4-69.8 23.8-124.2 2.4-54.6 3-72 3-211s-0.6-156.4-3-211c-2.4-54.4-11.2-91.8-23.8-124.2-12.6-34-30-62.6-58.6-91-28.4-28.4-57-46-90.6-59-32.6-12.6-69.8-21.4-124.2-23.8-54.8-2.6-72.2-3.2-211.2-3.2v0zM512 249c-145.2 0-263 117.8-263 263s117.8 263 263 263 263-117.8 263-263c0-145.2-117.8-263-263-263zM512 682.6c-94.2 0-170.6-76.4-170.6-170.6s76.4-170.6 170.6-170.6c94.2 0 170.6 76.4 170.6 170.6s-76.4 170.6-170.6 170.6zM846.8 238.6c0 33.91-27.49 61.4-61.4 61.4s-61.4-27.49-61.4-61.4c0-33.91 27.49-61.4 61.4-61.4s61.4 27.49 61.4 61.4z"/>

      
        
        1431
        +                    <title>Instagram</title>

      
        
        1432
        +                </svg>

      
        
        1433
        +            </a>

      
        
        1434
        +            <a href="https://twitter.com/CambridgeWords" target="_blank" rel="noopener noreferrer external" title="Follow us!">

      
        
        1435
        +                <svg color="#000" role="img" viewBox="0 0 1024 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;" >

      
        
        1436
        +                    <path d="M778.411 96h141.141l-308.352 352.427 362.752 479.573h-284.032l-222.464-290.859-254.549 290.859h-141.227l329.813-376.96-347.989-455.040h291.243l201.088 265.856zM728.875 843.52h78.208l-504.832-667.477h-83.925z"/>

      
        
        1437
        +                    <title>X</title>

      
        
        1438
        +                </svg>

      
        
        1439
        +            </a>

      
        
        1440
        +        </div>

      
        
        1441
        +        <div><a href="https://www.cambridge.org/" title="Cambridge University Press &amp; Assessment"><img src="/external/images/rv2-design/cup&a-logo-black-@1x.png?version=6.0.78" alt="cdo logo" rel="external" width="190" height="30"/></a></div>

      
        
        1442
        +        <div><img src="/external/images/rv2-design/where-your-world-grows.png?version=6.0.78" alt="cdo logo" width="305" height="35" /></div>

      
        
        1443
        +        <div class="fs12">© Cambridge University Press & Assessment 2026</div>

      
        
        1444
        +    </div>

      
        
        1445
        +</div>        </div>

      
        
        1446
        +    </div>

      
        
        1447
        +</footer>

      
        
        1448
        +

      
        
        1449
        +<span class="iwc bhb pf ctop hp" on="tap:top.scrollTo"><i class="i i-chevron-up iw" aria-hidden="true"></i></span>

      
        
        1450
        +

      
        
        1451
        +<div amp-access="1=1">

      
        
        1452
        +    <template amp-access-template type="amp-mustache">

      
        
        1453
        +        {{#displayLoginPopup}}

      
        
        1454
        +            <amp-user-notification data-persist-dismissal="false" id="loginPopup" class="loginPopupContainer"

      
        
        1455
        +                layout="nodisplay" tabindex="0">

      
        
        1456
        +                <div class="fon loginPopup" role="button" tabindex="0">

      
        
        1457
        +                    <!-- desktop -->

      
        
        1458
        +<div class="hdn hdb-xs ibd tb pr loginPopupContent">

      
        
        1459
        +    <amp-img class=""

      
        
        1460
        +        src="/external/images/login/login_desktop.svg"

      
        
        1461
        +        width="920" height="420" layout="responsive" alt="Login popup"> </amp-img>

      
        
        1462
        +

      
        
        1463
        +    <div class="pa loginPopupPanel">

      
        
        1464
        +        <!-- Cambridge banner -->

      
        
        1465
        +        <div class="hdf">

      
        
        1466
        +            <span class="hdb tc-w flx-g_4 lpBanner">

      
        
        1467
        +                <span class="hdib bh lp-15 lpt-2 lpb-2">Cambridge</span>

      
        
        1468
        +                <span class="hdb">

      
        
        1469
        +                    <span class="hdib bod lp-15 lpt-2 lpb-2">Dictionary +Plus</span>

      
        
        1470
        +                </span>

      
        
        1471
        +            </span>

      
        
        1472
        +            <span class="hdib">

      
        
        1473
        +                <span class="iwc bh hdib hao fon hp" on="tap:loginPopup.dismiss" role="button"

      
        
        1474
        +                    aria-label="Close login panel" tabindex="0">

      
        
        1475
        +                    <i class="i i-close iw" aria-hidden="true"></i>

      
        
        1476
        +                </span>

      
        
        1477
        +            </span>

      
        
        1478
        +        </div>

      
        
        1479
        +        <!-- Content -->

      
        
        1480
        +        <div class="hdf hflxy lpContentDsk">

      
        
        1481
        +            <div>

      
        
        1482
        +                <h2 class="tb htc">

      
        
        1483
        +                    <span class="">Learn more with</span>

      
        
        1484
        +                    <span class="bod tc-w lp-5">+Plus</span>

      
        
        1485
        +                </h2>

      
        
        1486
        +            </div>

      
        
        1487
        +            <div class="hdf flx-g_2">

      
        
        1488
        +                <div class="lpContentDskContentLeft">

      
        
        1489
        +                    <span class="bsb tc-w lp-4">Sign up</span>

      
        
        1490
        +                    for free and get access to exclusive content:                </div>

      
        
        1491
        +                <div class="hdf hflxy flx-g_2 lpContentDskContentRight">

      
        
        1492
        +                    <div class="flx-g_1">

      
        
        1493
        +                        <span class="bpl tc-w lp-4">Free</span>

      
        
        1494
        +                        word lists and quizzes from Cambridge                    </div>

      
        
        1495
        +                    <div class="flx-g_1">

      
        
        1496
        +                        <span class="bpl tc-w lp-4">Tools</span>

      
        
        1497
        +                        to create your own word lists and quizzes                    </div>

      
        
        1498
        +                    <div class="flx-g_1">

      
        
        1499
        +                        <span class="bpl tc-w lp-4">Word lists</span>

      
        
        1500
        +                        shared by our community of dictionary fans                    </div>

      
        
        1501
        +                    <div class="lpContentDskSign">

      
        
        1502
        +                        <span on="tap:amp-access.login-sign-up" class="bh hao hbtn hbtn-tab">Sign up now</span> or <span on="tap:amp-access.login-sign-in" class="bsb hao hbtn hbtn-tab tb tc-bd">Log in</span>

      
        
        1503
        +                    </div>

      
        
        1504
        +                </div>

      
        
        1505
        +            </div>

      
        
        1506
        +        </div>

      
        
        1507
        +    </div>

      
        
        1508
        +</div>

      
        
        1509
        +

      
        
        1510
        +<!-- mobile -->

      
        
        1511
        +<div class="hdb hdn-xs ibd tb pr loginPopupContent">

      
        
        1512
        +    <amp-img

      
        
        1513
        +        src="/external/images/login/login_mobile.svg"

      
        
        1514
        +        width="300" height="250" layout="responsive" alt="Login popup"> </amp-img>

      
        
        1515
        +

      
        
        1516
        +    <div class="pa loginPopupPanel">

      
        
        1517
        +        <!-- Cambridge banner -->

      
        
        1518
        +        <div class="hdf">

      
        
        1519
        +            <span class="hdb tc-w flx-g_4">

      
        
        1520
        +                <span class="hdib bh lp-15 lpt-2 lpb-2">Cambridge</span>

      
        
        1521
        +                <span class="hdb">

      
        
        1522
        +                    <span class="hdib bod lp-15 lpt-2 lpb-2">Dictionary +Plus</span>

      
        
        1523
        +                </span>

      
        
        1524
        +            </span>

      
        
        1525
        +            <span class="hdib">

      
        
        1526
        +                <span class="iwc bh hdib hao fon hp" on="tap:loginPopup.dismiss" role="button"

      
        
        1527
        +                    aria-label="Close login panel" tabindex="0">

      
        
        1528
        +                    <i class="i i-close iw" aria-hidden="true"></i>

      
        
        1529
        +                </span>

      
        
        1530
        +            </span>

      
        
        1531
        +        </div>

      
        
        1532
        +        <!-- Content -->

      
        
        1533
        +        <div class="hdf hflxy htc lpContentMob">

      
        
        1534
        +            <div class="flx-g_1 lpContentMobTitle">

      
        
        1535
        +                <h2 class="tb">

      
        
        1536
        +                    <span class="">Learn more with</span>

      
        
        1537
        +                    <span class="bod tc-w lp-5">+Plus</span>

      
        
        1538
        +                </h2>

      
        
        1539
        +            </div>

      
        
        1540
        +            <div class="flx-g_2 lpContentMobContent">Create word lists and quizzes for free</div>

      
        
        1541
        +            <div class="flx-g_1 lpContentMobSign">

      
        
        1542
        +                <span on="tap:amp-access.login-sign-up" class="bh hao hbtn hbtn-tab">Sign up now</span> or <span on="tap:amp-access.login-sign-in" class="bsb hao hbtn hbtn-tab tb tc-bd">Log in</span>

      
        
        1543
        +            </div>

      
        
        1544
        +        </div>

      
        
        1545
        +    </div>

      
        
        1546
        +</div>

      
        
        1547
        +

      
        
        1548
        +                </div>

      
        
        1549
        +            </amp-user-notification>

      
        
        1550
        +        {{/displayLoginPopup}}

      
        
        1551
        +

      
        
        1552
        +        {{#displayClassicSurvey}}

      
        
        1553
        +                        {{/displayClassicSurvey}}

      
        
        1554
        +    </template>

      
        
        1555
        +</div>

      
        
        1556
        +

      
        
        1557
        +

      
        
        1558
        +  <script type='text/javascript'>

      
        
        1559
        +    var aBk = true;

      
        
        1560
        +  </script>

      
        
        1561
        +  <script type='text/javascript' src="/external/scripts/ads.min.js?version=6.0.78" ></script>

      
        
        1562
        +    <script type='text/javascript'>

      
        
        1563
        +  var aData = {"aBk":aBk};

      
        
        1564
        +  </script>

      
        
        1565
        +

      
        
        1566
        +  <script type='text/javascript'>

      
        
        1567
        +    sendGAEvent('aBk', 'aBk', ''+aBk,{'nonInteraction':1});

      
        
        1568
        +    (function() {

      
        
        1569
        +      if(!(typeof evtCall=="undefined"))

      
        
        1570
        +        for(var i=0,l=evtCall.length;i!==l;i++)

      
        
        1571
        +          evtCall[i].call();

      
        
        1572
        +    })();

      
        
        1573
        +  </script>

      
        
        1574
        +

      
        
        1575
        +    

      
        
        1576
        +<amp-state id="stateSidebarNav">

      
        
        1577
        +    <script type="application/json">

      
        
        1578
        +        {

      
        
        1579
        +        "lang": false,

      
        
        1580
        +        "dict": false,

      
        
        1581
        +        "def": false,

      
        
        1582
        +        "trans": false,

      
        
        1583
        +        "userOptions": false,

      
        
        1584
        +        "login": false

      
        
        1585
        +        }

      
        
        1586
        +    </script>

      
        
        1587
        +</amp-state>

      
        
        1588
        +

      
        
        1589
        +<amp-sidebar id="sidebarNav" layout="nodisplay" side="left" class="bw cm-f">

      
        
        1590
        +    <div class="hdn-s">

      
        
        1591
        +

      
        
        1592
        +        <div class="bh">

      
        
        1593
        +            <div>

      
        
        1594
        +                <div class="r2-display-none hdib hv-3 lpt-10 lpl-15 lpr-15">

      
        
        1595
        +                    <span class="iwc bhb hdib hao fs18 fon hp" on="tap:sidebarNav.close" role="button" aria-label='Close'

      
        
        1596
        +                        title='Close' tabindex="0">

      
        
        1597
        +                        <i class="i i-close iw" aria-hidden="true"></i>

      
        
        1598
        +                    </span>

      
        
        1599
        +                </div>

      
        
        1600
        +

      
        
        1601
        +                <div class="hdib hvt hao lpt-10 lpb-1 lpr-15">

      
        
        1602
        +                    <a class="hdib lpt-1 lpb-5" href="/" title="Cambridge Dictionary">

      
        
        1603
        +                        <div class="r2-header-logo-container-sm">

      
        
        1604
        +                            <amp-img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="44" width="116"

      
        
        1605
        +                                alt="Cambridge Dictionary" style="margin-top:-8px; margin-top:-8px;"></amp-img>

      
        
        1606
        +                            <noscript>

      
        
        1607
        +                                <img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="44" width="116"

      
        
        1608
        +                                    class="lpb-5" alt="Cambridge Dictionary" style="margin-top:-8px;"/>

      
        
        1609
        +                            </noscript>

      
        
        1610
        +                        </div>

      
        
        1611
        +                    </a>

      
        
        1612
        +                </div>

      
        
        1613
        +

      
        
        1614
        +                <div class="hfr htr fs14 lpr-15 lpt-2">

      
        
        1615
        +                    <div class="hdib lmt-5 lpt-2">

      
        
        1616
        +                        <div class="pr hdib z2" amp-access="loggedIn">

      
        
        1617
        +                            <span class="iwc iwc-f15 hp" role="button" id="sidebarNavLogButton"

      
        
        1618
        +                                    on="tap:AMP.setState({ stateSidebarNav: { userOptions: ! stateSidebarNav.userOptions } })"

      
        
        1619
        +                                    onblur="stopBlur();"

      
        
        1620
        +                                    aria-label="View user options" tabindex="0">

      
        
        1621
        +                                <i class="i i-user iw hv-2" aria-hidden="true"></i>

      
        
        1622
        +                            </span>

      
        
        1623
        +                                <div class="hdn" [class]="stateSidebarNav.userOptions ? 'pa pr0 pt100 lmt-1 tc-bd' : 'hdn'">

      
        
        1624
        +        <div class="bw htl hbs lp-20 lpt-15 lpb-15 lmt-10 lmin-150">

      
        
        1625
        +            <ul class="hul-u tw-nw lmb-0 han">

      
        
        1626
        +                <li><a href="/plus/">Cambridge Dictionary +Plus</a></li>

      
        
        1627
        +                <li><a href="/auth/profile">My profile</a></li>

      
        
        1628
        +                <li><a href="/howto.html">+Plus help</a></li>

      
        
        1629
        +                <li><span on="tap:amp-access.login-sign-out" class="logOutBtn hp ha">Log out</span></li>

      
        
        1630
        +            </ul>

      
        
        1631
        +        </div>

      
        
        1632
        +    </div>

      
        
        1633
        +                        </div>

      
        
        1634
        +                        <div class="pr hdib" amp-access="NOT loggedIn">

      
        
        1635
        +                            <span on="tap:amp-access.login-sign-in" class="iwc iwc-f15 hp">

      
        
        1636
        +                                <i class="i i-user iw hv-2" aria-hidden="true"></i>

      
        
        1637
        +                            </span>

      
        
        1638
        +                        </div>

      
        
        1639
        +

      
        
        1640
        +                        <div class="r2-display-none hdib lpl-15 lp-xs_l-10">

      
        
        1641
        +                            <span href="#top" class="iwc bo hdib hao fs18 hp" on="tap:AMP.setState({ stateHdr: { search: true, searchDesk: true } }),sidebarNav.close,searchword.focus">

      
        
        1642
        +                                <i class="i i-search" aria-hidden="true"></i>

      
        
        1643
        +                            </span>

      
        
        1644
        +                        </div>

      
        
        1645
        +                        <div class="hdib lpl-15 lp-xs_l-10">

      
        
        1646
        +                            <span class="r2-no-bg iwc bhb hdib hao fs18 fon hp" on="tap:sidebarNav.close" role="button" aria-label='Close'

      
        
        1647
        +                                  title='Close' tabindex="0">

      
        
        1648
        +                                <i class="i i-close iw" aria-hidden="true"></i>

      
        
        1649
        +                            </span>

      
        
        1650
        +                        </div>

      
        
        1651
        +                    </div>

      
        
        1652
        +                </div>

      
        
        1653
        +            </div>

      
        
        1654
        +        </div>

      
        
        1655
        +

      
        
        1656
        +    </div>

      
        
        1657
        +

      
        
        1658
        +

      
        
        1659
        +    <div class="cm-fc cms fs14 lm-auto">

      
        
        1660
        +

      
        
        1661
        +        <span class="pa pt0 pr0 hdn hdb-s lmt-5 lmr-15 lpt-15 hp fon"

      
        
        1662
        +                on="tap:sidebarNav.close" role="button" aria-label='Close' title='Close' tabindex="0">

      
        
        1663
        +            <i class="i i-close ibd" aria-hidden="true"></i>

      
        
        1664
        +        </span>

      
        
        1665
        +

      
        
        1666
        +        <nav class="lp-s_t-5">

      
        
        1667
        +

      
        
        1668
        +            <div class="hdn hdb-s lp-15 lpb-20 lbb lb-cm">

      
        
        1669
        +                <a href="/" title="Cambridge Dictionary">

      
        
        1670
        +                    <amp-img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="68" width="168"

      
        
        1671
        +                        alt="Cambridge Dictionary" style="margin-left:-10px;" noloading></amp-img>

      
        
        1672
        +                    <noscript>

      
        
        1673
        +                        <img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="68" width="168"

      
        
        1674
        +                            alt="Cambridge Dictionary" style="margin-left:-10px;" />

      
        
        1675
        +                    </noscript>

      
        
        1676
        +                </a>

      
        
        1677
        +            </div>

      
        
        1678
        +                        <div class="lbb lb-cm hlh21">

      
        
        1679
        +                <a href="/assistant" class="hdb tb hax lp-10 lpl-15 lpr-15" onclick="window.assistantTracker?.eventBurgerMenuItemClick()">

      
        
        1680
        +                    AI Assistant                    <img src="/external/images/assistant/beta.svg?version=6.0.78" class="ai-beta-icon">

      
        
        1681
        +                </a>

      
        
        1682
        +            </div>

      
        
        1683
        +                        <div class="pr hul-u tc-bd lmb-0 z1 lbb hlh21">

      
        
        1684
        +                <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        1685
        +                        [class]="stateSidebarNav.dict ? 'hdb hax lp-10 lpl-15 lpr-15 hp on' : 'hdb hax lp-10 lpl-15 lpr-15 hp'"

      
        
        1686
        +                        on="tap: AMP.setState({ stateSidebarNav: { dict: !stateSidebarNav.dict } })">

      
        
        1687
        +                    <span class="pr hdb tb">

      
        
        1688
        +                        Dictionary                        <i class="i i-plus ibd pa pr0 lpt-2" [class]="stateSidebarNav.dict ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'" aria-hidden="true"></i>

      
        
        1689
        +                    </span>

      
        
        1690
        +                </span>

      
        
        1691
        +

      
        
        1692
        +                <div class="hdn" [class]="stateSidebarNav.dict ? '' : 'hdn'">

      
        
        1693
        +                                                            <div class="lmb-0 lbt lb-cm">

      
        
        1694
        +                        <span class="hdb hax lp-10 lpl-0 lpr-15 hp"

      
        
        1695
        +                                [class]="stateSidebarNav.def ? 'pr hdb hax lp-10 lpl-15 lpr-15 hp on' : 'hdb hax lp-10 lpl-15 lpr-15 hp'"

      
        
        1696
        +                                on="tap: AMP.setState({ stateSidebarNav: { def: ! stateSidebarNav.def } })">

      
        
        1697
        +                            <span class="pr hdb">

      
        
        1698
        +                                <span class="fs12 tb tcu">Definitions</span>

      
        
        1699
        +                                <i class="i i-plus ibd pa pr0 lpt-2" [class]="stateSidebarNav.def ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'" aria-hidden="true"></i>

      
        
        1700
        +                            </span>

      
        
        1701
        +                        </span>

      
        
        1702
        +                        <div class="hdn" [class]="stateSidebarNav.def ? '' : 'hdn'">

      
        
        1703
        +                            <div class="han lpl-15 lpr-15 lmb-15">

      
        
        1704
        +                                <div class="tc-bl lmb-5 lmt--3 break">Clear explanations of natural written and spoken English</div>

      
        
        1705
        +                                                                <div class="fs16 lpt-5 lpb-3"><a href='/dictionary/english/'>English</a></div>

      
        
        1706
        +                                                                <div class="fs16 lpt-5 lpb-3"><a href='/dictionary/learner-english/'>Learner’s Dictionary</a></div>

      
        
        1707
        +                                                                <div class="fs16 lpt-5 lpb-3"><a href='/dictionary/essential-british-english/'>Essential British English</a></div>

      
        
        1708
        +                                                                <div class="fs16 lpt-5 lpb-3"><a href='/dictionary/essential-american-english/'>Essential American English</a></div>

      
        
        1709
        +                                                            </div>

      
        
        1710
        +                        </div>

      
        
        1711
        +                    </div>

      
        
        1712
        +                    

      
        
        1713
        +                    <div class="lmb-0 lbt lb-cm">

      
        
        1714
        +                        <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        1715
        +                                [class]="stateSidebarNav.trans ? 'hdb hax lp-10 lpl-15 lpr-15 hp on' : 'hdb hax lp-10 lpl-15 lpr-15 hp'"

      
        
        1716
        +                                on="tap: AMP.setState({ stateSidebarNav: { trans: ! stateSidebarNav.trans } })">

      
        
        1717
        +                            <span class="pr hdb">

      
        
        1718
        +                                <span class="fs12 tb tcu">Translations</span>

      
        
        1719
        +                                <i class="i i-plus ibd pa pr0 lpt-2" [class]="stateSidebarNav.trans ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'" aria-hidden="true"></i>

      
        
        1720
        +                            </span>

      
        
        1721
        +                        </span>

      
        
        1722
        +                        <div class="hdn" [class]="stateSidebarNav.trans ? '' : 'hdn'">

      
        
        1723
        +                                                                                    <div class="han lpl-15 lpr-15 lmb-15">

      
        
        1724
        +                                <div class="tc-bl lmb-5 lmt--3 break">

      
        
        1725
        +                                    Click on the arrows to change the translation direction.                                </div>

      
        
        1726
        +                                <div class="tb fs14 lpt-5 lpb-5 lmb-5">

      
        
        1727
        +                                    <amp-state id="stateSidebarNavBi">

      
        
        1728
        +                                        <script type="application/json">

      
        
        1729
        +                                                        {

      
        
        1730
        +                                                                                                                    "english_chinese_simplified": false,

      
        
        1731
        +                                                                                                                    "english_chinese_traditional": false,

      
        
        1732
        +                                                                                                                    "english_danish": false,

      
        
        1733
        +                                                                                                                    "english_dutch": false,

      
        
        1734
        +                                                                                                                    "english_french": false,

      
        
        1735
        +                                                                                                                    "english_german": false,

      
        
        1736
        +                                                                                                                    "english_indonesian": false,

      
        
        1737
        +                                                                                                                    "english_italian": false,

      
        
        1738
        +                                                                                                                    "english_japanese": false,

      
        
        1739
        +                                                                                                                    "english_norwegian": false,

      
        
        1740
        +                                                                                                                    "english_polish": false,

      
        
        1741
        +                                                                                                                    "english_portuguese": false,

      
        
        1742
        +                                                                                                                    "english_spanish": false,

      
        
        1743
        +                                                                                                                    "english_swedish": false,

      
        
        1744
        +                                                                                                                "erroneous_extra_item": false

      
        
        1745
        +                                                        }

      
        
        1746
        +                                            </script>

      
        
        1747
        +                                    </amp-state>

      
        
        1748
        +                                    Bilingual Dictionaries                                </div>

      
        
        1749
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        1750
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        1751
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_chinese_simplified: ! stateSidebarNavBi.english_chinese_simplified } })"

      
        
        1752
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        1753
        +                                        <a href='/dictionary/english-chinese-simplified/'

      
        
        1754
        +                                            [class]="stateSidebarNavBi.english_chinese_simplified ? 'hdn' : ''"

      
        
        1755
        +                                            data-dictCode="english-chinese-simplified"

      
        
        1756
        +                                            title="Cambridge English-Chinese (Simplified) Dictionary">English–Chinese (Simplified)</a>

      
        
        1757
        +                                                                                <a href='/dictionary/chinese-simplified-english/'

      
        
        1758
        +                                            class="hdn" [class]="stateSidebarNavBi.english_chinese_simplified ? '' : 'hdn'"

      
        
        1759
        +                                            data-dictCode="chinese-simplified-english"

      
        
        1760
        +                                            title="Cambridge Chinese (Simplified)-English Dictionary">Chinese (Simplified)–English</a>

      
        
        1761
        +                                    </div>

      
        
        1762
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        1763
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        1764
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_chinese_traditional: ! stateSidebarNavBi.english_chinese_traditional } })"

      
        
        1765
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        1766
        +                                        <a href='/dictionary/english-chinese-traditional/'

      
        
        1767
        +                                            [class]="stateSidebarNavBi.english_chinese_traditional ? 'hdn' : ''"

      
        
        1768
        +                                            data-dictCode="english-chinese-traditional"

      
        
        1769
        +                                            title="Cambridge English-Chinese (Traditional) Dictionary">English–Chinese (Traditional)</a>

      
        
        1770
        +                                                                                <a href='/dictionary/chinese-traditional-english/'

      
        
        1771
        +                                            class="hdn" [class]="stateSidebarNavBi.english_chinese_traditional ? '' : 'hdn'"

      
        
        1772
        +                                            data-dictCode="chinese-traditional-english"

      
        
        1773
        +                                            title="Cambridge Chinese (Traditional)-English Dictionary">Chinese (Traditional)–English</a>

      
        
        1774
        +                                    </div>

      
        
        1775
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        1776
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        1777
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_danish: ! stateSidebarNavBi.english_danish } })"

      
        
        1778
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        1779
        +                                        <a href='/dictionary/english-danish/'

      
        
        1780
        +                                            [class]="stateSidebarNavBi.english_danish ? 'hdn' : ''"

      
        
        1781
        +                                            data-dictCode="english-danish"

      
        
        1782
        +                                            title="English-Danish Dictionary">English–Danish</a>

      
        
        1783
        +                                                                                <a href='/dictionary/danish-english/'

      
        
        1784
        +                                            class="hdn" [class]="stateSidebarNavBi.english_danish ? '' : 'hdn'"

      
        
        1785
        +                                            data-dictCode="danish-english"

      
        
        1786
        +                                            title="Danish-English Dictionary">Danish–English</a>

      
        
        1787
        +                                    </div>

      
        
        1788
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        1789
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        1790
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_dutch: ! stateSidebarNavBi.english_dutch } })"

      
        
        1791
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        1792
        +                                        <a href='/dictionary/english-dutch/'

      
        
        1793
        +                                            [class]="stateSidebarNavBi.english_dutch ? 'hdn' : ''"

      
        
        1794
        +                                            data-dictCode="english-dutch"

      
        
        1795
        +                                            title="English-Dutch Dictionary">English–Dutch</a>

      
        
        1796
        +                                                                                <a href='/dictionary/dutch-english/'

      
        
        1797
        +                                            class="hdn" [class]="stateSidebarNavBi.english_dutch ? '' : 'hdn'"

      
        
        1798
        +                                            data-dictCode="dutch-english"

      
        
        1799
        +                                            title="Dutch-English Dictionary">Dutch–English</a>

      
        
        1800
        +                                    </div>

      
        
        1801
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        1802
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        1803
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_french: ! stateSidebarNavBi.english_french } })"

      
        
        1804
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        1805
        +                                        <a href='/dictionary/english-french/'

      
        
        1806
        +                                            [class]="stateSidebarNavBi.english_french ? 'hdn' : ''"

      
        
        1807
        +                                            data-dictCode="english-french"

      
        
        1808
        +                                            title="English-French Dictionary">English–French</a>

      
        
        1809
        +                                                                                <a href='/dictionary/french-english/'

      
        
        1810
        +                                            class="hdn" [class]="stateSidebarNavBi.english_french ? '' : 'hdn'"

      
        
        1811
        +                                            data-dictCode="french-english"

      
        
        1812
        +                                            title="French-English Dictionary">French–English</a>

      
        
        1813
        +                                    </div>

      
        
        1814
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        1815
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        1816
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_german: ! stateSidebarNavBi.english_german } })"

      
        
        1817
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        1818
        +                                        <a href='/dictionary/english-german/'

      
        
        1819
        +                                            [class]="stateSidebarNavBi.english_german ? 'hdn' : ''"

      
        
        1820
        +                                            data-dictCode="english-german"

      
        
        1821
        +                                            title="English-German Dictionary">English–German</a>

      
        
        1822
        +                                                                                <a href='/dictionary/german-english/'

      
        
        1823
        +                                            class="hdn" [class]="stateSidebarNavBi.english_german ? '' : 'hdn'"

      
        
        1824
        +                                            data-dictCode="german-english"

      
        
        1825
        +                                            title="German-English Dictionary">German–English</a>

      
        
        1826
        +                                    </div>

      
        
        1827
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        1828
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        1829
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_indonesian: ! stateSidebarNavBi.english_indonesian } })"

      
        
        1830
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        1831
        +                                        <a href='/dictionary/english-indonesian/'

      
        
        1832
        +                                            [class]="stateSidebarNavBi.english_indonesian ? 'hdn' : ''"

      
        
        1833
        +                                            data-dictCode="english-indonesian"

      
        
        1834
        +                                            title="English-Indonesian Dictionary">English–Indonesian</a>

      
        
        1835
        +                                                                                <a href='/dictionary/indonesian-english/'

      
        
        1836
        +                                            class="hdn" [class]="stateSidebarNavBi.english_indonesian ? '' : 'hdn'"

      
        
        1837
        +                                            data-dictCode="indonesian-english"

      
        
        1838
        +                                            title="Indonesian-English Dictionary">Indonesian–English</a>

      
        
        1839
        +                                    </div>

      
        
        1840
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        1841
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        1842
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_italian: ! stateSidebarNavBi.english_italian } })"

      
        
        1843
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        1844
        +                                        <a href='/dictionary/english-italian/'

      
        
        1845
        +                                            [class]="stateSidebarNavBi.english_italian ? 'hdn' : ''"

      
        
        1846
        +                                            data-dictCode="english-italian"

      
        
        1847
        +                                            title="Cambridge English-Italian Dictionary">English–Italian</a>

      
        
        1848
        +                                                                                <a href='/dictionary/italian-english/'

      
        
        1849
        +                                            class="hdn" [class]="stateSidebarNavBi.english_italian ? '' : 'hdn'"

      
        
        1850
        +                                            data-dictCode="italian-english"

      
        
        1851
        +                                            title="Italian-English Dictionary">Italian–English</a>

      
        
        1852
        +                                    </div>

      
        
        1853
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        1854
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        1855
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_japanese: ! stateSidebarNavBi.english_japanese } })"

      
        
        1856
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        1857
        +                                        <a href='/dictionary/english-japanese/'

      
        
        1858
        +                                            [class]="stateSidebarNavBi.english_japanese ? 'hdn' : ''"

      
        
        1859
        +                                            data-dictCode="english-japanese"

      
        
        1860
        +                                            title="Cambridge English-Japanese Dictionary">English–Japanese</a>

      
        
        1861
        +                                                                                <a href='/dictionary/japanese-english/'

      
        
        1862
        +                                            class="hdn" [class]="stateSidebarNavBi.english_japanese ? '' : 'hdn'"

      
        
        1863
        +                                            data-dictCode="japanese-english"

      
        
        1864
        +                                            title="Japanese-English Dictionary">Japanese–English</a>

      
        
        1865
        +                                    </div>

      
        
        1866
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        1867
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        1868
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_norwegian: ! stateSidebarNavBi.english_norwegian } })"

      
        
        1869
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        1870
        +                                        <a href='/dictionary/english-norwegian/'

      
        
        1871
        +                                            [class]="stateSidebarNavBi.english_norwegian ? 'hdn' : ''"

      
        
        1872
        +                                            data-dictCode="english-norwegian"

      
        
        1873
        +                                            title="English-Norwegian Dictionary">English–Norwegian</a>

      
        
        1874
        +                                                                                <a href='/dictionary/norwegian-english/'

      
        
        1875
        +                                            class="hdn" [class]="stateSidebarNavBi.english_norwegian ? '' : 'hdn'"

      
        
        1876
        +                                            data-dictCode="norwegian-english"

      
        
        1877
        +                                            title="Norwegian-English Dictionary">Norwegian–English</a>

      
        
        1878
        +                                    </div>

      
        
        1879
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        1880
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        1881
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_polish: ! stateSidebarNavBi.english_polish } })"

      
        
        1882
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        1883
        +                                        <a href='/dictionary/english-polish/'

      
        
        1884
        +                                            [class]="stateSidebarNavBi.english_polish ? 'hdn' : ''"

      
        
        1885
        +                                            data-dictCode="english-polish"

      
        
        1886
        +                                            title="Cambridge English-Polish Dictionary">English–Polish</a>

      
        
        1887
        +                                                                                <a href='/dictionary/polish-english/'

      
        
        1888
        +                                            class="hdn" [class]="stateSidebarNavBi.english_polish ? '' : 'hdn'"

      
        
        1889
        +                                            data-dictCode="polish-english"

      
        
        1890
        +                                            title="Polish-English Dictionary">Polish–English</a>

      
        
        1891
        +                                    </div>

      
        
        1892
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        1893
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        1894
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_portuguese: ! stateSidebarNavBi.english_portuguese } })"

      
        
        1895
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        1896
        +                                        <a href='/dictionary/english-portuguese/'

      
        
        1897
        +                                            [class]="stateSidebarNavBi.english_portuguese ? 'hdn' : ''"

      
        
        1898
        +                                            data-dictCode="english-portuguese"

      
        
        1899
        +                                            title="Cambridge English-Portuguese Dictionary">English–Portuguese</a>

      
        
        1900
        +                                                                                <a href='/dictionary/portuguese-english/'

      
        
        1901
        +                                            class="hdn" [class]="stateSidebarNavBi.english_portuguese ? '' : 'hdn'"

      
        
        1902
        +                                            data-dictCode="portuguese-english"

      
        
        1903
        +                                            title="Portuguese-English Dictionary">Portuguese–English</a>

      
        
        1904
        +                                    </div>

      
        
        1905
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        1906
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        1907
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_spanish: ! stateSidebarNavBi.english_spanish } })"

      
        
        1908
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        1909
        +                                        <a href='/dictionary/english-spanish/'

      
        
        1910
        +                                            [class]="stateSidebarNavBi.english_spanish ? 'hdn' : ''"

      
        
        1911
        +                                            data-dictCode="english-spanish"

      
        
        1912
        +                                            title="English-Spanish Dictionary">English–Spanish</a>

      
        
        1913
        +                                                                                <a href='/dictionary/spanish-english/'

      
        
        1914
        +                                            class="hdn" [class]="stateSidebarNavBi.english_spanish ? '' : 'hdn'"

      
        
        1915
        +                                            data-dictCode="spanish-english"

      
        
        1916
        +                                            title="Diccionario Espa&ntilde;ol-ingl&eacute;s">Spanish–English</a>

      
        
        1917
        +                                    </div>

      
        
        1918
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        1919
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        1920
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_swedish: ! stateSidebarNavBi.english_swedish } })"

      
        
        1921
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        1922
        +                                        <a href='/dictionary/english-swedish/'

      
        
        1923
        +                                            [class]="stateSidebarNavBi.english_swedish ? 'hdn' : ''"

      
        
        1924
        +                                            data-dictCode="english-swedish"

      
        
        1925
        +                                            title="English-Swedish Dictionary">English–Swedish</a>

      
        
        1926
        +                                                                                <a href='/dictionary/swedish-english/'

      
        
        1927
        +                                            class="hdn" [class]="stateSidebarNavBi.english_swedish ? '' : 'hdn'"

      
        
        1928
        +                                            data-dictCode="swedish-english"

      
        
        1929
        +                                            title="Swedish-English Dictionary">Swedish–English</a>

      
        
        1930
        +                                    </div>

      
        
        1931
        +                                                                                        </div>

      
        
        1932
        +

      
        
        1933
        +                                                                                    <div class="han lpl-15 lpr-15 lmb-15">

      
        
        1934
        +                                <div class="tb fs14 lpt-5 lpb-5 lmb-5">Semi-bilingual Dictionaries</div>

      
        
        1935
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        1936
        +                                    <a href='/dictionary/english-arabic/'

      
        
        1937
        +                                        title="Cambridge English-Arabic Dictionary">English–Arabic                                    </a>

      
        
        1938
        +                                </div>

      
        
        1939
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        1940
        +                                    <a href='/dictionary/english-bengali/'

      
        
        1941
        +                                        title="Cambridge English-Bengali Dictionary">English–Bengali                                    </a>

      
        
        1942
        +                                </div>

      
        
        1943
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        1944
        +                                    <a href='/dictionary/english-catalan/'

      
        
        1945
        +                                        title="Cambridge English-Catalan Dictionary">English–Catalan                                    </a>

      
        
        1946
        +                                </div>

      
        
        1947
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        1948
        +                                    <a href='/dictionary/english-czech/'

      
        
        1949
        +                                        title="English-Czech Dictionary">English–Czech                                    </a>

      
        
        1950
        +                                </div>

      
        
        1951
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        1952
        +                                    <a href='/dictionary/english-gujarati/'

      
        
        1953
        +                                        title="English-Gujarati Dictionary">English–Gujarati                                    </a>

      
        
        1954
        +                                </div>

      
        
        1955
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        1956
        +                                    <a href='/dictionary/english-hindi/'

      
        
        1957
        +                                        title="English-Hindi Dictionary">English–Hindi                                    </a>

      
        
        1958
        +                                </div>

      
        
        1959
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        1960
        +                                    <a href='/dictionary/english-korean/'

      
        
        1961
        +                                        title="Cambridge English-Korean Dictionary">English–Korean                                    </a>

      
        
        1962
        +                                </div>

      
        
        1963
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        1964
        +                                    <a href='/dictionary/english-malaysian/'

      
        
        1965
        +                                        title="English-Malay Dictionary">English–Malay                                    </a>

      
        
        1966
        +                                </div>

      
        
        1967
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        1968
        +                                    <a href='/dictionary/english-marathi/'

      
        
        1969
        +                                        title="English-Marathi Dictionary">English–Marathi                                    </a>

      
        
        1970
        +                                </div>

      
        
        1971
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        1972
        +                                    <a href='/dictionary/english-russian/'

      
        
        1973
        +                                        title="Cambridge English-Russian Dictionary">English–Russian                                    </a>

      
        
        1974
        +                                </div>

      
        
        1975
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        1976
        +                                    <a href='/dictionary/english-tamil/'

      
        
        1977
        +                                        title="English-Tamil Dictionary">English–Tamil                                    </a>

      
        
        1978
        +                                </div>

      
        
        1979
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        1980
        +                                    <a href='/dictionary/english-telugu/'

      
        
        1981
        +                                        title="English-Telugu Dictionary">English–Telugu                                    </a>

      
        
        1982
        +                                </div>

      
        
        1983
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        1984
        +                                    <a href='/dictionary/english-thai/'

      
        
        1985
        +                                        title="English-Thai Dictionary">English–Thai                                    </a>

      
        
        1986
        +                                </div>

      
        
        1987
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        1988
        +                                    <a href='/dictionary/english-turkish/'

      
        
        1989
        +                                        title="English-Turkish Dictionary, &#304;ngilizce-T&uuml;rk&ccedil;e &Ccedil;eviri">English–Turkish                                    </a>

      
        
        1990
        +                                </div>

      
        
        1991
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        1992
        +                                    <a href='/dictionary/english-ukrainian/'

      
        
        1993
        +                                        title="English-Ukrainian Dictionary">English–Ukrainian                                    </a>

      
        
        1994
        +                                </div>

      
        
        1995
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        1996
        +                                    <a href='/dictionary/english-urdu/'

      
        
        1997
        +                                        title="English-Urdu Dictionary">English–Urdu                                    </a>

      
        
        1998
        +                                </div>

      
        
        1999
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        2000
        +                                    <a href='/dictionary/english-vietnamese/'

      
        
        2001
        +                                        title="English-Vietnamese Dictionary">English–Vietnamese                                    </a>

      
        
        2002
        +                                </div>

      
        
        2003
        +                                                                                        </div>

      
        
        2004
        +                        </div>

      
        
        2005
        +                    </div>

      
        
        2006
        +                </div>

      
        
        2007
        +            </div>

      
        
        2008
        +            <div class="lbb lb-cm hlh21"><a href="/translate/" class="hdb tb hax lp-10 lpl-15 lpr-15">Translate</a></div>

      
        
        2009
        +                        <div class="lbb lb-cm hlh21"><a href="/grammar/british-grammar/" class="hdb tb hax lp-10 lpl-15 lpr-15">Grammar</a></div>

      
        
        2010
        +                        <div class="lbb lb-cm hlh21"><a href="/thesaurus/" class="hdb tb hax lp-10 lpl-15 lpr-15">Thesaurus</a></div>

      
        
        2011
        +            <div class="lbb lb-cm hlh21"><a href="/pronunciation/" class="hdb tb hax lp-10 lpl-15 lpr-15">Pronunciation</a></div>

      
        
        2012
        +            <div class="lbb lb-cm hlh21"><a href="/plus/" class="hdb tb hax lp-10 lpl-15 lpr-15">Cambridge Dictionary +Plus</a></div>

      
        
        2013
        +                        <div class="lbb lb-cm hlh21"><a href="/games/?utm_source=CDO&utm_medium=nav-bar&utm_campaign=gameshub-CDO-1&utm_id=games-nav&utm_content=games-nav" class="hdb tb hax lp-10 lpl-15 lpr-15">Games</a></div>

      
        
        2014
        +            <div class="hdn hdb-s lbb lb-cm hlh21 tc-bd">

      
        
        2015
        +                <section amp-access="loggedIn">

      
        
        2016
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        2017
        +                            [class]="stateSidebarNav.login ? 'hdb hax lp-10 lpl-15 lpr-15 hp on' : 'hdb hax lp-10 lpl-15 lpr-15 hp'"

      
        
        2018
        +                            on="tap: AMP.setState({ stateSidebarNav: { login: !stateSidebarNav.login } })">

      
        
        2019
        +                        <span class="pr hdb tb">

      
        
        2020
        +                            <template amp-access-template type="amp-mustache">

      
        
        2021
        +                                <i class="i i-user ibd fs16 hv-2 lpr-2" aria-hidden="true"></i> {{userName}}

      
        
        2022
        +                            </template>

      
        
        2023
        +                            <i class="i i-plus ibd pa pr0 lpt-2" [class]="stateSidebarNav.login ? 'i i-minus ibd pa pr0 lmt--19' : 'i i-plus ibd pa pr0 lmt--19'" aria-hidden="true"></i>

      
        
        2024
        +                        </span>

      
        
        2025
        +                    </span>

      
        
        2026
        +                    <div class="hdn" [class]="stateSidebarNav.login ? '' : 'hdn'">

      
        
        2027
        +                        <div class="han lpl-15 lpr-15">

      
        
        2028
        +                            <ul class="fs16 lmb-15">

      
        
        2029
        +                                <li class="lpt-5"><a href="/mydictionary/">Cambridge Dictionary +Plus</a></li>

      
        
        2030
        +                                <li class="lpt-5"><a href="/auth/profile">My profile</a></li>

      
        
        2031
        +                                <li class="lpt-5"><a href="/howto.html">+Plus help</a></li>

      
        
        2032
        +                                <li class="lpt-5"><span class="hp ha" on="tap:amp-access.login-sign-out">Log out</span></li>

      
        
        2033
        +                            </ul>

      
        
        2034
        +                        </div>

      
        
        2035
        +                    </div>

      
        
        2036
        +                </section>

      
        
        2037
        +                <section amp-access="NOT loggedIn">

      
        
        2038
        +                    <span on="tap:amp-access.login-sign-in" class="hdib tb hax lpb-10 lpt-10 lpl-15 hp">

      
        
        2039
        +                        <i class="i i-user ibd fs16 hv-2 lpr-2" aria-hidden="true"></i> Log in                    </span> /

      
        
        2040
        +                    <span on="tap:amp-access.login-sign-up" class="hdib tb hax lpb-10 lpt-10 lpr-15 hp"> Sign up</span>

      
        
        2041
        +                </section>

      
        
        2042
        +            </div>

      
        
        2043
        +        </nav>

      
        
        2044
        +

      
        
        2045
        +        <div class="lp-15 lbb lb-cm tc-bd">

      
        
        2046
        +            <div>

      
        
        2047
        +                <span class="hax hdb pr hp" on="tap: AMP.setState({ stateSidebarNav: { lang: ! stateSidebarNav.lang } })">

      
        
        2048
        +                    <i class="i i-globe ibd fs16 hv-2" aria-hidden="true"></i>

      
        
        2049
        +                    <span class="lpl-2">English (UK) <span class="tb">&nbsp;</span></span>

      
        
        2050
        +

      
        
        2051
        +                    <span class="pa pt0 pr0" [class]="stateSidebarNav.lang ? 'hdn' : 'pa pt0 pr0'">Change</span>

      
        
        2052
        +                    <i class="hdn" [class]="stateSidebarNav.lang ? 'i i-minus ibd pa pr5' : 'hdn'" aria-hidden="true"></i>

      
        
        2053
        +                </span>

      
        
        2054
        +

      
        
        2055
        +                <div class="hdn" [class]="stateSidebarNav.lang ? 'han' : 'hdn'">

      
        
        2056
        +                    <div class="hul-u lmt-10 lmb-0 lpl-20 cdo-locale-selector hlh1_5">

      
        
        2057
        +                                            <a href="/dictionary/english/"

      
        
        2058
        +                            hreflang="en" lang="en"

      
        
        2059
        +                            class="hdb lmb-5">English (UK)</a>

      
        
        2060
        +                                            <a href="/us/dictionary/english/"

      
        
        2061
        +                            hreflang="en-US" lang="en-US"

      
        
        2062
        +                            class="hdb lmb-5">English (US)</a>

      
        
        2063
        +                                            <a href="/es/diccionario/ingles/"

      
        
        2064
        +                            hreflang="es" lang="es"

      
        
        2065
        +                            class="hdb lmb-5">Español</a>

      
        
        2066
        +                                            <a href="/pt/dicionario/ingles/"

      
        
        2067
        +                            hreflang="pt" lang="pt"

      
        
        2068
        +                            class="hdb lmb-5">Português</a>

      
        
        2069
        +                                            <a href="/zhs/%E8%AF%8D%E5%85%B8/%E8%8B%B1%E8%AF%AD/"

      
        
        2070
        +                            hreflang="zh-Hans" lang="zh-Hans"

      
        
        2071
        +                            class="hdb lmb-5">中文 (简体)</a>

      
        
        2072
        +                                            <a href="/zht/%E8%A9%9E%E5%85%B8/%E8%8B%B1%E8%AA%9E/"

      
        
        2073
        +                            hreflang="zh-Hant" lang="zh-Hant"

      
        
        2074
        +                            class="hdb lmb-5">正體中文 (繁體)</a>

      
        
        2075
        +                                            <a href="/da/ordbog/engelsk/"

      
        
        2076
        +                            hreflang="da" lang="da"

      
        
        2077
        +                            class="hdb lmb-5">Dansk</a>

      
        
        2078
        +                                            <a href="/de/worterbuch/englisch/"

      
        
        2079
        +                            hreflang="de" lang="de"

      
        
        2080
        +                            class="hdb lmb-5">Deutsch</a>

      
        
        2081
        +                                            <a href="/fr/dictionnaire/anglais/"

      
        
        2082
        +                            hreflang="fr" lang="fr"

      
        
        2083
        +                            class="hdb lmb-5">Français</a>

      
        
        2084
        +                                            <a href="/it/dizionario/inglese/"

      
        
        2085
        +                            hreflang="it" lang="it"

      
        
        2086
        +                            class="hdb lmb-5">Italiano</a>

      
        
        2087
        +                                            <a href="/nl/woordenboek/engels/"

      
        
        2088
        +                            hreflang="nl" lang="nl"

      
        
        2089
        +                            class="hdb lmb-5">Nederlands</a>

      
        
        2090
        +                                            <a href="/no/ordbok/engelsk/"

      
        
        2091
        +                            hreflang="no" lang="no"

      
        
        2092
        +                            class="hdb lmb-5">Norsk</a>

      
        
        2093
        +                                            <a href="/pl/dictionary/english/"

      
        
        2094
        +                            hreflang="pl" lang="pl"

      
        
        2095
        +                            class="hdb lmb-5">Polski</a>

      
        
        2096
        +                                            <a href="/ru/%D1%81%D0%BB%D0%BE%D0%B2%D0%B0%D1%80%D1%8C/%D0%B0%D0%BD%D0%B3%D0%BB%D0%B8%D0%B9%D1%81%D0%BA%D0%B8%D0%B9/"

      
        
        2097
        +                            hreflang="ru" lang="ru"

      
        
        2098
        +                            class="hdb lmb-5">Русский</a>

      
        
        2099
        +                                            <a href="/tr/s%C3%B6zl%C3%BCk/ingilizce/"

      
        
        2100
        +                            hreflang="tr" lang="tr"

      
        
        2101
        +                            class="hdb lmb-5">Türkçe</a>

      
        
        2102
        +                                            <a href="/vi/dictionary/english/"

      
        
        2103
        +                            hreflang="vi" lang="vi"

      
        
        2104
        +                            class="hdb lmb-5">Tiếng Việt</a>

      
        
        2105
        +                                            <a href="/sv/ordbok/engelska/"

      
        
        2106
        +                            hreflang="sv" lang="sv"

      
        
        2107
        +                            class="hdb lmb-5">Svenska</a>

      
        
        2108
        +                                            <a href="/uk/dictionary/english/"

      
        
        2109
        +                            hreflang="uk" lang="uk"

      
        
        2110
        +                            class="hdb lmb-5">Українська</a>

      
        
        2111
        +                                            <a href="/ja/dictionary/english/"

      
        
        2112
        +                            hreflang="ja" lang="ja"

      
        
        2113
        +                            class="hdb lmb-5">日本語</a>

      
        
        2114
        +                                            <a href="/ko/%EC%82%AC%EC%A0%84/%EC%98%81%EC%96%B4/"

      
        
        2115
        +                            hreflang="ko" lang="ko"

      
        
        2116
        +                            class="hdb lmb-5">한국어</a>

      
        
        2117
        +                                            <a href="/gu/dictionary/english/"

      
        
        2118
        +                            hreflang="gu" lang="gu"

      
        
        2119
        +                            class="hdb lmb-5">ગુજરાતી</a>

      
        
        2120
        +                                            <a href="/ta/dictionary/english/"

      
        
        2121
        +                            hreflang="ta" lang="ta"

      
        
        2122
        +                            class="hdb lmb-5">தமிழ்</a>

      
        
        2123
        +                                            <a href="/te/dictionary/english/"

      
        
        2124
        +                            hreflang="te" lang="te"

      
        
        2125
        +                            class="hdb lmb-5">తెలుగు</a>

      
        
        2126
        +                                            <a href="/bn/dictionary/english/"

      
        
        2127
        +                            hreflang="bn" lang="bn"

      
        
        2128
        +                            class="hdb lmb-5">বাঙ্গালি</a>

      
        
        2129
        +                                            <a href="/mr/dictionary/english/"

      
        
        2130
        +                            hreflang="mr" lang="mr"

      
        
        2131
        +                            class="hdb lmb-5">मराठी</a>

      
        
        2132
        +                                            <a href="/hi/%E0%A4%B6%E0%A4%AC%E0%A5%8D%E0%A4%A6%E0%A4%95%E0%A5%8B%E0%A4%B6/%E0%A4%85%E0%A4%82%E0%A4%97%E0%A5%8D%E0%A4%B0%E0%A5%87%E0%A4%9C%E0%A4%BC%E0%A5%80/"

      
        
        2133
        +                            hreflang="hi" lang="hi"

      
        
        2134
        +                            class="hdb lmb-5">हिंदी</a>

      
        
        2135
        +                                        </div>

      
        
        2136
        +                </div>

      
        
        2137
        +            </div>

      
        
        2138
        +        </div>

      
        
        2139
        +

      
        
        2140
        +        <div class="lp-15 lbb lb-cm tc-bd">

      
        
        2141
        +            <div class="hdb pr">

      
        
        2142
        +                <span class="tb">Follow us</span>

      
        
        2143
        +                <div class="pa pt0 pr0">

      
        
        2144
        +                    <div class="hdib lpr-2"><a href='https://www.facebook.com/CUPCambridgeDictionary/' target="_blank" rel="noopener noreferrer" title="Likes" class="hao lpl-10 lpr-10"><i class="i i-facebook fs16" aria-hidden="true"></i></a></div>

      
        
        2145
        +                    <div class="hdib lpr-2"><a href='https://www.instagram.com/cambridgewords' target="_blank" rel="noopener noreferrer" title="Followers" class="hao lpl-10 lpr-10"><i class="i i-instagram fs16" aria-hidden="true"></i></a></div>

      
        
        2146
        +                    <div class="hdib"><a href='https://twitter.com/CambridgeWords' target="_blank" rel="noopener noreferrer" title="Followers" class="hao lpl-10"><i class="i i-x fs16" aria-hidden="true"></i></a></div>

      
        
        2147
        +                </div>

      
        
        2148
        +            </div>

      
        
        2149
        +        </div>

      
        
        2150
        +

      
        
        2151
        +        <div class="htc lmt-20 lmb-20">

      
        
        2152
        +            <div class="a a-hook lm-auto"></div>

      
        
        2153
        +        </div>

      
        
        2154
        +            </div>

      
        
        2155
        +</amp-sidebar>

      
        
        2156
        +

      
        
        2157
        +<amp-state id="stateSidebarDict">

      
        
        2158
        +    <script type="application/json">

      
        
        2159
        +        {

      
        
        2160
        +        "open": false,

      
        
        2161
        +        "recent": true,

      
        
        2162
        +        "def": true,

      
        
        2163
        +        "gram": true,

      
        
        2164
        +        "trans": true,

      
        
        2165
        +        "pron": true,

      
        
        2166
        +        "plus": true

      
        
        2167
        +        }

      
        
        2168
        +    </script>

      
        
        2169
        +</amp-state>

      
        
        2170
        +

      
        
        2171
        +<amp-sidebar id="sidebarDict" layout="nodisplay" side="right" class="bw cm-f" on="sidebarOpen:AMP.setState({ stateSidebarDict: { open: true } })">

      
        
        2172
        +

      
        
        2173
        +    <div class="pr cm-fc cms lm-auto">

      
        
        2174
        +        <span class="pa pt0 pr0 lmt-5 lmr-15 lpt-15 hp fon"

      
        
        2175
        +                on="tap:sidebarDict.close" role="button" aria-label="Close"

      
        
        2176
        +                title='Close' tabindex="0">

      
        
        2177
        +            <i class="i i-close ibd" aria-hidden="true"></i>

      
        
        2178
        +        </span>

      
        
        2179
        +

      
        
        2180
        +        <div class="han tc-bd fs14 lpt-5">

      
        
        2181
        +

      
        
        2182
        +            <div class="fs18 lp-5 lpt-20 lpb-15 lpl-15">

      
        
        2183
        +                Choose a dictionary            </div>

      
        
        2184
        +

      
        
        2185
        +            <ul class="hul-u hul-un hul-u0 lmb-0">

      
        
        2186
        +                <li class="lbt lb-cm">

      
        
        2187
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        2188
        +                            on="tap: AMP.setState({ stateSidebarDict: { recent: ! stateSidebarDict.recent } })">

      
        
        2189
        +                        <span class="pr hdb">

      
        
        2190
        +                            <span class="fs12 tcu">Recent and Recommended</span>

      
        
        2191
        +                            <i class="i i-minus ibd pa pr0 lpt-2" [class]="stateSidebarDict.recent ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'" aria-hidden="true"></i>

      
        
        2192
        +                        </span> 

      
        
        2193
        +                    </span>

      
        
        2194
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.recent ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        2195
        +                        <div class="pr tc-d fs16 lmb-20">

      
        
        2196
        +                            <div amp-access="1=1">

      
        
        2197
        +                                <template amp-access-template type="amp-mustache">

      
        
        2198
        +                                    {{#preferredDictionaries}}

      
        
        2199
        +                                        <span class="hp hdb lmb-5 hp"

      
        
        2200
        +                                            on="tap:AMP.setState({ stateSearch: { dataset: '{{dataCode}}', dataset_text: '{{name}}', dataset_search: 'Search {{name}}', isbilang: false} }), sidebarDict.close, searchword.focus"

      
        
        2201
        +                                            role="button" aria-label="Set dictionary search to {{name}}" tabindex="0">

      
        
        2202
        +                                            {{name}}

      
        
        2203
        +                                        </span>

      
        
        2204
        +                                    {{/preferredDictionaries}}

      
        
        2205
        +                                </template>

      
        
        2206
        +                            </div>

      
        
        2207
        +                            <div class="pa p0 bw" [class]="stateSidebarDict.open ? 'hdn' : 'pa p0 bw'">

      
        
        2208
        +                                <span class="pa p0 bload"></span>

      
        
        2209
        +                            </div>

      
        
        2210
        +                        </div>

      
        
        2211
        +                    </div>

      
        
        2212
        +                </li>

      
        
        2213
        +

      
        
        2214
        +                                                <li class="lbt lb-cm">

      
        
        2215
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        2216
        +                            on="tap: AMP.setState({ stateSidebarDict: { def: ! stateSidebarDict.def } })">

      
        
        2217
        +                        <span class="pr hdb">

      
        
        2218
        +                            <span class="fs12 tcu">Definitions</span>

      
        
        2219
        +                            <i aria-hidden="true" class="i i-minus ibd pa pr0 lpt-2"

      
        
        2220
        +                                [class]="stateSidebarDict.def ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'">

      
        
        2221
        +                            </i>

      
        
        2222
        +                        </span> 

      
        
        2223
        +                    </span>

      
        
        2224
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.def ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        2225
        +                        <div class="tc-bl lmb-5 lmt--3 break">

      
        
        2226
        +                            Clear explanations of natural written and spoken English                        </div>

      
        
        2227
        +                        <div class="hul-u tc-d fs16 hlh1_5 lmb-20">

      
        
        2228
        +                                                        <span data-dictCode="english" class="hp hdb hp"

      
        
        2229
        +                                    on="tap:AMP.setState({ stateSearch: { dataset: 'english', dataset_text: 'English', dataset_search: 'Search English', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2230
        +                                    role="button" aria-label="Set dictionary search to English" tabindex="0"

      
        
        2231
        +                                    title="English">English</span>

      
        
        2232
        +                                                        <span data-dictCode="learner-english" class="hp hdb hp"

      
        
        2233
        +                                    on="tap:AMP.setState({ stateSearch: { dataset: 'learner-english', dataset_text: 'Learner&rsquo;s Dictionary', dataset_search: 'Search Learner&rsquo;s Dictionary', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2234
        +                                    role="button" aria-label="Set dictionary search to Learner&rsquo;s Dictionary" tabindex="0"

      
        
        2235
        +                                    title="Learner&rsquo;s Dictionary">Learner&rsquo;s Dictionary</span>

      
        
        2236
        +                                                        <span data-dictCode="essential-british-english" class="hp hdb hp"

      
        
        2237
        +                                    on="tap:AMP.setState({ stateSearch: { dataset: 'essential-british-english', dataset_text: 'Essential British English', dataset_search: 'Search Essential British English', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2238
        +                                    role="button" aria-label="Set dictionary search to Essential British English" tabindex="0"

      
        
        2239
        +                                    title="Essential British English">Essential British English</span>

      
        
        2240
        +                                                        <span data-dictCode="essential-american-english" class="hp hdb hp"

      
        
        2241
        +                                    on="tap:AMP.setState({ stateSearch: { dataset: 'essential-american-english', dataset_text: 'Essential American English', dataset_search: 'Search Essential American English', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2242
        +                                    role="button" aria-label="Set dictionary search to Essential American English" tabindex="0"

      
        
        2243
        +                                    title="Essential American English">Essential American English</span>

      
        
        2244
        +                                                </div>

      
        
        2245
        +                    </div>

      
        
        2246
        +                </li>

      
        
        2247
        +                

      
        
        2248
        +                                                <li class="lbt lb-cm">

      
        
        2249
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        2250
        +                            on="tap: AMP.setState({ stateSidebarDict: { gram: ! stateSidebarDict.gram } })">

      
        
        2251
        +                        <span class="pr hdb">

      
        
        2252
        +                            <span class="fs12 tcu">Grammar and thesaurus</span>

      
        
        2253
        +                            <i aria-hidden="true" class="i i-minus ibd pa pr0 lpt-2"

      
        
        2254
        +                                [class]="stateSidebarDict.gram ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'">

      
        
        2255
        +                            </i>

      
        
        2256
        +                        </span> 

      
        
        2257
        +                    </span>

      
        
        2258
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.gram ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        2259
        +                        <div class="tc-bl lmb-5 lmt--3 break">

      
        
        2260
        +                            Usage explanations of natural written and spoken English                        </div>

      
        
        2261
        +                        <div class="hul-u tc-d fs16 hlh1_5 lmb-20">

      
        
        2262
        +                                                    <span data-dictCode="british-grammar" class="hp hdb"

      
        
        2263
        +                                on="tap:AMP.setState({ stateSearch: { dataset: 'british-grammar', dataset_text: 'Grammar', dataset_search: 'Search Grammar', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2264
        +                                role="button" aria-label="Set dictionary search to Grammar" tabindex="0"

      
        
        2265
        +                                title="Grammar">Grammar</span>

      
        
        2266
        +                                                    <!-- need to rework this part when we have the spec for the thesaurus dataset selector -->

      
        
        2267
        +                                                        <span data-dictCode="thesaurus" class="hp"

      
        
        2268
        +                                on="tap:AMP.setState({ stateSearch: { dataset: 'thesaurus', dataset_text: 'Thesaurus', dataset_search: 'Search Thesaurus', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2269
        +                                role="button" aria-label="Set dictionary search to Thesaurus" tabindex="0"

      
        
        2270
        +                                title="Thesaurus">Thesaurus</span>

      
        
        2271
        +                        </div>

      
        
        2272
        +                    </div>

      
        
        2273
        +                </li>

      
        
        2274
        +                

      
        
        2275
        +                <li class="lbt lb-cm">

      
        
        2276
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        2277
        +                            on="tap: AMP.setState({ stateSidebarDict: { pron: ! stateSidebarDict.pron } })">

      
        
        2278
        +                        <span class="pr hdb">

      
        
        2279
        +                            <span class="fs12 tcu">Pronunciation</span>

      
        
        2280
        +                            <i aria-hidden="true" class="i i-minus ibd pa pr0 lpt-2"

      
        
        2281
        +                                [class]="stateSidebarDict.pron ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'">

      
        
        2282
        +                            </i>

      
        
        2283
        +                        </span> 

      
        
        2284
        +                    </span>

      
        
        2285
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.pron ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        2286
        +                        <div class="tc-bl lmb-5 lmt--3 break">

      
        
        2287
        +                            British and American pronunciations with audio                        </div>

      
        
        2288
        +                        <div class="hul-u tc-d fs16 hlh1_5 lmb-20">

      
        
        2289
        +                                                        <span data-dictCode="pronunciation" class="hp hdb lmb-5 hp"

      
        
        2290
        +                                on="tap:AMP.setState({ stateSearch: { dataset: 'pronunciation', dataset_text: 'English Pronunciation', dataset_search: 'Search English Pronunciation', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2291
        +                                role="button" aria-label="Set dictionary search to English Pronunciation" tabindex="0"

      
        
        2292
        +                                title="English Pronunciation">English Pronunciation</span>

      
        
        2293
        +                        </div>

      
        
        2294
        +                    </div>

      
        
        2295
        +                </li>

      
        
        2296
        +

      
        
        2297
        +                <li class="lbt lb-cm">

      
        
        2298
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        2299
        +                            on="tap: AMP.setState({ stateSidebarDict: { trans: ! stateSidebarDict.trans } })">

      
        
        2300
        +                        <span class="pr hdb">

      
        
        2301
        +                            <span class="fs12 tcu">Translation</span>

      
        
        2302
        +                            <i aria-hidden="true" class="i i-minus ibd pa pr0 lpt-2"

      
        
        2303
        +                                [class]="stateSidebarDict.trans ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'">

      
        
        2304
        +                            </i>

      
        
        2305
        +                        </span>

      
        
        2306
        +                    </span>

      
        
        2307
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.trans ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        2308
        +

      
        
        2309
        +                                                                            <amp-state id="stateSidebarDictBi">

      
        
        2310
        +                                <script type="application/json">

      
        
        2311
        +                                        {

      
        
        2312
        +                                                                                    "english_chinese_simplified": false,

      
        
        2313
        +                                                                                    "english_chinese_traditional": false,

      
        
        2314
        +                                                                                    "english_danish": false,

      
        
        2315
        +                                                                                    "english_dutch": false,

      
        
        2316
        +                                                                                    "english_french": false,

      
        
        2317
        +                                                                                    "english_german": false,

      
        
        2318
        +                                                                                    "english_indonesian": false,

      
        
        2319
        +                                                                                    "english_italian": false,

      
        
        2320
        +                                                                                    "english_japanese": false,

      
        
        2321
        +                                                                                    "english_norwegian": false,

      
        
        2322
        +                                                                                    "english_polish": false,

      
        
        2323
        +                                                                                    "english_portuguese": false,

      
        
        2324
        +                                                                                    "english_spanish": false,

      
        
        2325
        +                                                                                    "english_swedish": false,

      
        
        2326
        +                                                                                "erroneous_extra_item": false

      
        
        2327
        +                                        }

      
        
        2328
        +                                    </script>

      
        
        2329
        +                            </amp-state>

      
        
        2330
        +

      
        
        2331
        +                            <div class="tc-bl lmb-5 lmt--3 break">

      
        
        2332
        +                                Click on the arrows to change the translation direction.                            </div>

      
        
        2333
        +

      
        
        2334
        +                            <div class="tb lmt-10 lmb-5">Bilingual Dictionaries</div>

      
        
        2335
        +                            <ul class="hul-u tc-d fs16 lmb-15">

      
        
        2336
        +                                                            <li>

      
        
        2337
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        2338
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_chinese_simplified: ! stateSidebarDictBi.english_chinese_simplified }, stateSearch: { dataset: stateSidebarDictBi.english_chinese_simplified ? 'english-chinese-simplified' : 'chinese-simplified-english', dataset_text: stateSidebarDictBi.english_chinese_simplified ? 'English&ndash;Chinese (Simplified)' : 'Chinese (Simplified)&ndash;English', dataset_search: stateSidebarDictBi.english_chinese_simplified ? 'Search English&ndash;Chinese (Simplified)' : 'Search Chinese (Simplified)&ndash;English' } })"

      
        
        2339
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        2340
        +                                    </i>

      
        
        2341
        +                                    <span data-dictCode="english-chinese-simplified" class="hp"

      
        
        2342
        +                                        [class]="stateSidebarDictBi.english_chinese_simplified ? 'hdn' : 'hp'"

      
        
        2343
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-chinese-simplified', dataset_text: 'English&ndash;Chinese (Simplified)', dataset_search: 'Search English–Chinese (Simplified)', isbilang: true, datasetrev: 'chinese-simplified-english', datasetrev_text: 'Chinese (Simplified)&ndash;English', datasetrev_search: 'Search Chinese (Simplified)–English'} }),sidebarDict.close,searchword.focus"

      
        
        2344
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Chinese (Simplified) Dictionary"

      
        
        2345
        +                                        tabindex="0" title="Cambridge English-Chinese (Simplified) Dictionary">English&ndash;Chinese (Simplified)</span>

      
        
        2346
        +                                    <span data-dictCode="chinese-simplified-english" class="hdn"

      
        
        2347
        +                                        [class]="stateSidebarDictBi.english_chinese_simplified ? 'hp' : 'hdn'"

      
        
        2348
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'chinese-simplified-english', dataset_text: 'Chinese (Simplified)&ndash;English', dataset_search: 'Search Chinese (Simplified)–English', isbilang: true, datasetrev: 'english-chinese-simplified', datasetrev_text: 'English&ndash;Chinese (Simplified)', datasetrev_search: 'Search English–Chinese (Simplified)'} }),sidebarDict.close,searchword.focus"

      
        
        2349
        +                                        role="button" aria-label="Set dictionary search to Cambridge Chinese (Simplified)-English Dictionary"

      
        
        2350
        +                                        tabindex="0" title="Cambridge Chinese (Simplified)-English Dictionary">Chinese (Simplified)&ndash;English</span>

      
        
        2351
        +                                </li>

      
        
        2352
        +                                                            <li>

      
        
        2353
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        2354
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_chinese_traditional: ! stateSidebarDictBi.english_chinese_traditional }, stateSearch: { dataset: stateSidebarDictBi.english_chinese_traditional ? 'english-chinese-traditional' : 'chinese-traditional-english', dataset_text: stateSidebarDictBi.english_chinese_traditional ? 'English&ndash;Chinese (Traditional)' : 'Chinese (Traditional)&ndash;English', dataset_search: stateSidebarDictBi.english_chinese_traditional ? 'Search English&ndash;Chinese (Traditional)' : 'Search Chinese (Traditional)&ndash;English' } })"

      
        
        2355
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        2356
        +                                    </i>

      
        
        2357
        +                                    <span data-dictCode="english-chinese-traditional" class="hp"

      
        
        2358
        +                                        [class]="stateSidebarDictBi.english_chinese_traditional ? 'hdn' : 'hp'"

      
        
        2359
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-chinese-traditional', dataset_text: 'English&ndash;Chinese (Traditional)', dataset_search: 'Search English–Chinese (Traditional)', isbilang: true, datasetrev: 'chinese-traditional-english', datasetrev_text: 'Chinese (Traditional)&ndash;English', datasetrev_search: 'Search Chinese (Traditional)–English'} }),sidebarDict.close,searchword.focus"

      
        
        2360
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Chinese (Traditional) Dictionary"

      
        
        2361
        +                                        tabindex="0" title="Cambridge English-Chinese (Traditional) Dictionary">English&ndash;Chinese (Traditional)</span>

      
        
        2362
        +                                    <span data-dictCode="chinese-traditional-english" class="hdn"

      
        
        2363
        +                                        [class]="stateSidebarDictBi.english_chinese_traditional ? 'hp' : 'hdn'"

      
        
        2364
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'chinese-traditional-english', dataset_text: 'Chinese (Traditional)&ndash;English', dataset_search: 'Search Chinese (Traditional)–English', isbilang: true, datasetrev: 'english-chinese-traditional', datasetrev_text: 'English&ndash;Chinese (Traditional)', datasetrev_search: 'Search English–Chinese (Traditional)'} }),sidebarDict.close,searchword.focus"

      
        
        2365
        +                                        role="button" aria-label="Set dictionary search to Cambridge Chinese (Traditional)-English Dictionary"

      
        
        2366
        +                                        tabindex="0" title="Cambridge Chinese (Traditional)-English Dictionary">Chinese (Traditional)&ndash;English</span>

      
        
        2367
        +                                </li>

      
        
        2368
        +                                                            <li>

      
        
        2369
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        2370
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_danish: ! stateSidebarDictBi.english_danish }, stateSearch: { dataset: stateSidebarDictBi.english_danish ? 'english-danish' : 'danish-english', dataset_text: stateSidebarDictBi.english_danish ? 'English&ndash;Danish' : 'Danish&ndash;English', dataset_search: stateSidebarDictBi.english_danish ? 'Search English&ndash;Danish' : 'Search Danish&ndash;English' } })"

      
        
        2371
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        2372
        +                                    </i>

      
        
        2373
        +                                    <span data-dictCode="english-danish" class="hp"

      
        
        2374
        +                                        [class]="stateSidebarDictBi.english_danish ? 'hdn' : 'hp'"

      
        
        2375
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-danish', dataset_text: 'English&ndash;Danish', dataset_search: 'Search English–Danish', isbilang: true, datasetrev: 'danish-english', datasetrev_text: 'Danish&ndash;English', datasetrev_search: 'Search Danish–English'} }),sidebarDict.close,searchword.focus"

      
        
        2376
        +                                        role="button" aria-label="Set dictionary search to English-Danish Dictionary"

      
        
        2377
        +                                        tabindex="0" title="English-Danish Dictionary">English&ndash;Danish</span>

      
        
        2378
        +                                    <span data-dictCode="danish-english" class="hdn"

      
        
        2379
        +                                        [class]="stateSidebarDictBi.english_danish ? 'hp' : 'hdn'"

      
        
        2380
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'danish-english', dataset_text: 'Danish&ndash;English', dataset_search: 'Search Danish–English', isbilang: true, datasetrev: 'english-danish', datasetrev_text: 'English&ndash;Danish', datasetrev_search: 'Search English–Danish'} }),sidebarDict.close,searchword.focus"

      
        
        2381
        +                                        role="button" aria-label="Set dictionary search to Danish-English Dictionary"

      
        
        2382
        +                                        tabindex="0" title="Danish-English Dictionary">Danish&ndash;English</span>

      
        
        2383
        +                                </li>

      
        
        2384
        +                                                            <li>

      
        
        2385
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        2386
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_dutch: ! stateSidebarDictBi.english_dutch }, stateSearch: { dataset: stateSidebarDictBi.english_dutch ? 'english-dutch' : 'dutch-english', dataset_text: stateSidebarDictBi.english_dutch ? 'English&ndash;Dutch' : 'Dutch&ndash;English', dataset_search: stateSidebarDictBi.english_dutch ? 'Search English&ndash;Dutch' : 'Search Dutch&ndash;English' } })"

      
        
        2387
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        2388
        +                                    </i>

      
        
        2389
        +                                    <span data-dictCode="english-dutch" class="hp"

      
        
        2390
        +                                        [class]="stateSidebarDictBi.english_dutch ? 'hdn' : 'hp'"

      
        
        2391
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-dutch', dataset_text: 'English&ndash;Dutch', dataset_search: 'Search English–Dutch', isbilang: true, datasetrev: 'dutch-english', datasetrev_text: 'Dutch&ndash;English', datasetrev_search: 'Search Dutch–English'} }),sidebarDict.close,searchword.focus"

      
        
        2392
        +                                        role="button" aria-label="Set dictionary search to English-Dutch Dictionary"

      
        
        2393
        +                                        tabindex="0" title="English-Dutch Dictionary">English&ndash;Dutch</span>

      
        
        2394
        +                                    <span data-dictCode="dutch-english" class="hdn"

      
        
        2395
        +                                        [class]="stateSidebarDictBi.english_dutch ? 'hp' : 'hdn'"

      
        
        2396
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'dutch-english', dataset_text: 'Dutch&ndash;English', dataset_search: 'Search Dutch–English', isbilang: true, datasetrev: 'english-dutch', datasetrev_text: 'English&ndash;Dutch', datasetrev_search: 'Search English–Dutch'} }),sidebarDict.close,searchword.focus"

      
        
        2397
        +                                        role="button" aria-label="Set dictionary search to Dutch-English Dictionary"

      
        
        2398
        +                                        tabindex="0" title="Dutch-English Dictionary">Dutch&ndash;English</span>

      
        
        2399
        +                                </li>

      
        
        2400
        +                                                            <li>

      
        
        2401
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        2402
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_french: ! stateSidebarDictBi.english_french }, stateSearch: { dataset: stateSidebarDictBi.english_french ? 'english-french' : 'french-english', dataset_text: stateSidebarDictBi.english_french ? 'English&ndash;French' : 'French&ndash;English', dataset_search: stateSidebarDictBi.english_french ? 'Search English&ndash;French' : 'Search French&ndash;English' } })"

      
        
        2403
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        2404
        +                                    </i>

      
        
        2405
        +                                    <span data-dictCode="english-french" class="hp"

      
        
        2406
        +                                        [class]="stateSidebarDictBi.english_french ? 'hdn' : 'hp'"

      
        
        2407
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-french', dataset_text: 'English&ndash;French', dataset_search: 'Search English–French', isbilang: true, datasetrev: 'french-english', datasetrev_text: 'French&ndash;English', datasetrev_search: 'Search French–English'} }),sidebarDict.close,searchword.focus"

      
        
        2408
        +                                        role="button" aria-label="Set dictionary search to English-French Dictionary"

      
        
        2409
        +                                        tabindex="0" title="English-French Dictionary">English&ndash;French</span>

      
        
        2410
        +                                    <span data-dictCode="french-english" class="hdn"

      
        
        2411
        +                                        [class]="stateSidebarDictBi.english_french ? 'hp' : 'hdn'"

      
        
        2412
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'french-english', dataset_text: 'French&ndash;English', dataset_search: 'Search French–English', isbilang: true, datasetrev: 'english-french', datasetrev_text: 'English&ndash;French', datasetrev_search: 'Search English–French'} }),sidebarDict.close,searchword.focus"

      
        
        2413
        +                                        role="button" aria-label="Set dictionary search to French-English Dictionary"

      
        
        2414
        +                                        tabindex="0" title="French-English Dictionary">French&ndash;English</span>

      
        
        2415
        +                                </li>

      
        
        2416
        +                                                            <li>

      
        
        2417
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        2418
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_german: ! stateSidebarDictBi.english_german }, stateSearch: { dataset: stateSidebarDictBi.english_german ? 'english-german' : 'german-english', dataset_text: stateSidebarDictBi.english_german ? 'English&ndash;German' : 'German&ndash;English', dataset_search: stateSidebarDictBi.english_german ? 'Search English&ndash;German' : 'Search German&ndash;English' } })"

      
        
        2419
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        2420
        +                                    </i>

      
        
        2421
        +                                    <span data-dictCode="english-german" class="hp"

      
        
        2422
        +                                        [class]="stateSidebarDictBi.english_german ? 'hdn' : 'hp'"

      
        
        2423
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-german', dataset_text: 'English&ndash;German', dataset_search: 'Search English–German', isbilang: true, datasetrev: 'german-english', datasetrev_text: 'German&ndash;English', datasetrev_search: 'Search German–English'} }),sidebarDict.close,searchword.focus"

      
        
        2424
        +                                        role="button" aria-label="Set dictionary search to English-German Dictionary"

      
        
        2425
        +                                        tabindex="0" title="English-German Dictionary">English&ndash;German</span>

      
        
        2426
        +                                    <span data-dictCode="german-english" class="hdn"

      
        
        2427
        +                                        [class]="stateSidebarDictBi.english_german ? 'hp' : 'hdn'"

      
        
        2428
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'german-english', dataset_text: 'German&ndash;English', dataset_search: 'Search German–English', isbilang: true, datasetrev: 'english-german', datasetrev_text: 'English&ndash;German', datasetrev_search: 'Search English–German'} }),sidebarDict.close,searchword.focus"

      
        
        2429
        +                                        role="button" aria-label="Set dictionary search to German-English Dictionary"

      
        
        2430
        +                                        tabindex="0" title="German-English Dictionary">German&ndash;English</span>

      
        
        2431
        +                                </li>

      
        
        2432
        +                                                            <li>

      
        
        2433
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        2434
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_indonesian: ! stateSidebarDictBi.english_indonesian }, stateSearch: { dataset: stateSidebarDictBi.english_indonesian ? 'english-indonesian' : 'indonesian-english', dataset_text: stateSidebarDictBi.english_indonesian ? 'English&ndash;Indonesian' : 'Indonesian&ndash;English', dataset_search: stateSidebarDictBi.english_indonesian ? 'Search English&ndash;Indonesian' : 'Search Indonesian&ndash;English' } })"

      
        
        2435
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        2436
        +                                    </i>

      
        
        2437
        +                                    <span data-dictCode="english-indonesian" class="hp"

      
        
        2438
        +                                        [class]="stateSidebarDictBi.english_indonesian ? 'hdn' : 'hp'"

      
        
        2439
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-indonesian', dataset_text: 'English&ndash;Indonesian', dataset_search: 'Search English–Indonesian', isbilang: true, datasetrev: 'indonesian-english', datasetrev_text: 'Indonesian&ndash;English', datasetrev_search: 'Search Indonesian–English'} }),sidebarDict.close,searchword.focus"

      
        
        2440
        +                                        role="button" aria-label="Set dictionary search to English-Indonesian Dictionary"

      
        
        2441
        +                                        tabindex="0" title="English-Indonesian Dictionary">English&ndash;Indonesian</span>

      
        
        2442
        +                                    <span data-dictCode="indonesian-english" class="hdn"

      
        
        2443
        +                                        [class]="stateSidebarDictBi.english_indonesian ? 'hp' : 'hdn'"

      
        
        2444
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'indonesian-english', dataset_text: 'Indonesian&ndash;English', dataset_search: 'Search Indonesian–English', isbilang: true, datasetrev: 'english-indonesian', datasetrev_text: 'English&ndash;Indonesian', datasetrev_search: 'Search English–Indonesian'} }),sidebarDict.close,searchword.focus"

      
        
        2445
        +                                        role="button" aria-label="Set dictionary search to Indonesian-English Dictionary"

      
        
        2446
        +                                        tabindex="0" title="Indonesian-English Dictionary">Indonesian&ndash;English</span>

      
        
        2447
        +                                </li>

      
        
        2448
        +                                                            <li>

      
        
        2449
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        2450
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_italian: ! stateSidebarDictBi.english_italian }, stateSearch: { dataset: stateSidebarDictBi.english_italian ? 'english-italian' : 'italian-english', dataset_text: stateSidebarDictBi.english_italian ? 'English&ndash;Italian' : 'Italian&ndash;English', dataset_search: stateSidebarDictBi.english_italian ? 'Search English&ndash;Italian' : 'Search Italian&ndash;English' } })"

      
        
        2451
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        2452
        +                                    </i>

      
        
        2453
        +                                    <span data-dictCode="english-italian" class="hp"

      
        
        2454
        +                                        [class]="stateSidebarDictBi.english_italian ? 'hdn' : 'hp'"

      
        
        2455
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-italian', dataset_text: 'English&ndash;Italian', dataset_search: 'Search English–Italian', isbilang: true, datasetrev: 'italian-english', datasetrev_text: 'Italian&ndash;English', datasetrev_search: 'Search Italian–English'} }),sidebarDict.close,searchword.focus"

      
        
        2456
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Italian Dictionary"

      
        
        2457
        +                                        tabindex="0" title="Cambridge English-Italian Dictionary">English&ndash;Italian</span>

      
        
        2458
        +                                    <span data-dictCode="italian-english" class="hdn"

      
        
        2459
        +                                        [class]="stateSidebarDictBi.english_italian ? 'hp' : 'hdn'"

      
        
        2460
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'italian-english', dataset_text: 'Italian&ndash;English', dataset_search: 'Search Italian–English', isbilang: true, datasetrev: 'english-italian', datasetrev_text: 'English&ndash;Italian', datasetrev_search: 'Search English–Italian'} }),sidebarDict.close,searchword.focus"

      
        
        2461
        +                                        role="button" aria-label="Set dictionary search to Italian-English Dictionary"

      
        
        2462
        +                                        tabindex="0" title="Italian-English Dictionary">Italian&ndash;English</span>

      
        
        2463
        +                                </li>

      
        
        2464
        +                                                            <li>

      
        
        2465
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        2466
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_japanese: ! stateSidebarDictBi.english_japanese }, stateSearch: { dataset: stateSidebarDictBi.english_japanese ? 'english-japanese' : 'japanese-english', dataset_text: stateSidebarDictBi.english_japanese ? 'English&ndash;Japanese' : 'Japanese&ndash;English', dataset_search: stateSidebarDictBi.english_japanese ? 'Search English&ndash;Japanese' : 'Search Japanese&ndash;English' } })"

      
        
        2467
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        2468
        +                                    </i>

      
        
        2469
        +                                    <span data-dictCode="english-japanese" class="hp"

      
        
        2470
        +                                        [class]="stateSidebarDictBi.english_japanese ? 'hdn' : 'hp'"

      
        
        2471
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-japanese', dataset_text: 'English&ndash;Japanese', dataset_search: 'Search English–Japanese', isbilang: true, datasetrev: 'japanese-english', datasetrev_text: 'Japanese&ndash;English', datasetrev_search: 'Search Japanese–English'} }),sidebarDict.close,searchword.focus"

      
        
        2472
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Japanese Dictionary"

      
        
        2473
        +                                        tabindex="0" title="Cambridge English-Japanese Dictionary">English&ndash;Japanese</span>

      
        
        2474
        +                                    <span data-dictCode="japanese-english" class="hdn"

      
        
        2475
        +                                        [class]="stateSidebarDictBi.english_japanese ? 'hp' : 'hdn'"

      
        
        2476
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'japanese-english', dataset_text: 'Japanese&ndash;English', dataset_search: 'Search Japanese–English', isbilang: true, datasetrev: 'english-japanese', datasetrev_text: 'English&ndash;Japanese', datasetrev_search: 'Search English–Japanese'} }),sidebarDict.close,searchword.focus"

      
        
        2477
        +                                        role="button" aria-label="Set dictionary search to Japanese-English Dictionary"

      
        
        2478
        +                                        tabindex="0" title="Japanese-English Dictionary">Japanese&ndash;English</span>

      
        
        2479
        +                                </li>

      
        
        2480
        +                                                            <li>

      
        
        2481
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        2482
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_norwegian: ! stateSidebarDictBi.english_norwegian }, stateSearch: { dataset: stateSidebarDictBi.english_norwegian ? 'english-norwegian' : 'norwegian-english', dataset_text: stateSidebarDictBi.english_norwegian ? 'English&ndash;Norwegian' : 'Norwegian&ndash;English', dataset_search: stateSidebarDictBi.english_norwegian ? 'Search English&ndash;Norwegian' : 'Search Norwegian&ndash;English' } })"

      
        
        2483
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        2484
        +                                    </i>

      
        
        2485
        +                                    <span data-dictCode="english-norwegian" class="hp"

      
        
        2486
        +                                        [class]="stateSidebarDictBi.english_norwegian ? 'hdn' : 'hp'"

      
        
        2487
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-norwegian', dataset_text: 'English&ndash;Norwegian', dataset_search: 'Search English–Norwegian', isbilang: true, datasetrev: 'norwegian-english', datasetrev_text: 'Norwegian&ndash;English', datasetrev_search: 'Search Norwegian–English'} }),sidebarDict.close,searchword.focus"

      
        
        2488
        +                                        role="button" aria-label="Set dictionary search to English-Norwegian Dictionary"

      
        
        2489
        +                                        tabindex="0" title="English-Norwegian Dictionary">English&ndash;Norwegian</span>

      
        
        2490
        +                                    <span data-dictCode="norwegian-english" class="hdn"

      
        
        2491
        +                                        [class]="stateSidebarDictBi.english_norwegian ? 'hp' : 'hdn'"

      
        
        2492
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'norwegian-english', dataset_text: 'Norwegian&ndash;English', dataset_search: 'Search Norwegian–English', isbilang: true, datasetrev: 'english-norwegian', datasetrev_text: 'English&ndash;Norwegian', datasetrev_search: 'Search English–Norwegian'} }),sidebarDict.close,searchword.focus"

      
        
        2493
        +                                        role="button" aria-label="Set dictionary search to Norwegian-English Dictionary"

      
        
        2494
        +                                        tabindex="0" title="Norwegian-English Dictionary">Norwegian&ndash;English</span>

      
        
        2495
        +                                </li>

      
        
        2496
        +                                                            <li>

      
        
        2497
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        2498
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_polish: ! stateSidebarDictBi.english_polish }, stateSearch: { dataset: stateSidebarDictBi.english_polish ? 'english-polish' : 'polish-english', dataset_text: stateSidebarDictBi.english_polish ? 'English&ndash;Polish' : 'Polish&ndash;English', dataset_search: stateSidebarDictBi.english_polish ? 'Search English&ndash;Polish' : 'Search Polish&ndash;English' } })"

      
        
        2499
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        2500
        +                                    </i>

      
        
        2501
        +                                    <span data-dictCode="english-polish" class="hp"

      
        
        2502
        +                                        [class]="stateSidebarDictBi.english_polish ? 'hdn' : 'hp'"

      
        
        2503
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-polish', dataset_text: 'English&ndash;Polish', dataset_search: 'Search English–Polish', isbilang: true, datasetrev: 'polish-english', datasetrev_text: 'Polish&ndash;English', datasetrev_search: 'Search Polish–English'} }),sidebarDict.close,searchword.focus"

      
        
        2504
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Polish Dictionary"

      
        
        2505
        +                                        tabindex="0" title="Cambridge English-Polish Dictionary">English&ndash;Polish</span>

      
        
        2506
        +                                    <span data-dictCode="polish-english" class="hdn"

      
        
        2507
        +                                        [class]="stateSidebarDictBi.english_polish ? 'hp' : 'hdn'"

      
        
        2508
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'polish-english', dataset_text: 'Polish&ndash;English', dataset_search: 'Search Polish–English', isbilang: true, datasetrev: 'english-polish', datasetrev_text: 'English&ndash;Polish', datasetrev_search: 'Search English–Polish'} }),sidebarDict.close,searchword.focus"

      
        
        2509
        +                                        role="button" aria-label="Set dictionary search to Polish-English Dictionary"

      
        
        2510
        +                                        tabindex="0" title="Polish-English Dictionary">Polish&ndash;English</span>

      
        
        2511
        +                                </li>

      
        
        2512
        +                                                            <li>

      
        
        2513
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        2514
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_portuguese: ! stateSidebarDictBi.english_portuguese }, stateSearch: { dataset: stateSidebarDictBi.english_portuguese ? 'english-portuguese' : 'portuguese-english', dataset_text: stateSidebarDictBi.english_portuguese ? 'English&ndash;Portuguese' : 'Portuguese&ndash;English', dataset_search: stateSidebarDictBi.english_portuguese ? 'Search English&ndash;Portuguese' : 'Search Portuguese&ndash;English' } })"

      
        
        2515
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        2516
        +                                    </i>

      
        
        2517
        +                                    <span data-dictCode="english-portuguese" class="hp"

      
        
        2518
        +                                        [class]="stateSidebarDictBi.english_portuguese ? 'hdn' : 'hp'"

      
        
        2519
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-portuguese', dataset_text: 'English&ndash;Portuguese', dataset_search: 'Search English–Portuguese', isbilang: true, datasetrev: 'portuguese-english', datasetrev_text: 'Portuguese&ndash;English', datasetrev_search: 'Search Portuguese–English'} }),sidebarDict.close,searchword.focus"

      
        
        2520
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Portuguese Dictionary"

      
        
        2521
        +                                        tabindex="0" title="Cambridge English-Portuguese Dictionary">English&ndash;Portuguese</span>

      
        
        2522
        +                                    <span data-dictCode="portuguese-english" class="hdn"

      
        
        2523
        +                                        [class]="stateSidebarDictBi.english_portuguese ? 'hp' : 'hdn'"

      
        
        2524
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'portuguese-english', dataset_text: 'Portuguese&ndash;English', dataset_search: 'Search Portuguese–English', isbilang: true, datasetrev: 'english-portuguese', datasetrev_text: 'English&ndash;Portuguese', datasetrev_search: 'Search English–Portuguese'} }),sidebarDict.close,searchword.focus"

      
        
        2525
        +                                        role="button" aria-label="Set dictionary search to Portuguese-English Dictionary"

      
        
        2526
        +                                        tabindex="0" title="Portuguese-English Dictionary">Portuguese&ndash;English</span>

      
        
        2527
        +                                </li>

      
        
        2528
        +                                                            <li>

      
        
        2529
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        2530
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_spanish: ! stateSidebarDictBi.english_spanish }, stateSearch: { dataset: stateSidebarDictBi.english_spanish ? 'english-spanish' : 'spanish-english', dataset_text: stateSidebarDictBi.english_spanish ? 'English&ndash;Spanish' : 'Spanish&ndash;English', dataset_search: stateSidebarDictBi.english_spanish ? 'Search English&ndash;Spanish' : 'Search Spanish&ndash;English' } })"

      
        
        2531
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        2532
        +                                    </i>

      
        
        2533
        +                                    <span data-dictCode="english-spanish" class="hp"

      
        
        2534
        +                                        [class]="stateSidebarDictBi.english_spanish ? 'hdn' : 'hp'"

      
        
        2535
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-spanish', dataset_text: 'English&ndash;Spanish', dataset_search: 'Search English–Spanish', isbilang: true, datasetrev: 'spanish-english', datasetrev_text: 'Spanish&ndash;English', datasetrev_search: 'Search Spanish–English'} }),sidebarDict.close,searchword.focus"

      
        
        2536
        +                                        role="button" aria-label="Set dictionary search to English-Spanish Dictionary"

      
        
        2537
        +                                        tabindex="0" title="English-Spanish Dictionary">English&ndash;Spanish</span>

      
        
        2538
        +                                    <span data-dictCode="spanish-english" class="hdn"

      
        
        2539
        +                                        [class]="stateSidebarDictBi.english_spanish ? 'hp' : 'hdn'"

      
        
        2540
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'spanish-english', dataset_text: 'Spanish&ndash;English', dataset_search: 'Search Spanish–English', isbilang: true, datasetrev: 'english-spanish', datasetrev_text: 'English&ndash;Spanish', datasetrev_search: 'Search English–Spanish'} }),sidebarDict.close,searchword.focus"

      
        
        2541
        +                                        role="button" aria-label="Set dictionary search to Diccionario Espa&ntilde;ol-ingl&eacute;s"

      
        
        2542
        +                                        tabindex="0" title="Diccionario Espa&ntilde;ol-ingl&eacute;s">Spanish&ndash;English</span>

      
        
        2543
        +                                </li>

      
        
        2544
        +                                                            <li>

      
        
        2545
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        2546
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_swedish: ! stateSidebarDictBi.english_swedish }, stateSearch: { dataset: stateSidebarDictBi.english_swedish ? 'english-swedish' : 'swedish-english', dataset_text: stateSidebarDictBi.english_swedish ? 'English&ndash;Swedish' : 'Swedish&ndash;English', dataset_search: stateSidebarDictBi.english_swedish ? 'Search English&ndash;Swedish' : 'Search Swedish&ndash;English' } })"

      
        
        2547
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        2548
        +                                    </i>

      
        
        2549
        +                                    <span data-dictCode="english-swedish" class="hp"

      
        
        2550
        +                                        [class]="stateSidebarDictBi.english_swedish ? 'hdn' : 'hp'"

      
        
        2551
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-swedish', dataset_text: 'English&ndash;Swedish', dataset_search: 'Search English–Swedish', isbilang: true, datasetrev: 'swedish-english', datasetrev_text: 'Swedish&ndash;English', datasetrev_search: 'Search Swedish–English'} }),sidebarDict.close,searchword.focus"

      
        
        2552
        +                                        role="button" aria-label="Set dictionary search to English-Swedish Dictionary"

      
        
        2553
        +                                        tabindex="0" title="English-Swedish Dictionary">English&ndash;Swedish</span>

      
        
        2554
        +                                    <span data-dictCode="swedish-english" class="hdn"

      
        
        2555
        +                                        [class]="stateSidebarDictBi.english_swedish ? 'hp' : 'hdn'"

      
        
        2556
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'swedish-english', dataset_text: 'Swedish&ndash;English', dataset_search: 'Search Swedish–English', isbilang: true, datasetrev: 'english-swedish', datasetrev_text: 'English&ndash;Swedish', datasetrev_search: 'Search English–Swedish'} }),sidebarDict.close,searchword.focus"

      
        
        2557
        +                                        role="button" aria-label="Set dictionary search to Swedish-English Dictionary"

      
        
        2558
        +                                        tabindex="0" title="Swedish-English Dictionary">Swedish&ndash;English</span>

      
        
        2559
        +                                </li>

      
        
        2560
        +                                                        </ul>

      
        
        2561
        +                        

      
        
        2562
        +                                                                            <div class="tb lmb-5">Semi-bilingual Dictionaries</div>

      
        
        2563
        +                            <div class="hul-u tc-d fs16 hlh1_5 lmb-20">

      
        
        2564
        +                                                            <span data-dictCode="english-arabic" class="hp hdb"

      
        
        2565
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-arabic', dataset_text: 'English&ndash;Arabic', dataset_search: 'Search English&ndash;Arabic', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2566
        +                                    role="button" aria-label="Set dictionary search to Cambridge English-Arabic Dictionary"

      
        
        2567
        +                                    tabindex="0" title="Cambridge English-Arabic Dictionary">English&ndash;Arabic</span>

      
        
        2568
        +                                                            <span data-dictCode="english-bengali" class="hp hdb"

      
        
        2569
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-bengali', dataset_text: 'English&ndash;Bengali', dataset_search: 'Search English&ndash;Bengali', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2570
        +                                    role="button" aria-label="Set dictionary search to Cambridge English-Bengali Dictionary"

      
        
        2571
        +                                    tabindex="0" title="Cambridge English-Bengali Dictionary">English&ndash;Bengali</span>

      
        
        2572
        +                                                            <span data-dictCode="english-catalan" class="hp hdb"

      
        
        2573
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-catalan', dataset_text: 'English&ndash;Catalan', dataset_search: 'Search English&ndash;Catalan', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2574
        +                                    role="button" aria-label="Set dictionary search to Cambridge English-Catalan Dictionary"

      
        
        2575
        +                                    tabindex="0" title="Cambridge English-Catalan Dictionary">English&ndash;Catalan</span>

      
        
        2576
        +                                                            <span data-dictCode="english-czech" class="hp hdb"

      
        
        2577
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-czech', dataset_text: 'English&ndash;Czech', dataset_search: 'Search English&ndash;Czech', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2578
        +                                    role="button" aria-label="Set dictionary search to English-Czech Dictionary"

      
        
        2579
        +                                    tabindex="0" title="English-Czech Dictionary">English&ndash;Czech</span>

      
        
        2580
        +                                                            <span data-dictCode="english-gujarati" class="hp hdb"

      
        
        2581
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-gujarati', dataset_text: 'English&ndash;Gujarati', dataset_search: 'Search English&ndash;Gujarati', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2582
        +                                    role="button" aria-label="Set dictionary search to English-Gujarati Dictionary"

      
        
        2583
        +                                    tabindex="0" title="English-Gujarati Dictionary">English&ndash;Gujarati</span>

      
        
        2584
        +                                                            <span data-dictCode="english-hindi" class="hp hdb"

      
        
        2585
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-hindi', dataset_text: 'English&ndash;Hindi', dataset_search: 'Search English&ndash;Hindi', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2586
        +                                    role="button" aria-label="Set dictionary search to English-Hindi Dictionary"

      
        
        2587
        +                                    tabindex="0" title="English-Hindi Dictionary">English&ndash;Hindi</span>

      
        
        2588
        +                                                            <span data-dictCode="english-korean" class="hp hdb"

      
        
        2589
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-korean', dataset_text: 'English&ndash;Korean', dataset_search: 'Search English&ndash;Korean', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2590
        +                                    role="button" aria-label="Set dictionary search to Cambridge English-Korean Dictionary"

      
        
        2591
        +                                    tabindex="0" title="Cambridge English-Korean Dictionary">English&ndash;Korean</span>

      
        
        2592
        +                                                            <span data-dictCode="english-malaysian" class="hp hdb"

      
        
        2593
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-malaysian', dataset_text: 'English&ndash;Malay', dataset_search: 'Search English&ndash;Malay', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2594
        +                                    role="button" aria-label="Set dictionary search to English-Malay Dictionary"

      
        
        2595
        +                                    tabindex="0" title="English-Malay Dictionary">English&ndash;Malay</span>

      
        
        2596
        +                                                            <span data-dictCode="english-marathi" class="hp hdb"

      
        
        2597
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-marathi', dataset_text: 'English&ndash;Marathi', dataset_search: 'Search English&ndash;Marathi', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2598
        +                                    role="button" aria-label="Set dictionary search to English-Marathi Dictionary"

      
        
        2599
        +                                    tabindex="0" title="English-Marathi Dictionary">English&ndash;Marathi</span>

      
        
        2600
        +                                                            <span data-dictCode="english-russian" class="hp hdb"

      
        
        2601
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-russian', dataset_text: 'English&ndash;Russian', dataset_search: 'Search English&ndash;Russian', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2602
        +                                    role="button" aria-label="Set dictionary search to Cambridge English-Russian Dictionary"

      
        
        2603
        +                                    tabindex="0" title="Cambridge English-Russian Dictionary">English&ndash;Russian</span>

      
        
        2604
        +                                                            <span data-dictCode="english-tamil" class="hp hdb"

      
        
        2605
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-tamil', dataset_text: 'English&ndash;Tamil', dataset_search: 'Search English&ndash;Tamil', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2606
        +                                    role="button" aria-label="Set dictionary search to English-Tamil Dictionary"

      
        
        2607
        +                                    tabindex="0" title="English-Tamil Dictionary">English&ndash;Tamil</span>

      
        
        2608
        +                                                            <span data-dictCode="english-telugu" class="hp hdb"

      
        
        2609
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-telugu', dataset_text: 'English&ndash;Telugu', dataset_search: 'Search English&ndash;Telugu', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2610
        +                                    role="button" aria-label="Set dictionary search to English-Telugu Dictionary"

      
        
        2611
        +                                    tabindex="0" title="English-Telugu Dictionary">English&ndash;Telugu</span>

      
        
        2612
        +                                                            <span data-dictCode="english-thai" class="hp hdb"

      
        
        2613
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-thai', dataset_text: 'English&ndash;Thai', dataset_search: 'Search English&ndash;Thai', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2614
        +                                    role="button" aria-label="Set dictionary search to English-Thai Dictionary"

      
        
        2615
        +                                    tabindex="0" title="English-Thai Dictionary">English&ndash;Thai</span>

      
        
        2616
        +                                                            <span data-dictCode="english-turkish" class="hp hdb"

      
        
        2617
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-turkish', dataset_text: 'English&ndash;Turkish', dataset_search: 'Search English&ndash;Turkish', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2618
        +                                    role="button" aria-label="Set dictionary search to English-Turkish Dictionary, &#304;ngilizce-T&uuml;rk&ccedil;e &Ccedil;eviri"

      
        
        2619
        +                                    tabindex="0" title="English-Turkish Dictionary, &#304;ngilizce-T&uuml;rk&ccedil;e &Ccedil;eviri">English&ndash;Turkish</span>

      
        
        2620
        +                                                            <span data-dictCode="english-ukrainian" class="hp hdb"

      
        
        2621
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-ukrainian', dataset_text: 'English&ndash;Ukrainian', dataset_search: 'Search English&ndash;Ukrainian', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2622
        +                                    role="button" aria-label="Set dictionary search to English-Ukrainian Dictionary"

      
        
        2623
        +                                    tabindex="0" title="English-Ukrainian Dictionary">English&ndash;Ukrainian</span>

      
        
        2624
        +                                                            <span data-dictCode="english-urdu" class="hp hdb"

      
        
        2625
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-urdu', dataset_text: 'English&ndash;Urdu', dataset_search: 'Search English&ndash;Urdu', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2626
        +                                    role="button" aria-label="Set dictionary search to English-Urdu Dictionary"

      
        
        2627
        +                                    tabindex="0" title="English-Urdu Dictionary">English&ndash;Urdu</span>

      
        
        2628
        +                                                            <span data-dictCode="english-vietnamese" class="hp hdb"

      
        
        2629
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-vietnamese', dataset_text: 'English&ndash;Vietnamese', dataset_search: 'Search English&ndash;Vietnamese', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        2630
        +                                    role="button" aria-label="Set dictionary search to English-Vietnamese Dictionary"

      
        
        2631
        +                                    tabindex="0" title="English-Vietnamese Dictionary">English&ndash;Vietnamese</span>

      
        
        2632
        +                                                        </div>

      
        
        2633
        +                       	                    </div>

      
        
        2634
        +                </li>

      
        
        2635
        +

      
        
        2636
        +                <li class="lbt lb-cm">

      
        
        2637
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        2638
        +                            on="tap: AMP.setState({ stateSidebarDict: { plus: ! stateSidebarDict.plus } })">

      
        
        2639
        +                        <span class="pr hdb">

      
        
        2640
        +                            <span class="fs12 tcu">Dictionary +Plus</span>

      
        
        2641
        +                            <i aria-hidden="true" class="i i-minus ibd pa pr0 lpt-2"

      
        
        2642
        +                                [class]="stateSidebarDict.plus ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'">

      
        
        2643
        +                            </i>

      
        
        2644
        +                        </span> 

      
        
        2645
        +                    </span>

      
        
        2646
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.plus ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        2647
        +                        <div class="pr tc-d fs16 lmb-20">

      
        
        2648
        +                                                        <span data-dictCode="wordlists" class="hp hdb lmb-5 hp"

      
        
        2649
        +                                on="tap:AMP.setState({ stateSearch: { dataset: 'wordlists', dataset_text: 'Word Lists', dataset_search: 'Search Word Lists' } }), sidebarDict.close, searchword.focus"

      
        
        2650
        +                                role="button" aria-label="Set dictionary search to Word Lists" tabindex="0"

      
        
        2651
        +                                title="Word Lists">Word Lists</span>

      
        
        2652
        +                            <div class="pa p0 bw" [class]="stateSidebarDict.open ? 'hdn' : 'pa p0 bw'">

      
        
        2653
        +                                <span class="pa p0 bload"></span>

      
        
        2654
        +                            </div>

      
        
        2655
        +                        </div>

      
        
        2656
        +                    </div>

      
        
        2657
        +                </li>

      
        
        2658
        +            </ul>

      
        
        2659
        +        </div>

      
        
        2660
        +    </div>

      
        
        2661
        +

      
        
        2662
        +</amp-sidebar>

      
        
        2663
        +

      
        
        2664
        +<amp-sidebar id="sidebarLang" layout="nodisplay" side="right" class="bw cm-f">

      
        
        2665
        +

      
        
        2666
        +    <div class="pr cms han">

      
        
        2667
        +

      
        
        2668
        +        <span class="pa pt0 pr0 lmt-5 lmr-15 lpt-15 hp fon"

      
        
        2669
        +                on="tap:sidebarLang.close" role="button" aria-label='Close' title='Close' tabindex="0">

      
        
        2670
        +            <i class="i i-close ibd" aria-hidden="true"></i>

      
        
        2671
        +        </span>

      
        
        2672
        +

      
        
        2673
        +        <nav class="lp-s_t-5">

      
        
        2674
        +            <div class="fs18 lbb lb-cm lp-5 lpt-20 lpb-15 lpl-15">

      
        
        2675
        +                Choose your language

      
        
        2676
        +            </div>

      
        
        2677
        +            <div class="lp-15">

      
        
        2678
        +                <span class="hax hdb pr">

      
        
        2679
        +                    <i class="i i-globe ibd fs16 hv0" aria-hidden="true"></i>

      
        
        2680
        +                    <span class="lpl-2">English (UK) <span class="tb">&nbsp;</span></span>

      
        
        2681
        +                </span>

      
        
        2682
        +

      
        
        2683
        +                <div class="han hul-u lmt-10 lmb-0 lpl-20 hlh1_5">

      
        
        2684
        +                                                                                            <a href="/us/dictionary/english/"

      
        
        2685
        +                        hreflang="en-US" lang="en-US"

      
        
        2686
        +                        class="hdb lmb-5">English (US)</a>

      
        
        2687
        +                                                                            <a href="/es/diccionario/ingles/"

      
        
        2688
        +                        hreflang="es" lang="es"

      
        
        2689
        +                        class="hdb lmb-5">Español</a>

      
        
        2690
        +                                                                            <a href="/pt/dicionario/ingles/"

      
        
        2691
        +                        hreflang="pt" lang="pt"

      
        
        2692
        +                        class="hdb lmb-5">Português</a>

      
        
        2693
        +                                                                            <a href="/zhs/%E8%AF%8D%E5%85%B8/%E8%8B%B1%E8%AF%AD/"

      
        
        2694
        +                        hreflang="zh-Hans" lang="zh-Hans"

      
        
        2695
        +                        class="hdb lmb-5">中文 (简体)</a>

      
        
        2696
        +                                                                            <a href="/zht/%E8%A9%9E%E5%85%B8/%E8%8B%B1%E8%AA%9E/"

      
        
        2697
        +                        hreflang="zh-Hant" lang="zh-Hant"

      
        
        2698
        +                        class="hdb lmb-5">正體中文 (繁體)</a>

      
        
        2699
        +                                                                            <a href="/da/ordbog/engelsk/"

      
        
        2700
        +                        hreflang="da" lang="da"

      
        
        2701
        +                        class="hdb lmb-5">Dansk</a>

      
        
        2702
        +                                                                            <a href="/de/worterbuch/englisch/"

      
        
        2703
        +                        hreflang="de" lang="de"

      
        
        2704
        +                        class="hdb lmb-5">Deutsch</a>

      
        
        2705
        +                                                                            <a href="/fr/dictionnaire/anglais/"

      
        
        2706
        +                        hreflang="fr" lang="fr"

      
        
        2707
        +                        class="hdb lmb-5">Français</a>

      
        
        2708
        +                                                                            <a href="/it/dizionario/inglese/"

      
        
        2709
        +                        hreflang="it" lang="it"

      
        
        2710
        +                        class="hdb lmb-5">Italiano</a>

      
        
        2711
        +                                                                            <a href="/nl/woordenboek/engels/"

      
        
        2712
        +                        hreflang="nl" lang="nl"

      
        
        2713
        +                        class="hdb lmb-5">Nederlands</a>

      
        
        2714
        +                                                                            <a href="/no/ordbok/engelsk/"

      
        
        2715
        +                        hreflang="no" lang="no"

      
        
        2716
        +                        class="hdb lmb-5">Norsk</a>

      
        
        2717
        +                                                                            <a href="/pl/dictionary/english/"

      
        
        2718
        +                        hreflang="pl" lang="pl"

      
        
        2719
        +                        class="hdb lmb-5">Polski</a>

      
        
        2720
        +                                                                            <a href="/ru/%D1%81%D0%BB%D0%BE%D0%B2%D0%B0%D1%80%D1%8C/%D0%B0%D0%BD%D0%B3%D0%BB%D0%B8%D0%B9%D1%81%D0%BA%D0%B8%D0%B9/"

      
        
        2721
        +                        hreflang="ru" lang="ru"

      
        
        2722
        +                        class="hdb lmb-5">Русский</a>

      
        
        2723
        +                                                                            <a href="/tr/s%C3%B6zl%C3%BCk/ingilizce/"

      
        
        2724
        +                        hreflang="tr" lang="tr"

      
        
        2725
        +                        class="hdb lmb-5">Türkçe</a>

      
        
        2726
        +                                                                            <a href="/vi/dictionary/english/"

      
        
        2727
        +                        hreflang="vi" lang="vi"

      
        
        2728
        +                        class="hdb lmb-5">Tiếng Việt</a>

      
        
        2729
        +                                                                            <a href="/sv/ordbok/engelska/"

      
        
        2730
        +                        hreflang="sv" lang="sv"

      
        
        2731
        +                        class="hdb lmb-5">Svenska</a>

      
        
        2732
        +                                                                            <a href="/uk/dictionary/english/"

      
        
        2733
        +                        hreflang="uk" lang="uk"

      
        
        2734
        +                        class="hdb lmb-5">Українська</a>

      
        
        2735
        +                                                                            <a href="/ja/dictionary/english/"

      
        
        2736
        +                        hreflang="ja" lang="ja"

      
        
        2737
        +                        class="hdb lmb-5">日本語</a>

      
        
        2738
        +                                                                            <a href="/ko/%EC%82%AC%EC%A0%84/%EC%98%81%EC%96%B4/"

      
        
        2739
        +                        hreflang="ko" lang="ko"

      
        
        2740
        +                        class="hdb lmb-5">한국어</a>

      
        
        2741
        +                                                                            <a href="/gu/dictionary/english/"

      
        
        2742
        +                        hreflang="gu" lang="gu"

      
        
        2743
        +                        class="hdb lmb-5">ગુજરાતી</a>

      
        
        2744
        +                                                                            <a href="/ta/dictionary/english/"

      
        
        2745
        +                        hreflang="ta" lang="ta"

      
        
        2746
        +                        class="hdb lmb-5">தமிழ்</a>

      
        
        2747
        +                                                                            <a href="/te/dictionary/english/"

      
        
        2748
        +                        hreflang="te" lang="te"

      
        
        2749
        +                        class="hdb lmb-5">తెలుగు</a>

      
        
        2750
        +                                                                            <a href="/bn/dictionary/english/"

      
        
        2751
        +                        hreflang="bn" lang="bn"

      
        
        2752
        +                        class="hdb lmb-5">বাঙ্গালি</a>

      
        
        2753
        +                                                                            <a href="/mr/dictionary/english/"

      
        
        2754
        +                        hreflang="mr" lang="mr"

      
        
        2755
        +                        class="hdb lmb-5">मराठी</a>

      
        
        2756
        +                                                                            <a href="/hi/%E0%A4%B6%E0%A4%AC%E0%A5%8D%E0%A4%A6%E0%A4%95%E0%A5%8B%E0%A4%B6/%E0%A4%85%E0%A4%82%E0%A4%97%E0%A5%8D%E0%A4%B0%E0%A5%87%E0%A4%9C%E0%A4%BC%E0%A5%80/"

      
        
        2757
        +                        hreflang="hi" lang="hi"

      
        
        2758
        +                        class="hdb lmb-5">हिंदी</a>

      
        
        2759
        +                                                    </div>

      
        
        2760
        +            </div>

      
        
        2761
        +

      
        
        2762
        +        </nav>

      
        
        2763
        +

      
        
        2764
        +    </div>

      
        
        2765
        +

      
        
        2766
        +</amp-sidebar>

      
        
        2767
        +

      
        
        2768
        +    

      
        
        2769
        +    

      
        
        2770
        +    

      
        
        2771
        +    </body>

      
        
        2772
        +</html>

      
A testdata/cambridge_skip.html
···
        
        1
        +<!doctype html>

      
        
        2
        +<html lang="en" >

      
        
        3
        +

      
        
        4
        +<head>

      
        
        5
        +    <title>SKIP | English meaning - Cambridge Dictionary</title>

      
        
        6
        +    <meta charset="utf-8">

      
        
        7
        +    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

      
        
        8
        +    <meta name="description" content="SKIP definition: 1. to move lightly and quickly, making a small jump after each step:  2. to jump lightly over a&hellip;. Learn more.">

      
        
        9
        +    <meta name="keywords" content="skip definition, dictionary, english, british, american, business, british english, thesaurus, define skip, skip meaning, what is skip, spelling, conjugation, audio pronunciation, free, online, english.">

      
        
        10
        +    <meta http-equiv="X-UA-Compatible" content="IE=edge">

      
        
        11
        +    <meta name='viewport' content="width=device-width,minimum-scale=1,initial-scale=1">

      
        
        12
        +    <meta name="google" content="notranslate">

      
        
        13
        +            

      
        
        14
        +        

      
        
        15
        +    

      
        
        16
        +                

      
        
        17
        +                <script async src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="1be0fc8f-627a-4f3a-a13f-a4d11e467d2a"></script>

      
        
        18
        +    

      
        
        19
        +

      
        
        20
        +        

      
        
        21
        +                    

      
        
        22
        +        <meta property="og:url" content="https://dictionary.cambridge.org/dictionary/english/skip" />

      
        
        23
        +

      
        
        24
        +                                    <link rel="canonical" href="https://dictionary.cambridge.org/dictionary/english/skip" />

      
        
        25
        +                                                                                                    <link rel="alternate" hreflang="en" href="https://dictionary.cambridge.org/dictionary/english/skip"/>

      
        
        26
        +                         <link rel="alternate" hreflang="en-GB" href="https://dictionary.cambridge.org/dictionary/english/skip"/>                                                                                 <link rel="alternate" hreflang="en-US" href="https://dictionary.cambridge.org/us/dictionary/english/skip"/>

      
        
        27
        +                                                                    <link rel="alternate" hreflang="en-MX" href="https://dictionary.cambridge.org/us/dictionary/english/skip"/>

      
        
        28
        +                                                                    <link rel="alternate" hreflang="en-PH" href="https://dictionary.cambridge.org/us/dictionary/english/skip"/>

      
        
        29
        +                                                                    <link rel="alternate" hreflang="en-BR" href="https://dictionary.cambridge.org/us/dictionary/english/skip"/>

      
        
        30
        +                                                                    <link rel="alternate" hreflang="en-CO" href="https://dictionary.cambridge.org/us/dictionary/english/skip"/>

      
        
        31
        +                                                                                                        <link rel="alternate" hreflang="es" href="https://dictionary.cambridge.org/es/diccionario/ingles/skip"/>

      
        
        32
        +                                                                    <link rel="alternate" hreflang="es-ES" href="https://dictionary.cambridge.org/es/diccionario/ingles/skip"/>

      
        
        33
        +                                                                                                        <link rel="alternate" hreflang="pt" href="https://dictionary.cambridge.org/pt/dicionario/ingles/skip"/>

      
        
        34
        +                                                                    <link rel="alternate" hreflang="pt-BR" href="https://dictionary.cambridge.org/pt/dicionario/ingles/skip"/>

      
        
        35
        +                                                                                                        <link rel="alternate" hreflang="zh-Hans" href="https://dictionary.cambridge.org/zhs/%E8%AF%8D%E5%85%B8/%E8%8B%B1%E8%AF%AD/skip"/>

      
        
        36
        +                                                                                                        <link rel="alternate" hreflang="zh-Hant" href="https://dictionary.cambridge.org/zht/%E8%A9%9E%E5%85%B8/%E8%8B%B1%E8%AA%9E/skip"/>

      
        
        37
        +                                                                                                        <link rel="alternate" hreflang="da" href="https://dictionary.cambridge.org/da/ordbog/engelsk/skip"/>

      
        
        38
        +                                                                                                        <link rel="alternate" hreflang="de" href="https://dictionary.cambridge.org/de/worterbuch/englisch/skip"/>

      
        
        39
        +                                                                                                        <link rel="alternate" hreflang="fr" href="https://dictionary.cambridge.org/fr/dictionnaire/anglais/skip"/>

      
        
        40
        +                                                                                                        <link rel="alternate" hreflang="it" href="https://dictionary.cambridge.org/it/dizionario/inglese/skip"/>

      
        
        41
        +                                                                                                        <link rel="alternate" hreflang="nl" href="https://dictionary.cambridge.org/nl/woordenboek/engels/skip"/>

      
        
        42
        +                                                                                                        <link rel="alternate" hreflang="no" href="https://dictionary.cambridge.org/no/ordbok/engelsk/skip"/>

      
        
        43
        +                                                                                                        <link rel="alternate" hreflang="pl" href="https://dictionary.cambridge.org/pl/dictionary/english/skip"/>

      
        
        44
        +                                                                                                        <link rel="alternate" hreflang="ru" href="https://dictionary.cambridge.org/ru/%D1%81%D0%BB%D0%BE%D0%B2%D0%B0%D1%80%D1%8C/%D0%B0%D0%BD%D0%B3%D0%BB%D0%B8%D0%B9%D1%81%D0%BA%D0%B8%D0%B9/skip"/>

      
        
        45
        +                                                                                                        <link rel="alternate" hreflang="tr" href="https://dictionary.cambridge.org/tr/s%C3%B6zl%C3%BCk/ingilizce/skip"/>

      
        
        46
        +                                                                                                        <link rel="alternate" hreflang="vi" href="https://dictionary.cambridge.org/vi/dictionary/english/skip"/>

      
        
        47
        +                                                                                                        <link rel="alternate" hreflang="sv" href="https://dictionary.cambridge.org/sv/ordbok/engelska/skip"/>

      
        
        48
        +                                                                                                        <link rel="alternate" hreflang="uk" href="https://dictionary.cambridge.org/uk/dictionary/english/skip"/>

      
        
        49
        +                                                                                                        <link rel="alternate" hreflang="ja" href="https://dictionary.cambridge.org/ja/dictionary/english/skip"/>

      
        
        50
        +                                                                                                        <link rel="alternate" hreflang="ko" href="https://dictionary.cambridge.org/ko/%EC%82%AC%EC%A0%84/%EC%98%81%EC%96%B4/skip"/>

      
        
        51
        +                                                                                                        <link rel="alternate" hreflang="gu" href="https://dictionary.cambridge.org/gu/dictionary/english/skip"/>

      
        
        52
        +                                                                                                        <link rel="alternate" hreflang="ta" href="https://dictionary.cambridge.org/ta/dictionary/english/skip"/>

      
        
        53
        +                                                                                                        <link rel="alternate" hreflang="te" href="https://dictionary.cambridge.org/te/dictionary/english/skip"/>

      
        
        54
        +                                                                                                        <link rel="alternate" hreflang="bn" href="https://dictionary.cambridge.org/bn/dictionary/english/skip"/>

      
        
        55
        +                                                                                                        <link rel="alternate" hreflang="mr" href="https://dictionary.cambridge.org/mr/dictionary/english/skip"/>

      
        
        56
        +                                                                                                        <link rel="alternate" hreflang="hi" href="https://dictionary.cambridge.org/hi/%E0%A4%B6%E0%A4%AC%E0%A5%8D%E0%A4%A6%E0%A4%95%E0%A5%8B%E0%A4%B6/%E0%A4%85%E0%A4%82%E0%A4%97%E0%A5%8D%E0%A4%B0%E0%A5%87%E0%A4%9C%E0%A4%BC%E0%A5%80/skip"/>

      
        
        57
        +                                                                        

      
        
        58
        +                                    

      
        
        59
        +    

      
        
        60
        +            

      
        
        61
        +        

      
        
        62
        +        

      
        
        63
        +        

      
        
        64
        +        <meta name="google-site-verification" content="lg0qcRkaLtMeKJcXsOLoptzK-2MIRJzuEtiYHZf_O2Y">

      
        
        65
        +    <link rel="shortcut icon" type="image/x-icon" href="https://dictionary.cambridge.org/external/images/favicon.ico?version=6.0.78">

      
        
        66
        +    <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="Cambridge Dict">

      
        
        67
        +    <link rel="apple-touch-icon-precomposed" type="image/x-icon" href="https://dictionary.cambridge.org/external/images/apple-touch-icon-precomposed.png?version=6.0.78">

      
        
        68
        +    <link rel="preload" href="/external/fonts/cdoicons.woff?version=6.0.78" as="font" crossorigin>

      
        
        69
        +    <meta property="og:title" content="skip">

      
        
        70
        +    <meta property="og:description" content="1. to move lightly and quickly, making a small jump after each step:  2. to&hellip;">

      
        
        71
        +    <meta property="og:image" content="https://dictionary.cambridge.org/external/images/og-image.png">

      
        
        72
        +    <meta property="og:type" content="article">

      
        
        73
        +    <meta property="fb:app_id" content="118775618133878">

      
        
        74
        +    <meta property="twitter:card" content="summary">

      
        
        75
        +    <meta property="twitter:site" content="@CambridgeWords">

      
        
        76
        +                  <link rel="preconnect" href="https://cdn.polarbyte.com">

      
        
        77
        +        <link rel="preconnect" href="https://securepubads.g.doubleclick.net">

      
        
        78
        +        <link rel="preconnect" href="https://ib.adnxs.com">

      
        
        79
        +        <link rel="preconnect" href="https://bidder.criteo.com">

      
        
        80
        +        <link rel="preconnect" href="https://as-sec.casalemedia.com">

      
        
        81
        +        <link rel="preconnect" href="https://idm-d.openx.net">

      
        
        82
        +        <link rel="preconnect" href="https://hbopenbid.pubmatic.com">

      
        
        83
        +        <link rel="preconnect" href="https://fastlane.rubiconproject.com">

      
        
        84
        +        <link rel="preconnect" href="https://ap.lijit.com">

      
        
        85
        +        <link rel="preconnect" href="https://tlx.3lift.com">

      
        
        86
        +        <link rel="preconnect" href="https://script.4dex.io">

      
        
        87
        +        <link rel="preconnect" href="https://a.teads.tv">

      
        
        88
        +

      
        
        89
        +        <script defer type="text/javascript" src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>

      
        
        90
        +        <script defer type="text/javascript" src="https://cdn.polarbyte.com/idm/cdo/pb.min.js"></script>

      
        
        91
        +            <link rel="preload" href="https://www.googletagmanager.com/gtag/js?id=G-L9GCR21SZ7" as="script">

      
        
        92
        +      <link href="/common.css?version=6.0.78" rel="stylesheet" type="text/css">

      
        
        93
        +                    

      
        
        94
        +        <script async src="https://cdn.ampproject.org/lts/v0.js"></script>

      
        
        95
        +        <script async custom-element="amp-bind" src="https://cdn.ampproject.org/lts/v0/amp-bind-0.1.js"></script>

      
        
        96
        +            <script async custom-element="amp-form" src="https://cdn.ampproject.org/lts/v0/amp-form-0.1.js"></script>

      
        
        97
        +            <script async rel="preload" custom-element="amp-sidebar" src="https://cdn.ampproject.org/lts/v0/amp-sidebar-0.1.js"></script>

      
        
        98
        +    <script defer custom-element="amp-accordion" src="https://cdn.ampproject.org/lts/v0/amp-accordion-0.1.js"></script>

      
        
        99
        +    <script async custom-element="amp-list" src="https://cdn.ampproject.org/lts/v0/amp-list-0.1.js"></script>

      
        
        100
        +    <script async custom-template="amp-mustache" src="https://cdn.ampproject.org/lts/v0/amp-mustache-0.2.js"></script>

      
        
        101
        +    <script async custom-element="amp-access" src="https://cdn.ampproject.org/lts/v0/amp-access-0.1.js"></script>

      
        
        102
        +    <script async custom-element="amp-user-notification" src="https://cdn.ampproject.org/lts/v0/amp-user-notification-0.1.js"></script>

      
        
        103
        +                    <script async custom-element="amp-audio" src="https://cdn.ampproject.org/lts/v0/amp-audio-0.1.js"></script>

      
        
        104
        +                    <script async custom-element="amp-image-lightbox" src="https://cdn.ampproject.org/lts/v0/amp-image-lightbox-0.1.js"></script>

      
        
        105
        +                        

      
        
        106
        +    <script type="text/javascript" src="/autocomplete.js?version=6.0.78"></script>

      
        
        107
        +

      
        
        108
        +    

      
        
        109
        +    

      
        
        110
        +    

      
        
        111
        +                                        

      
        
        112
        +                                            <script type='text/javascript'>

      
        
        113
        +function readCookie(name) {

      
        
        114
        +    var nameEQ = name + "=";

      
        
        115
        +    var ca = document.cookie.split(';');

      
        
        116
        +    for ( var i = 0; i < ca.length; i++) {

      
        
        117
        +        var c = ca[i];

      
        
        118
        +        while (c.charAt(0) == ' ')

      
        
        119
        +            c = c.substring(1, c.length);

      
        
        120
        +        if (c.indexOf(nameEQ) == 0)

      
        
        121
        +            return c.substring(nameEQ.length, c.length);

      
        
        122
        +    }

      
        
        123
        +    return null;

      
        
        124
        +}

      
        
        125
        +

      
        
        126
        +var pl_did = readCookie("pl_did");

      
        
        127
        +var pl_p = localStorage.pl;

      
        
        128
        +</script>                                                        <script type='text/javascript'>

      
        
        129
        +    //<![CDATA[

      
        
        130
        +        var iaw = iaw || {};

      
        
        131
        +        iaw.que = iaw.que || [];

      
        
        132
        +        iaw.cmd = iaw.cmd || [];

      
        
        133
        +        iaw.que.push(function() {

      
        
        134
        +            iaw.setPageLabels([ "lcp", "resp", "wprod" ]);

      
        
        135
        +            iaw.setPageLayout("default_moreslots");

      
        
        136
        +

      
        
        137
        +            var pageCriteria = { "pc": "dictionary", "pt": "english-no-exs", "sfr": "cdo_dict_english", "ptl": "entry-lcp", "dc": "english", "ei": "skip", "c": [ "business_financial_industrial_technology", "sports_sporting_goods", "shopping_consumer_resources", "leisure_food_travel", "none", "jobs_education_resumes" ], "t": "games-and-activities", "l": "en", "tc": "resp" };

      
        
        138
        +            if(pl_p) pageCriteria.alc_pr = pl_p.split(",");

      
        
        139
        +            pageCriteria.iaw_rv = "1";

      
        
        140
        +

      
        
        141
        +            iaw.setPageCriteria(pageCriteria);

      
        
        142
        +

      
        
        143
        +            iaw.setCountry("UA");

      
        
        144
        +

      
        
        145
        +                        

      
        
        146
        +             iaw.setExtraAdSlots([ "ad_contentslot_1", "ad_contentslot_2", "ad_contentslot_3", "ad_contentslot_4", "ad_contentslot_5", "ad_contentslot_6", "ad_contentslot_7" ]); 

      
        
        147
        +                    });

      
        
        148
        +

      
        
        149
        +                iaw.getRewardedAdDailyLimit = function() {

      
        
        150
        +            if(typeof iaw.getRewardedAdDailyLimitFromIaw == 'function') {

      
        
        151
        +                return iaw.getRewardedAdDailyLimitFromIaw();

      
        
        152
        +            }

      
        
        153
        +

      
        
        154
        +            return 0;

      
        
        155
        +        };

      
        
        156
        +    //]]>

      
        
        157
        +    </script>

      
        
        158
        +    <script async id="ywRQz" data-sdk="l/1.1.27" data-cfasync="false" nowprocket src="https://html-load.com/sdk.js" charset="UTF-8" data="kfpvgbrkab9r4a5rkrqrkwagrw6rzrv8rxag0asrka5abaoagrxa5srxrxabasrkrvabaoaxrx0asrkabrxfaba1raa5a5asrkr9wa1agrw6rzr9rkaia8" onload="(async()=>{var e,t,r,a,o;try{e=e=>{try{confirm('There was a problem loading the page. Please click OK to learn more.')?h.href=t+'?url='+a(h.href)+'&error='+a(e)+'&domain='+r:h.reload()}catch(o){location.href=t+'?eventId=&error=Vml0YWwgQVBJIGJsb2NrZWQ%3D&domain='+r}},t='https://report.error-report.com/modal',r='html-load.com',a=btoa;const n=window,i=document,s=e=>new Promise((t=>{const r=.1*e,a=e+Math.floor(2*Math.random()*r)-r;setTimeout(t,a)})),l=n.addEventListener.bind(n),d=n.postMessage.bind(n),c='message',h=location,m=Math.random,w=clearInterval,g='setAttribute';o=async o=>{try{localStorage.setItem(h.host+'_fa_'+a('last_bfa_at'),Date.now().toString())}catch(f){}setInterval((()=>{i.head.innerHTML='',i.body.innerHTML=''}),100);const n=await fetch('https://error-report.com/report?type=loader_light&url='+a(h.href)+'&error='+a(o)+'&request_id='+a(Math.random().toString().slice(2)),{method:'POST'}).then((e=>e.text())),s=new Promise((e=>{l('message',(t=>{'as_modal_loaded'===t.data&&e()}))}));let d=i.createElement('iframe');d.src=t+'?url='+a(h.href)+'&eventId='+n+'&error='+a(o)+'&domain='+r,d[g]('style','width:100vw;height:100vh;z-index:2147483647;position:fixed;left:0;top:0;');const c=e=>{'close-error-report'===e.data&&(d.remove(),removeEventListener('message',c))};l('message',c),i.documentElement.appendChild(d);const m=setInterval((()=>{if(!i.contains(d))return w(m);(()=>{const e=d.getBoundingClientRect();return'none'!==getComputedStyle(d).display&&0!==e.width&&0!==e.height})()||(w(m),e(o))}),1e3);await new Promise(((e,t)=>{s.then(e),setTimeout((()=>t(o)),3e3)}))};const f=()=>new Promise(((e,t)=>{let r=m().toString(),a=m().toString();l(c,(e=>e.data===r&&d(a,'*'))),l(c,(t=>t.data===a&&e())),d(r,'*')})),p=async()=>{try{let e=!1;const t=m().toString();if(l(c,(r=>{r.data===t+'_as_res'&&(e=!0)})),d(t+'_as_req','*'),await f(),await s(500),e)return!0}catch(e){}return!1},u=[100,500,1e3],y=a('_bfa_message'+location.hostname);for(let e=0;e<=u.length&&!await p();e++){if(window[y])throw window[y];if(e===u.length-1)throw'Failed to load website properly since '+r+' is tainted. Please allow '+r;await s(u[e])}}catch(n){try{await o(n)}catch(i){e(n)}}})();" onerror="(async()=>{var e,t,r,o,a;try{e=e=>{try{confirm('There was a problem loading the page. Please click OK to learn more.')?h.href=t+'?url='+o(h.href)+'&error='+o(e)+'&domain='+r:h.reload()}catch(a){location.href=t+'?eventId=&error=Vml0YWwgQVBJIGJsb2NrZWQ%3D&domain='+r}},t='https://report.error-report.com/modal',r='html-load.com',o=btoa;const n=window,s=document,i=JSON.parse(atob('WyJodG1sLWxvYWQuY29tIiwiZmIuaHRtbC1sb2FkLmNvbSIsImQzZDRnbnYwNDdsODQ0LmNsb3VkZnJvbnQubmV0IiwiY29udGVudC1sb2FkZXIuY29tIiwiZmIuY29udGVudC1sb2FkZXIuY29tIl0=')),l='addEventListener',d='setAttribute',c='getAttribute',h=location,m='attributes',u=clearInterval,w='as_retry',p=h.hostname,v=n.addEventListener.bind(n),b='__sa_'+window.btoa(window.location.href),_=()=>{const e=e=>{let t=0;for(let r=0,o=e.length;r<o;r++){t=(t<<5)-t+e.charCodeAt(r),t|=0}return t},t=Date.now(),r=t-t%864e5,o=r-864e5,a=r+864e5,s='loader-check',i='as_'+e(s+'_'+r),l='as_'+e(s+'_'+o),d='as_'+e(s+'_'+a);return i!==l&&i!==d&&l!==d&&!!(n[i]||n[l]||n[d])};if(a=async a=>{try{localStorage.setItem(h.host+'_fa_'+o('last_bfa_at'),Date.now().toString())}catch(w){}setInterval((()=>{s.head.innerHTML='',s.body.innerHTML=''}),100);const n=await fetch('https://error-report.com/report?type=loader_light&url='+o(h.href)+'&error='+o(a)+'&request_id='+o(Math.random().toString().slice(2)),{method:'POST'}).then((e=>e.text())),i=new Promise((e=>{v('message',(t=>{'as_modal_loaded'===t.data&&e()}))}));let l=s.createElement('iframe');l.src=t+'?url='+o(h.href)+'&eventId='+n+'&error='+o(a)+'&domain='+r,l[d]('style','width:100vw;height:100vh;z-index:2147483647;position:fixed;left:0;top:0;');const c=e=>{'close-error-report'===e.data&&(l.remove(),removeEventListener('message',c))};v('message',c),s.documentElement.appendChild(l);const m=setInterval((()=>{if(!s.contains(l))return u(m);(()=>{const e=l.getBoundingClientRect();return'none'!==getComputedStyle(l).display&&0!==e.width&&0!==e.height})()||(u(m),e(a))}),1e3);await new Promise(((e,t)=>{i.then(e),setTimeout((()=>t(a)),3e3)}))},void 0===n[w]&&(n[w]=0),n[w]>=i.length)throw'Failed to load website properly since '+r+' is blocked. Please allow '+r;if(_())return;const g=s.querySelector('#ywRQz'),f=s.createElement('script');for(let e=0;e<g[m].length;e++)f[d](g[m][e].name,g[m][e].value);const y=n[b]?.EventTarget_addEventListener||EventTarget.prototype[l],I=o(p+'_onload');n[I]&&y.call(f,'load',n[I]);const L=o(p+'_onerror');n[L]&&y.call(f,'error',n[L]);const E=new n.URL(g[c]('src'));E.host=i[n[w]++],f[d]('src',E.href),f[d]('type','text/javascript'),g[d]('id',g[c]('id')+'_'),g.parentNode.insertBefore(f,g),g.remove()}catch(n){try{await a(n)}catch(s){e(n)}}})();"></script>

      
        
        159
        +    <script data-cfasync="false" nowprocket>(async t=>{try{var e=t=>{const e=t.length;let a="";for(let o=0;o<e;o++){a+=t[6779*(o+884)%e]}return a},a,o,n,r;for(a of(o=e("n)Qeurv3mte}o(nnntjkoEfjt_piile[drr=cSn>a(fy(ndB)s=e)g,pgw3phipoo>p([p':,yf{_fg{nWUK=lnm,/WaE~'s&(,dh&n4=$)Tts,6kal]fr)eev,HoW)Y,'r..d+VSh=')hs(.ZnWeegsitnWer)t{onp_(YyT[e}nnonr)t'dZ}i3#.(ydlss...a);vxt'iett)0p'oW(pkr(ratoI~})r1l_r e;r&ual|())tu|y.Po}Y}s;]tVs%]|n;|lo=msr:ov(a(irtr:{i)]hrde)aIjtr|4btS,neIr=asaVn]jov th1tt)tWi f.cS.!g.=YfK}r-L:%:),z;1dA)((_'{.e1)6aaha,cer?gt{vK=))}gp%s^J['ma6vtj3{_i=etdBtam=tqWeysoot;n.g[uv:V _deVunt?)t,7;=orovFe(Z'9'Oj)nba([5''1ss.lt%wt;){i}(slt)Hre))3H:;+=t1'cV.tch'hrSe}SaHc0b=iW Dpnt~r$=wvn.=aag&M1:!r]wJBr'o[;g(cfIeHs4so)(}t~s<ht})etatX{=gpercI54tZ.feyg+0Mc.pYFZ[)r(.o{HIgiV3_}(0)tndonns[tjeZ-ns5+gaagVt)t)t'0[.Z))eme('egw(qd)nicgp6 ^n=)tt0eyh;n'Qso_p|T(qh{"+"%)[s!=vVmno)%edn?tsmehleow)n:Tos.,6tnr, (2VrYc$}nPad?(:ateo.a Vieq0VeE;xr|crcri)etW)a)l)t,s=W)ppn,epaxy&gzo& lnz.Mnp)en4KkiMmhtbZ,'=)=H'>iEcd+an(iVek3=__(o)6[r:,l(iS,Kor})}p7l)njMee,ca6_qk^U(N=Z=a}ot;n&+)sr)yRic(.Bi);Tc(=pZ1)w)B)),(,S)Jorr7x=antm)= =Zstw$h,t=2llq|&Vg=1wa,'}f=r.(v6gK]}T+p i&ue)}(u{.gZdnyS,it}o,bijb_tn)0.kZcoQc_)oaojn$,HtMbS,aa,[a=be(_ned}Ctm=fJ.c-oxV0xs;sZes,))re=mr').Z. tei=mDhLn'o,y@k)'tnZt)d.d0dpt!ns)[r_Roho)l(,deaebe6_ve,;(c)feet)lns,0Yiratg>e)po6Vc.esP';B)ToYWO'N=so'WVa)(|al,Zar,c'o+sy7,0e'XtZ_Wt(nsbUp$o}dh_,=4Zv !oGc=:);O,|Losve=+aRjxttlC]to=X[iZ<'(et:B4,h4{_n,vnY.)%Y,srw=(Lnlia_jc.dre]t(n}tTlW)m;}jr)Y'o!me_'tr1V=}Sagsi.fsa2:Vdoljb=tt.odidjes;|n(oWe;(an~ hh;'f;@lfpHi6m{(<n=hna=||iJec7V[,i<tg)=Tanue,=Zolmi f])n[Ie_to Lrg.))lte[uOLn,ZDUop[Bb=;r)SeYSl2en)!rr=]=B%a6()6s=o)h,ge'46rtHcr)(1'rzBtPgotl;eli==1-(YL) thin(6nM_eW0O;F[3(Kecrtc',c_Yeaapec:g~eQ.teQ;+et1atnm}t:e=QexTy(nx]asTsD}cbFo=1]'Vn'tf.srY'tc.)c) =ZoVr;Y4rt==yl^>j},o>iY(),&)aRey='%c& Ol}h,==n)V&mPZ=tsHTeh.=LI _le(eteZ0rs(.&n6e=es?r;Lle!Xrnlaol,r, R=(Hh7QdTa=;'$'w')1n6hY{=sn=sjc )e)o&)p}upcZcsle;N;=(==Za,jRm(e,KT,;a'wmah.ieEpnrhm,e0.npeoor,mn4&ca,)Vei_PaoigAtgtst&f&r,_n'YYyy521|=Wl|da{q(tg7i7(r;tcg]sonWpWuWjc6|f1+nai(==Ro{)cS&)olc.e=Woaooz;ZZpfZd(t6)rZ,/'.t}oaztydn teu't1,s&,ht(s'Cbd=otV}l e((etZ=Se-stadtcH,''a?_.j)SOg'){,ea.e)H:(u_2i)Vso)eZ]=Rsaj7ll=%]jm.,;)xs};o)yh)l,ig(of.&,tN:),2vvWtcZP(dn6W=oZprgt,,)exede@=ey(7Ly|h;t=l|7s';qgtSQ|q.md[=en'ec_ehe!vat~q]e)r'}]|=rs');Liej)Wea)dok(ie0DVDwa=:aNr.ne/(;oPs'ha)ew0e.a'(J;]p;fn1.anaTlr))2_&%c)=}fLtglWa=n$ =cN.!{Z)zketxM2+6_eoWehV_+VpXeSerbtcyicShfo.kZ.tnsNY:t'y,oe4,W}teBia)_(N;_) +P,w'(thmte1JVerefs2t',i(}s().e(;pe;;{6=1ira Tat4Zrot,t(.MYIs= ,3ncMpI6np,u.!X7&p^pjj(L(Y0e)e=ee=onanedon,aAu,a,t}~,oti?(Zd,reH%=p6so'.tl(07i[_e+'LWcexr'n,m!f,qttanoev)'!(e~ift~)a.of0igte'%&gaoh:_=y,0_i'.q.fpp)se_'ya),47a.ewxdW;hh=ter%]]6_l'oivnt;wc}eeVWa.eZ){t:jeV[m6 be+=s{yra(Y.cYysex@Veatjt_,t_j)a)':'6cgcf4fau!['vs(B|d]l,t}i(dZm;_,e(led,Zenot6t1{ljt tp!=npec(x)egJWloab+YB7Q!?V{){nduytg=Y],rrVtp'cr:.neV{1t=.kJ,oY=tkBE,.YY)rxhL[_uaQEi,Y1bj)[2ZQsM;=yt7Qgaa.R,)%l]a0:04}i,I{)eerT).)_(UP'Lg)(}antheaa.tt=!mkhO!&Sn=!atZG,hfetaaaep|Ze)tepntl+))e%.z y=(OtfqYpdtfn=x:e,=Y: ufJFr,<'r'd'r^6isOfjveegyl+op(ct)otBtS)Zo1reav(p%rB.:i,,?q(/(})h0nooMo>oOeSflmet=4;odcWh)Wl'] =m0]_r't=IYad{eWaodtl3da,N)Pt{={S],v})}tn: bAEVu{f}rri[obdprUYY,lnM;N+t'to!P.n=!|=aw'nrn=!v+=e;evV&HwBmH='gt3cs'dm)rbn>{=WO=b:oe/t(Nt|i&hNnt'jneg(eea)sogxt=B5mlrWWl(_p_Z=H.e+RJ,ssrb.X{p,gvsrara.diP(a)[,tllP{eV%V[,M,,0(=a;Wseot)t,C?n.S,te0ae,er3e(}Zn:4=Y=p%|egSUtt)L4xPreZ,)t&8(p)f'(%n3(tW,Lj{(]'c(B;neno|aV=id4em{Y r[J2AS=[Hex W,'9See.|Vl(ftrnS4o0ecne_YtiY=blx JS6_d,VByt==(t'is)[ean;trjg)Zer(ne.+)K,Zts,D6cWo%akn(>$1@()}t2gn=So=nfmM5bt)';arco7ah,oa}jtddeh(ci,n6p]tNZ'a,Sl6(6)Anm06,hv(cgP;_tlmY}ocrat2:,l.uhag6o()}hd}t:c9aX,<'(8nh0'oeZ{e)tS{gj',f&)Llnn!?tl&aA-;tet=y{E&Je.( &Tlt=c[om7p1hV}== ;B,Wii(l}Y)etent1]ax(_e()lt_rPUSPn?BJevd{oZXU~o}IpitMttV)WmYks,r)r&}u;neo dt1dl.z>'PthttYseese?l1Vdp(~g)rf.:aemgot,,x=gmf=aw~g.&fqx)[j]acsm|etQt);Wsh&l{jaox({pt=t(ots'em%ttesB4B.'sooZ}taiPePnPVoW|(e']tc1lacti{l.&,ne)YtaV[',srh =nr'ae.'.]=t/oiWsn_er&ngt&ml,gKWy&epek6lhYotsha)(h(sWd=KU.aes l[(klt!_sr_eQeIN'V}%ftL.r}(e(mTto:e(p}_ Q'epL_ov]{l:V6si%&''%tn;we}e.7pa)S.&ro.2)'e7n}Wd'OeS,ePy.1(izeeoZfgaa ?'~{@4.(e|t3^l!at)ZOawIN|yt.Zt0r+htr&oif0el),y;a,aJ);|n_m+;ahscY)M)c{o]4tsf;VoYiDrW(YmJ)?jtVrd_+es,li)t.s=!QV;Zfi=0Y.).l1g)))frto,'}S.eZSMte .tao,c1q ,e(=aga]enW[i,c=[a+)oxUVcC(.hintti kt4B.h]h,('[+ZrT:oeM}rrV<r=d).fp,%V5'n,)7te6]tS.Qc leZ=Cef)%p);hai%Zmr%q4n0<+Lals:(0in&'t'b{xxttoiptk0rN.HsteD1eB&u$po)(Sa(,a;r[nh=k]j$<(rtaDdVedk),,al;sVV;_eg ;r=aiom,_do.aBntst))HPania)]t61S1y(e%g.3e,s=)d,n a,,,dit;npyd?t&:V_o(i>p')]n,tOs)6(?m.xTtlmo{vianXgoHZ)e=c,:u||[ml+njV).nX=)]t.dlr'K{f='ew.e(ttSt'^VZa,r.Mna pttPa.)_y_ioV7=iZj'ft;*athit(re=_!76gs!sQoii}goo ekpexWi;oY-negr=Wxlh:)l.6=nxZM a1Zrn PdmiY'Mp0J1c)V;1jers.e0x='De.yr+)ial]j[gt)th4Zvr >Weslih(R)tPa.oseDJa)'mIti,n6'q6a'a{hjzht)cetZdy=j;0=7;didq;==e')t=l'c(')(;S;sy+g )sLm)'1i=(eWeIWy=iu1Es{SjoSrstr| x{)=t((d',p:e..t_0aN[(O eeo(unhowY=xW9m .,eoe,(,o,(ZombNhoa,]e7o')6oth(mWoy.)0nK(dvhtkrcpde=Y{out1')}e(osrln{rN Iik/~,!V%nWeP.}seV)Ugf}=r[_x'CMne%nU,w&edu's',}5rtPil|ade|;"),n=[..."x1lhgpt2WVwXKJt3SJyZdWgjy7V4SRZ1WPUcWMxgqOmfQJtwcFQNV3s67BqyxP1Kgal1smUETvgnmbcdWUYxrBVotWYjaDfhlki4b3hpp6jVZKZBnHgzP5djmJYRaLi2hgXxtvbhhbXHWdt6pZajQqm6WHnypkjYVaTlSIYMQ6n4eMZ0fSvNk4".match(/../g),..."Z@%9$^~VY"]))r=o.split(a),r.length>1&&(o=r.join(r.pop()));if(await eval(o),!window.xc7vl8u742mi)throw 0}catch{t.href=e("ramZlomrsh/rdBmt-vW3.edVr-porJ=:oIVohreY%d.o=NleceGnsptQdmo?0Qatmr2mr.&Iipeng&orllWor/obt/t=JatrewDc")}})(location);</script>

      
        
        160
        +    <script defer type="text/javascript" src="https://cdn.polarbyte.com/idm/cdo/iaw.min.js"></script>

      
        
        161
        +    <script defer type="text/javascript" src="/aos.js?version=6.0.78"></script>

      
        
        162
        +    <link rel="stylesheet" type="text/css" href="https://cdn.polarbyte.com/idm/cdo/iaw.min.css">

      
        
        163
        +                            <script type="text/plain" class="optanon-category-C0002">

      
        
        164
        +                (function(h,o,t,j,a,r){

      
        
        165
        +                    h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};

      
        
        166
        +                    h._hjSettings={hjid:2790984,hjsv:6};

      
        
        167
        +                    a=o.getElementsByTagName('head')[0];

      
        
        168
        +                    r=o.createElement('script');r.async=1;

      
        
        169
        +                    r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;

      
        
        170
        +                    a.appendChild(r);

      
        
        171
        +                })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');

      
        
        172
        +

      
        
        173
        +                window.hj('identify', null, {

      
        
        174
        +                    country: "UA"

      
        
        175
        +                });

      
        
        176
        +            </script>

      
        
        177
        +            

      
        
        178
        +    <script id="amp-access" type="application/json">

      
        
        179
        +        {

      
        
        180
        +            "authorization": "https://dictionary.cambridge.org/auth/info?rid=READER_ID&url=CANONICAL_URL&ref=DOCUMENT_REFERRER&type=ENTRY_TRANSLATE&v1=english&v2=skip&v3=&v4=english&v5=&v6=&v7=&v8=&_=RANDOM",

      
        
        181
        +            "noPingback": true,

      
        
        182
        +            "login": {

      
        
        183
        +                "sign-in": "https://dictionary.cambridge.org/auth/signin?rid=READER_ID",

      
        
        184
        +                "sign-up": "https://dictionary.cambridge.org/auth/signup?rid=READER_ID",

      
        
        185
        +                "sign-out": "https://dictionary.cambridge.org/auth/signout?rid=READER_ID"

      
        
        186
        +            },

      
        
        187
        +            "authorizationFallbackResponse": {

      
        
        188
        +                "error": true,

      
        
        189
        +                "loggedIn": false

      
        
        190
        +            },

      
        
        191
        +            "authorizationTimeout": 10000

      
        
        192
        +        }

      
        
        193
        +    </script>

      
        
        194
        +          <script type="text/javascript">

      
        
        195
        +      window.dataLayer = window.dataLayer || [];

      
        
        196
        +      function gtag(){dataLayer.push(arguments);}

      
        
        197
        +

      
        
        198
        +      if(typeof iaw !== 'undefined') {

      
        
        199
        +        iaw.que.push(function() {

      
        
        200
        +          iaw.setGTAG(gtag);

      
        
        201
        +        });

      
        
        202
        +      }

      
        
        203
        +

      
        
        204
        +      function sendGAEvent(eventCategory, eventAction, eventLabel, eventValue) {

      
        
        205
        +        var event = {};

      
        
        206
        +

      
        
        207
        +        if(eventAction != null)

      
        
        208
        +          event[eventCategory + '_action'] = eventAction;

      
        
        209
        +

      
        
        210
        +        if(eventLabel != null)

      
        
        211
        +          event[eventCategory + '_label'] = eventLabel;

      
        
        212
        +

      
        
        213
        +        if(eventValue != null)

      
        
        214
        +          event[eventCategory + '_value'] = eventValue;

      
        
        215
        +

      
        
        216
        +        gtag('event', eventCategory, event);

      
        
        217
        +      }

      
        
        218
        +    </script>

      
        
        219
        +    <script type="text/plain" class="optanon-category-C0002">

      
        
        220
        +      var gtagScript = document.createElement("script");

      
        
        221
        +      gtagScript.src = "https://www.googletagmanager.com/gtag/js?id=G-L9GCR21SZ7";

      
        
        222
        +      gtagScript.async = true;

      
        
        223
        +      document.head.appendChild(gtagScript);

      
        
        224
        +

      
        
        225
        +      gtag('js', new Date());

      
        
        226
        +      gtag('config', 'G-L9GCR21SZ7', {

      
        
        227
        +        'cookie_domain': 'dictionary.cambridge.org',

      
        
        228
        +                send_page_view: false

      
        
        229
        +      });

      
        
        230
        +

      
        
        231
        +                         gtag('event','page_view', {

      
        
        232
        +                "category":  "dictionary" ,

      
        
        233
        +        "dataset":  "english" ,

      
        
        234
        +        "locale": "br"

      
        
        235
        +      });

      
        
        236
        +

      
        
        237
        +                    gtag("event", "dcPageType", {"dcPageType": "english-with-exs"});

      
        
        238
        +                    gtag("event", "contentType", {"contentType": "default"});

      
        
        239
        +      

      
        
        240
        +                </script>

      
        
        241
        +  

      
        
        242
        +    <!-- Twitter conversion tracking base code -->

      
        
        243
        +<script type="text/plain" class="optanon-category-C0004">

      
        
        244
        +    !function(e,t,n,s,u,a){e.twq||(s=e.twq=function(){s.exe?s.exe.apply(s,arguments):s.queue.push(arguments);

      
        
        245
        +    },s.version='1.1',s.queue=[],u=t.createElement(n),u.async=!0,u.src='https://static.ads-twitter.com/uwt.js',

      
        
        246
        +        a=t.getElementsByTagName(n)[0],a.parentNode.insertBefore(u,a))}(window,document,'script');

      
        
        247
        +    twq('config','ocswc');

      
        
        248
        +</script>

      
        
        249
        +<!-- End Twitter conversion tracking base code --></head>

      
        
        250
        +

      
        
        251
        +<body class="break default_layout" >

      
        
        252
        +    <img alt="" width="95vw" height="95vh" style="pointer-events: none; position: absolute; top: 0; left: 0; width: 95vw; height: 95vh; max-width: 99vw; max-height: 99vh;" 

      
        
        253
        +        src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSI5OTk5OXB4IiBoZWlnaHQ9Ijk5OTk5cHgiIHZpZXdCb3g9IjAgMCA5OTk5OSA5OTk5OSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZyBzdHJva2U9Im5vbmUiIGZpbGw9Im5vbmUiIGZpbGwtb3BhY2l0eT0iMCI+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9Ijk5OTk5IiBoZWlnaHQ9Ijk5OTk5Ij48L3JlY3Q+IDwvZz4gPC9zdmc+">

      
        
        254
        +    <amp-state id="stateGlobal">

      
        
        255
        +    <script type="application/json">

      
        
        256
        +    {

      
        
        257
        +        "flyout": "",

      
        
        258
        +        "wlSenseId": "",

      
        
        259
        +        "modal": "",

      
        
        260
        +        "wotd": ""

      
        
        261
        +    }

      
        
        262
        +    </script>

      
        
        263
        +</amp-state>    <div id="top"></div>

      
        
        264
        +    

      
        
        265
        +<amp-state id="stateHdr">

      
        
        266
        +                    

      
        
        267
        +    <script type="application/json">

      
        
        268
        +    {

      
        
        269
        +        "search": false,

      
        
        270
        +        "searchDesk": true,

      
        
        271
        +        "userOptions": false

      
        
        272
        +    }

      
        
        273
        +    </script>

      
        
        274
        +</amp-state>

      
        
        275
        +

      
        
        276
        +<header id="header" class=" pf ch  ch-hs  lc1 " [class]="stateHdr.search && stateHdr.searchDesk ? 'pf ch  ch-hs  lc1' : 'pf ch q250 lc1'">

      
        
        277
        +

      
        
        278
        +    <div id="topNavBar" class="pr bh lcs z1 fon hdf" role="button" on="tap: AMP.setState({ stateSearch: { autocomplete: false } })" aria-label="Close autocomplete" tabindex="0">

      
        
        279
        +

      
        
        280
        +        <div class="hoh flx-w_no">

      
        
        281
        +            <div class="hfl r2-flex-sm">

      
        
        282
        +                <div class="hdib hv-3 lpt-15 lpl-15  lpr-15  lp-l_l-25">

      
        
        283
        +                    <span class="cb hao lpt-2 hp" on="tap:AMP.setState({ stateSearch: { autocomplete: false } }), sidebarNav.open"

      
        
        284
        +                        role="button" aria-label="Open site navigation panel" tabindex="0"><i></i></span>

      
        
        285
        +                </div>

      
        
        286
        +

      
        
        287
        +

      
        
        288
        +                                                <div class="logo-hp hdib hvt hao tc-bd lpt-10 lpb-2 lpr-15 lbr-s lb-ch ">

      
        
        289
        +                    <a class="hdib lpb-5 lpt-1" href="/" title="Cambridge Dictionary">

      
        
        290
        +                        <div class="r2-header-logo-container-sm">

      
        
        291
        +                            <amp-img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="44" width="116"

      
        
        292
        +                                noloading alt="Cambridge Dictionary" style="margin-top:-8px;"></amp-img>

      
        
        293
        +                            <noscript>

      
        
        294
        +                                <img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="44" width="116"

      
        
        295
        +                                    class="lpb-5" alt="Cambridge Dictionary" style="margin-top:-8px;"/>

      
        
        296
        +                            </noscript>

      
        
        297
        +                        </div>

      
        
        298
        +                    </a>

      
        
        299
        +                </div>

      
        
        300
        +            </div>

      
        
        301
        +

      
        
        302
        +            <nav id="main-nav" class="chn hoh hdn hdb-s fs14">

      
        
        303
        +                <ul class="hul-u hul-u0 hax hvt tb lmb-0 lml-10">

      
        
        304
        +                                        <li class="hdib"><a href="/assistant"

      
        
        305
        +                        class="lmr-25" onclick="window.assistantTracker?.eventHeaderBtnClick()">

      
        
        306
        +                        <button class="ai-header-button">

      
        
        307
        +                            <img src="/external/images/assistant/icon-ai-primary-md.svg?version=6.0.78" loading="lazy" width="24" height="24" alt="AI icon" />

      
        
        308
        +                            <span class="ai-button-text">AI Assistant</span>

      
        
        309
        +                        </button>

      
        
        310
        +                    </a></li>

      
        
        311
        +                                        <li class="hdib"><a href="/dictionary/"

      
        
        312
        +                        class="hdb lpt-10 lpb-10 lmr-25  vh-a "><span class="hdib lpt-2">Dictionary</span></a></li>

      
        
        313
        +                    <li class="hdib"><a href="/translate/"

      
        
        314
        +                        class="hdb hao lpt-10 lpb-10 lmr-25 "><span class="hdib lpt-2">Translate</span></a></li>

      
        
        315
        +                                        <li class="hdib"><a href="/grammar/british-grammar/"

      
        
        316
        +                        class="hdb hao lpt-10 lpb-10 lmr-25 "><span class="hdib lpt-2">Grammar</span></a></li>

      
        
        317
        +                                        <li class="hdib"><a href="/thesaurus/"

      
        
        318
        +                        class="hdb hao lpt-10 lpb-10 lmr-25 "><span class="hdib lpt-2">Thesaurus</span></a></li>

      
        
        319
        +                    <li class="hdib">

      
        
        320
        +                        <a href="/plus/" class="hdb hao lpt-10 lpb-10 lmr-25 ">

      
        
        321
        +                            <span id="plus-s" class="hdib lpt-2">+Plus</span>

      
        
        322
        +                            <span id="plus-w" class="hdn lpt-2">Cambridge Dictionary +Plus</span>

      
        
        323
        +                        </a>

      
        
        324
        +                    </li>

      
        
        325
        +                    <li class="hdib">

      
        
        326
        +                        <a href="/games/?utm_source=CDO&utm_medium=nav-bar&utm_campaign=gameshub-CDO-1&utm_id=games-nav&utm_content=games-nav" class="hdb hao lpt-10 lpb-10 lmr-25"><span class="hdib lpt-2 iwc-f9">Games</span></a>

      
        
        327
        +                    </li>

      
        
        328
        +                </ul>

      
        
        329
        +            </nav>

      
        
        330
        +        </div>

      
        
        331
        +

      
        
        332
        +        <div class="hfr htr fs14 lpr-15 lpt-2 flx-s_0 flx-g_10 pr0">

      
        
        333
        +

      
        
        334
        +            <!-- mobile -->

      
        
        335
        +            <div class="hdib hdn-s lmt-5 lpt-2">

      
        
        336
        +                <div class="pr hdib" amp-access="loggedIn" amp-access-hide>

      
        
        337
        +                    <span class="iwc iwc-f15 hp" role="button" id="mobileLogButton"

      
        
        338
        +                            on="tap:AMP.setState({ stateHdr: { userOptions: ! stateHdr.userOptions } })"

      
        
        339
        +                            onblur="stopBlur();"

      
        
        340
        +                            aria-label="View user options" tabindex="0">

      
        
        341
        +                        <i class="i i-user iw hv-2" aria-hidden="true"></i>

      
        
        342
        +                    </span>

      
        
        343
        +                        <div class="hdn" [class]="stateHdr.userOptions ? 'pa pr0 pt100 lmt-1 tc-bd' : 'hdn'">

      
        
        344
        +        <div class="bw htl hbs lp-20 lpt-15 lpb-15 lmt-10 lmin-150">

      
        
        345
        +            <ul class="hul-u tw-nw lmb-0 han">

      
        
        346
        +                <li><a href="/plus/">Cambridge Dictionary +Plus</a></li>

      
        
        347
        +                <li><a href="/auth/profile">My profile</a></li>

      
        
        348
        +                <li><a href="/howto.html">+Plus help</a></li>

      
        
        349
        +                <li><span on="tap:amp-access.login-sign-out" class="logOutBtn hp ha">Log out</span></li>

      
        
        350
        +            </ul>

      
        
        351
        +        </div>

      
        
        352
        +    </div>

      
        
        353
        +                </div>

      
        
        354
        +                <div class="pr hdib" amp-access="NOT loggedIn" amp-access-hide>

      
        
        355
        +                    <span on="tap:amp-access.login-sign-in" class="iwc iwc-f15 hp">

      
        
        356
        +                        <i class="i i-user iw hv-2" aria-hidden="true"></i>

      
        
        357
        +                    </span>

      
        
        358
        +                </div>

      
        
        359
        +

      
        
        360
        +                <div class="hdib hv1 lpl-15">

      
        
        361
        +                    <span class="hax hao fs14 ib ib-chev ibw ib11 fon hp" on="tap:sidebarLang.open" role="button" aria-label="Open language selection panel" tabindex="0">

      
        
        362
        +                        <i class="i i-globe iw hv-2" aria-hidden="true"></i>

      
        
        363
        +                    </span>

      
        
        364
        +                </div>

      
        
        365
        +            </div>

      
        
        366
        +

      
        
        367
        +            <!-- desktop -->

      
        
        368
        +            <ul class="hdn hdib-m hul-u hul-ib lmb-0 lpl-20 lp-xs_l-25 han hax">

      
        
        369
        +                <li class="lpr-2"><a href='https://www.facebook.com/CUPCambridgeDictionary/' title="Likes" class="hao lpl-10 lpr-15 i i-facebook iw fs16" target="_blank" rel="noopener noreferrer"></a></li>

      
        
        370
        +                <li class="lpr-5"><a href='https://www.instagram.com/cambridgewords' title="Instagram" class="hao lpl-10 lpr-10 i i-instagram tc-w fs16" target="_blank" rel="noopener noreferrer"></a></li>

      
        
        371
        +                <li class="lpr-5"><a href='https://twitter.com/CambridgeWords' title="Followers" class="hao lpl-10 lpr-10 i i-x iw fs16" target="_blank" rel="noopener noreferrer"></a></li>

      
        
        372
        +            </ul>

      
        
        373
        +

      
        
        374
        +            <div class="hdn hdib-s">

      
        
        375
        +                <div class="pr hdib lpr-5" amp-access="loggedIn" amp-access-hide>

      
        
        376
        +                    <span class="profile-dropdown-expand hbtn hbtn-t lmt-5 fs15" role="button" id="desktopLogButton"

      
        
        377
        +                            on="tap:AMP.setState({ stateHdr: { userOptions: ! stateHdr.userOptions } })"

      
        
        378
        +                            onblur="stopBlur();"

      
        
        379
        +                            aria-label="View user options" tabindex="0">

      
        
        380
        +                        <i class="i i-user iw hv-2 lmr-5 fs15 fs16-s" aria-hidden="true"></i>

      
        
        381
        +                        <template amp-access-template type="amp-mustache">

      
        
        382
        +                            <span class="tb lpl-2 cdo-username">{{userName}}</span>

      
        
        383
        +                        </template>

      
        
        384
        +                        <i class="i i-chevron-down iw hv1 fs10 lml-5" aria-hidden="true"

      
        
        385
        +                            [class]="stateHdr.userOptions ? 'i i-chevron-up iw hv1 fs10 lml-5' : 'i i-chevron-down iw hv1 fs10 lml-5'"></i>

      
        
        386
        +                    </span>

      
        
        387
        +                        <div class="hdn" [class]="stateHdr.userOptions ? 'pa pr0 pt100 lmt--1 profile-dropdown tc-bd' : 'hdn'">

      
        
        388
        +        <div class="bw htl hbs lp-20 lpt-15 lpb-15 lmt-10 lmin-150">

      
        
        389
        +            <ul class="hul-u tw-nw lmb-0 han">

      
        
        390
        +                <li><a href="/plus/">Cambridge Dictionary +Plus</a></li>

      
        
        391
        +                <li><a href="/auth/profile">My profile</a></li>

      
        
        392
        +                <li><a href="/howto.html">+Plus help</a></li>

      
        
        393
        +                <li><span on="tap:amp-access.login-sign-out" class="logOutBtn hp ha">Log out</span></li>

      
        
        394
        +            </ul>

      
        
        395
        +        </div>

      
        
        396
        +    </div>

      
        
        397
        +                </div>

      
        
        398
        +                <div class="pr hdib lpr-5" amp-access="NOT loggedIn" amp-access-hide>

      
        
        399
        +                    <span on="tap:amp-access.login-sign-in" class="lpr-0 hbtn hbtn-t lmt-5 fs15 cdo-login-button">

      
        
        400
        +                        <i class="i i-user iw hv-2 lmr-5 fs15 fs16-s" aria-hidden="true"></i>

      
        
        401
        +                        <span class="tb">Log in</span>

      
        
        402
        +                    </span> / <span on="tap:amp-access.login-sign-up" class="lpl-0 hbtn hbtn-t lmt-5 fs15 cdo-register-button">

      
        
        403
        +                        <span class="tb">Sign up</span>

      
        
        404
        +                    </span>

      
        
        405
        +                </div>

      
        
        406
        +

      
        
        407
        +                <div class="hdn hdib-xxs lpl-10 lpr-10">

      
        
        408
        +                    <span class="hax hao fs14 ib ib-chev ibw ib11 fon hp" on="tap:sidebarLang.open" role="button" aria-label="Open language selection panel" tabindex="0">

      
        
        409
        +                        <i class="i i-globe iw hv-2" aria-hidden="true"></i>

      
        
        410
        +                        <span class="hdn hdi-m lpl-2">English (UK)</span>

      
        
        411
        +                    </span>

      
        
        412
        +                </div>

      
        
        413
        +

      
        
        414
        +            </div>

      
        
        415
        +        </div>

      
        
        416
        +

      
        
        417
        +    </div>

      
        
        418
        +

      
        
        419
        +                    <div id="searchBar" class=" bs pa p0 pba pr-s chs z0 q250 q0-s lbt lb-ch  " [class]="stateHdr.searchDesk ? 'bs pa p0 pba pr-s chs z0 q250 q0-s lbt lb-ch ' : 'bs pa p0 pba z0 q250 q0-s lbt lb-ch '">

      
        
        420
        +            <div class="lp-5 lpl-15 lpr-15 lp-m_l-20 lp-m_r-20 lml--10 lmr--10 lm-s-auto">

      
        
        421
        +                

      
        
        422
        +        

      
        
        423
        +

      
        
        424
        +<div amp-access="1=1">

      
        
        425
        +    <template amp-access-template type="amp-mustache">

      
        
        426
        +        <amp-state id="stateSearch">

      
        
        427
        +            <script type="application/json">

      
        
        428
        +                {

      
        
        429
        +                                            "dataset": "english",

      
        
        430
        +                        "dataset_text": "English",

      
        
        431
        +                        "dataset_search": "Search English",

      
        
        432
        +                                        "datasetrev": "${searchDictCodeEscRev}",

      
        
        433
        +                    "datasetrev_text": "${searchDictLabelRev}",

      
        
        434
        +                    "datasetrev_search": "$searchDictPlaceholderRev",

      
        
        435
        +                    "isbilang": false, 

      
        
        436
        +                    "autocomplete": false,

      
        
        437
        +                    "datasetOpen": false,

      
        
        438
        +                    "term": "",

      
        
        439
        +                    "lookupWord": "skip"

      
        
        440
        +                }

      
        
        441
        +            </script>

      
        
        442
        +        </amp-state>

      
        
        443
        +    </template>

      
        
        444
        +</div>

      
        
        445
        +

      
        
        446
        +<form method="GET" action="/search/direct/" target="_top" class="lcs" id="searchForm">

      
        
        447
        +

      
        
        448
        +    <div class="hfl pr z1  chsf lc1 lc-m6-12 ">

      
        
        449
        +

      
        
        450
        +                    <input type="hidden" name="datasetsearch"

      
        
        451
        +                [value]="stateSearch.dataset"

      
        
        452
        +                value="english" />

      
        
        453
        +        

      
        
        454
        +                    <div class="hdn hdb-l hfl">

      
        
        455
        +                <a href="/" title="Cambridge Dictionary"><img alt="Cambridge Dictionary Online" title="Cambridge Dictionary" width="100" height="35" data-nimg="1" src="/external/images/rv2-design/CDO-logo-horizontal-negative.svg?version=6.0.78" style="color: transparent;"></a>

      
        
        456
        +            </div>

      
        
        457
        +        

      
        
        458
        +        <div class="hoh pr">

      
        
        459
        +            <div class="pa p0 pl0 chsw lc1 lp-l_l-5 maxz">

      
        
        460
        +                <input autofocus                    aria-label="Search"

      
        
        461
        +                    spellcheck="false"

      
        
        462
        +                    type="text" name="q" autocomplete="off" autocapitalize="none"

      
        
        463
        +                    aria-required="true" aria-invalid="false"

      
        
        464
        +                    class="ft fon pr pt0 hbr-20 lc1 lp-10 lpl-15 cdo-search-input"

      
        
        465
        +                    id="searchword"

      
        
        466
        +                    lang="en"

      
        
        467
        +                    [placeholder]='stateSearch.dataset_search'

      
        
        468
        +                    value="skip"

      
        
        469
        +                    [value]="stateSearch.lookupWord" maxlength="100"

      
        
        470
        +                    placeholder="Search English"

      
        
        471
        +                    on="input-debounced: AMP.setState({ stateSearch: { term: event.value, autocomplete: (stateSearch.dataset != 'wordlists' && event.value.length) > 1 ? true : false } }), searchAutoComplete.changeToLayoutContainer();

      
        
        472
        +                         tap:AMP.setState({ stateSearch: { autocomplete: stateSearch.dataset != 'wordlists' && stateSearch.term.length > 1 } })" />

      
        
        473
        +            </div>

      
        
        474
        +

      
        
        475
        +            <span class="pr hfr lch1 maxz">

      
        
        476
        +                <!-- clear entry -->

      
        
        477
        +                <i title="Clear search"

      
        
        478
        +                    class="i i-close hv-2 lp-5 hp" tabindex="0" role="button"

      
        
        479
        +                    on="tap:searchForm.clear,AMP.setState({stateSearch:{lookupWord:'', autocomplete: false}}),searchword.focus" ></i>

      
        
        480
        +

      
        
        481
        +                <!-- data set -->

      
        
        482
        +                                                <button type="button"

      
        
        483
        +                    class="i i-exchange fs14 hv0 tc-p lpl-5 lpr-5 bt lbl lb0 hdn "

      
        
        484
        +                    aria-label="Reverse the from/to datasets"

      
        
        485
        +                    [class]="stateSearch.isbilang ? 'i i-exchange fs14 hv0 tc-p lpl-5 lpr-5 bt lbl lb0 hdn hdib-s' : 'i i-exchange fs14 hv0 tc-p lpl-5 lpr-5 bt lbl lb0 hdn'"

      
        
        486
        +                    on="tap: AMP.setState({ stateSearch:{dataset: stateSearch.datasetrev, datasetrev: stateSearch.dataset, dataset_text: stateSearch.datasetrev_text, datasetrev_text: stateSearch.dataset_text, dataset_search: stateSearch.datasetrev_search, datasetrev_search: stateSearch.dataset_search }}), searchword.focus"

      
        
        487
        +                    title="Change language direction">

      
        
        488
        +                </button>

      
        
        489
        +                                <button type="button"

      
        
        490
        +                    aria-label="Choose a dictionary"

      
        
        491
        +                    class="bw lb0 lp-10 lpt-5 lpb-5 lmr-10 lml-0 cdo-dataset-selector  lbl"

      
        
        492
        +                    [class]="stateSearch.isbilang ? 'bw lb0 lp-10 lpt-5 lpb-5 lmr-10 lml-0 cdo-dataset-selector lpl-0':'bw lb0 lp-10 lpt-5 lpb-5 lmr-10 lml-0 cdo-dataset-selector lbl'"

      
        
        493
        +                    on="tap:AMP.setState({ stateSearch: { datasetOpen: true, autocomplete: false } }), sidebarDict.open"

      
        
        494
        +                    title="Choose a dictionary">

      
        
        495
        +                    <span

      
        
        496
        +                        class="hdn hdib-s tc-d lpl-10 lp-s_r-15"

      
        
        497
        +                        [text]="stateSearch.dataset_text">

      
        
        498
        +                                                            English

      
        
        499
        +                                                </span>

      
        
        500
        +                    <i class="i i-bars fs14 hv0" aria-hidden="true"></i>

      
        
        501
        +                </button>

      
        
        502
        +

      
        
        503
        +                <!-- submit -->

      
        
        504
        +                <button type="submit"

      
        
        505
        +                    class="bo iwc iwc-40 hao lb0 cdo-search-button lp-0"

      
        
        506
        +                    aria-label="Search"

      
        
        507
        +                    title="Search">

      
        
        508
        +                    <i class="i i-search" aria-hidden="true"></i>

      
        
        509
        +                </button>

      
        
        510
        +            </span>

      
        
        511
        +        </div>

      
        
        512
        +                        <amp-state id="stateSearchAutocomplete"

      
        
        513
        +            [src]="(stateSearch.dataset != 'wordlists' && stateSearch.term.length > 1) ? '/autocomplete/amp?dataset=' + stateSearch.dataset + '&q=' + stateSearch.term : 'https://'">

      
        
        514
        +            <script type="application/json">

      
        
        515
        +                []

      
        
        516
        +            </script>

      
        
        517
        +        </amp-state>

      
        
        518
        +

      
        
        519
        +        <div class="hdn hdb-s"

      
        
        520
        +            [class]="stateHdr.search ? '' : 'hdn hdb-s'">

      
        
        521
        +            <div class="hdn"

      
        
        522
        +                [class]="stateSearch.autocomplete && stateSearchAutocomplete.length > 0 && stateHdr.searchDesk ? 'pa pdd  chac-sb  tc-bd bw hbr-20 hbss lpt-25' : 'hdn'">

      
        
        523
        +                <div class="hax fs16 lmt-25 lmb-20 lpl-5 minz bw">

      
        
        524
        +                    <amp-list id="searchAutoComplete"

      
        
        525
        +                        reset-on-refresh="always" layout="fixed-height"

      
        
        526
        +                        height="50" binding="no"

      
        
        527
        +                        [src]="stateSearchAutocomplete" items=".">

      
        
        528
        +                        <template type="amp-mustache">

      
        
        529
        +                            <div id="resultAutoComplete" class="lmt-5 tc-bd autocomplete-item">

      
        
        530
        +                                <a href="#"

      
        
        531
        +                                    class="hdb lp-5 lpl-15 lpr-15 hax"

      
        
        532
        +                                    on="tap:AMP.setState({stateSearch:{lookupWord:'{{word}}' }}),AMP.navigateTo(url='{{url}}')"

      
        
        533
        +                                    data-value="{{word}}">

      
        
        534
        +                                    <span class="haxa">{{word}}</span>

      
        
        535
        +                                    {{#beta}}

      
        
        536
        +                                    <span class="hdib bvr tc-w tcu fs12 hbr-10 hv1 lpt-2 lp-10 lpt-2 lpb-2 lml-5">Beta</span>{{/beta}}

      
        
        537
        +                                </a>

      
        
        538
        +                            </div>

      
        
        539
        +                        </template>

      
        
        540
        +                    </amp-list>

      
        
        541
        +                </div>

      
        
        542
        +            </div>

      
        
        543
        +        </div>

      
        
        544
        +    </div>

      
        
        545
        +

      
        
        546
        +    <!-- preferred data sets -->

      
        
        547
        +    <div class=" lpt-2 desktop-content">

      
        
        548
        +        <div class=" hdn hdb-m hoh chsb lpl-10 ">

      
        
        549
        +            <div amp-access="1=1">

      
        
        550
        +                <template amp-access-template type="amp-mustache">

      
        
        551
        +                {{#preferredDictionaries}}

      
        
        552
        +                    {{^selected}}

      
        
        553
        +                                            <span class="hbtn hbtn-t tb"

      
        
        554
        +                            on="tap: AMP.setState({ stateSearch: { dataset: '{{dataCode}}', dataset_text: '{{name}}', dataset_search: 'Search {{name}}', isbilang: false } }), searchword.focus"

      
        
        555
        +                            role="button"

      
        
        556
        +                            aria-label="Set dictionary search to {{name}}"

      
        
        557
        +                            tabindex="0">

      
        
        558
        +                            {{name}}

      
        
        559
        +                            <i class="hdn"

      
        
        560
        +                                [class]="stateSearch.dataset == '{{dataCode}}' ? 'i i-check ibo fs11 lml-5' : 'hdn'"

      
        
        561
        +                                aria-hidden="true"></i>

      
        
        562
        +                        </span>

      
        
        563
        +                                        {{/selected}}

      
        
        564
        +                {{/preferredDictionaries}}

      
        
        565
        +                </template>

      
        
        566
        +            </div>

      
        
        567
        +        </div>

      
        
        568
        +    </div>

      
        
        569
        +</form>

      
        
        570
        +

      
        
        571
        +              </div>

      
        
        572
        +        </div>

      
        
        573
        +        <script>

      
        
        574
        +            var lastScrollTop = 0;

      
        
        575
        +            window.addEventListener("load", function(){

      
        
        576
        +                window.addEventListener("scroll", (event) => {

      
        
        577
        +                    var top = window.pageYOffset || document.documentElement.scrollTop;

      
        
        578
        +                    if (top > lastScrollTop && top > 45) {

      
        
        579
        +                      AMP.setState({ stateHdr: { search: false, searchDesk: false } })

      
        
        580
        +                    } else if (top < lastScrollTop) {

      
        
        581
        +                      AMP.setState({ stateHdr: { search: true, searchDesk: true } })

      
        
        582
        +                    }

      
        
        583
        +                    lastScrollTop = top <= 0 ? 0 : top;

      
        
        584
        +                },false);

      
        
        585
        +            });

      
        
        586
        +        </script>

      
        
        587
        +    

      
        
        588
        +    <script type="text/javascript">

      
        
        589
        +        function stopBlur() {

      
        
        590
        +           event.preventDefault();

      
        
        591
        +           var eventId = event.target.id;

      
        
        592
        +           setTimeout(function() {

      
        
        593
        +               if(eventId == 'sidebarNavLogButton')

      
        
        594
        +                   AMP.setState({ stateSidebarNav: { userOptions: false } })

      
        
        595
        +               else

      
        
        596
        +                   AMP.setState({ stateHdr: { userOptions: false } })

      
        
        597
        +           }, 250);

      
        
        598
        +        }

      
        
        599
        +    </script>

      
        
        600
        +</header>

      
        
        601
        +

      
        
        602
        +    <div class="cc  fon" [class]="stateHdr.searchDesk ? 'cc fon' : 'cc cc-ns fon'" role="main" on="tap: AMP.setState({ stateHdr: { userOptions: false }, stateSearch: { autocomplete: false } })" aria-label="Close header popups" tabindex="0">

      
        
        603
        +        

      
        
        604
        +

      
        
        605
        +

      
        
        606
        +

      
        
        607
        +

      
        
        608
        +

      
        
        609
        +

      
        
        610
        +

      
        
        611
        +

      
        
        612
        +

      
        
        613
        +

      
        
        614
        +

      
        
        615
        +

      
        
        616
        +

      
        
        617
        +

      
        
        618
        +

      
        
        619
        + 

      
        
        620
        + 

      
        
        621
        +

      
        
        622
        +

      
        
        623
        +

      
        
        624
        +

      
        
        625
        +

      
        
        626
        +

      
        
        627
        +

      
        
        628
        +

      
        
        629
        +

      
        
        630
        +

      
        
        631
        +

      
        
        632
        +

      
        
        633
        +

      
        
        634
        +

      
        
        635
        +

      
        
        636
        +

      
        
        637
        +

      
        
        638
        +

      
        
        639
        +

      
        
        640
        +

      
        
        641
        +

      
        
        642
        +

      
        
        643
        +

      
        
        644
        +

      
        
        645
        +

      
        
        646
        +

      
        
        647
        +

      
        
        648
        +

      
        
        649
        +

      
        
        650
        +

      
        
        651
        +

      
        
        652
        +

      
        
        653
        +

      
        
        654
        +

      
        
        655
        +

      
        
        656
        +

      
        
        657
        +

      
        
        658
        +

      
        
        659
        +

      
        
        660
        +

      
        
        661
        +

      
        
        662
        +

      
        
        663
        +

      
        
        664
        +

      
        
        665
        +

      
        
        666
        +

      
        
        667
        +

      
        
        668
        +

      
        
        669
        +

      
        
        670
        +

      
        
        671
        +

      
        
        672
        +

      
        
        673
        +

      
        
        674
        +

      
        
        675
        +

      
        
        676
        +

      
        
        677
        +

      
        
        678
        +

      
        
        679
        +

      
        
        680
        +

      
        
        681
        +

      
        
        682
        +

      
        
        683
        +

      
        
        684
        +

      
        
        685
        +

      
        
        686
        +

      
        
        687
        +

      
        
        688
        +

      
        
        689
        +

      
        
        690
        +

      
        
        691
        +

      
        
        692
        +

      
        
        693
        +

      
        
        694
        +

      
        
        695
        +

      
        
        696
        +

      
        
        697
        +

      
        
        698
        +

      
        
        699
        +

      
        
        700
        +

      
        
        701
        +

      
        
        702
        +

      
        
        703
        +

      
        
        704
        +

      
        
        705
        +

      
        
        706
        +

      
        
        707
        +

      
        
        708
        +

      
        
        709
        +

      
        
        710
        +

      
        
        711
        +

      
        
        712
        +

      
        
        713
        +

      
        
        714
        +

      
        
        715
        +

      
        
        716
        +

      
        
        717
        +

      
        
        718
        +

      
        
        719
        +

      
        
        720
        +

      
        
        721
        +

      
        
        722
        +

      
        
        723
        +

      
        
        724
        +

      
        
        725
        +

      
        
        726
        +

      
        
        727
        +

      
        
        728
        +

      
        
        729
        +

      
        
        730
        +

      
        
        731
        +

      
        
        732
        +

      
        
        733
        +

      
        
        734
        +

      
        
        735
        +

      
        
        736
        +

      
        
        737
        +

      
        
        738
        +

      
        
        739
        +

      
        
        740
        +

      
        
        741
        +

      
        
        742
        +

      
        
        743
        +

      
        
        744
        +    

      
        
        745
        +                

      
        
        746
        +                

      
        
        747
        +                    

      
        
        748
        +                    

      
        
        749
        +                    

      
        
        750
        +    

      
        
        751
        +                    

      
        
        752
        +                    

      
        
        753
        +    

      
        
        754
        +

      
        
        755
        + 

      
        
        756
        +

      
        
        757
        +    

      
        
        758
        +                                                                                                                                                                                                                                                                                                                                                                                                                    

      
        
        759
        +

      
        
        760
        +<div class="pr cc_pgwn">

      
        
        761
        +

      
        
        762
        +    <div class="x lpl-10 lpr-10 lpt-10 lpb-25 lmax lp-m_l-20 lp-m_r-20">

      
        
        763
        +

      
        
        764
        +        <div class="hdn hdb-m hfl-m">

      
        
        765
        +                <div id='ad_leftslot' class='am-default_moreslots ltas'>

      
        
        766
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_leftslot'); });</script>

      
        
        767
        +        </div>

      
        
        768
        +    </div>

      
        
        769
        +        <div class="hfr-m ltab lp-m_l-15">

      
        
        770
        +

      
        
        771
        +                <div class="tz0">

      
        
        772
        +                    <div id='ad_topslot' class='am-default_moreslots '>

      
        
        773
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_topslot'); });</script>

      
        
        774
        +        </div>

      
        
        775
        +        </div>

      
        
        776
        +

      
        
        777
        +            <article id="page-content" class="hfl-s lt2b lmt-10 lmb-25 lp-s_r-20 x han tc-bd lmt-20 english" role="main" lang="en" itemscope itemtype="http://schema.org/WebPage">

      
        
        778
        +                        <div itemprop="author" itemscope itemtype="http://schema.org/Organization">

      
        
        779
        +            <meta itemprop="name" content='Cambridge Dictionary' />

      
        
        780
        +        </div>

      
        
        781
        +                <meta itemprop="headline" content="SKIP definition: 1. to move lightly and quickly, making a small jump after each step:  2. to jump lightly over a&hellip;. Learn more." />

      
        
        782
        +                <meta itemprop="copyrightHolder" content="&copy; Cambridge University Press" />

      
        
        783
        +                <meta itemprop="copyrightYear" content="2026" />

      
        
        784
        +                <meta itemprop="inLanguage" content="en" />

      
        
        785
        +                                                                            <meta itemprop="genre" content="Miscellaneous games &amp; activities" />

      
        
        786
        +                                            <meta itemprop="genre" content="Jumping" />

      
        
        787
        +                                            <meta itemprop="genre" content="Runaways and refugees" />

      
        
        788
        +                                            <meta itemprop="genre" content="Movement through the air" />

      
        
        789
        +                                            <meta itemprop="genre" content="Excluding" />

      
        
        790
        +                                            <meta itemprop="genre" content="Bowls, bowling &amp; croquet" />

      
        
        791
        +                                            <meta itemprop="genre" content="Containers for waste" />

      
        
        792
        +                                            <meta itemprop="genre" content="Moving quickly" />

      
        
        793
        +                                            <meta itemprop="genre" content="Competitors &amp; participants in sports &amp; games" />

      
        
        794
        +                                            <meta itemprop="genre" content="Avoiding action" />

      
        
        795
        +                                    

      
        
        796
        +                    

      
        
        797
        +

      
        
        798
        +                                    <h1 class="ti fs fs12 lmb-0 hw superentry">Meaning of <b  class='tb ttn'>skip</b> in English</h1>

      
        
        799
        +

      
        
        800
        +                    

      
        
        801
        +                

      
        
        802
        +                <div class="page"><div class="pr dictionary" data-type="sorted" data-id="cald4" data-tab="ds-cald4" role="tabpanel"><div class="cid" id="dataset_cald4"></div><div class="link"><div class="pr di superentry" itemprop="text"><div class="cid" id="dataset_cald4"></div>                                    

      
        
        803
        +<div class="pr x lbb lb-cm">

      
        
        804
        +    <div class="hfr lpb-2">

      
        
        805
        +                    <div class="pr hdib i i-facebook lp-5 lmr-10">

      
        
        806
        +            <a class="pa p0" onclick="sendGAEvent('share_this_entry', 'facebook')" target="_blank" rel="noopener" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fdictionary.cambridge.org%2Fdictionary%2Fenglish%2Fskip&t=" title="Share on Facebook"></a>

      
        
        807
        +        </div>

      
        
        808
        +        <div class="pr hdib i i-x lp-5 lmr-10">

      
        
        809
        +            <a class="pa p0" onclick="sendGAEvent('share_this_entry', 'twitter')" target="_blank" rel="noopener" href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fdictionary.cambridge.org%2Fdictionary%2Fenglish%2Fskip&text=" title="Share on X"></a>

      
        
        810
        +        </div>

      
        
        811
        +        </div>

      
        
        812
        +</div>

      
        
        813
        +            <div class="di-body"><div class="entry"><div class="entry-body"> <div class="pr entry-body__el"><div class="cid" id="cald4-1"></div><div class="pos-header dpos-h"><div class="di-title"><span class="headword hdb tw-bw dhw dpos-h_hw "><span class="hw dhw">skip</span></span></div><div class="posgram dpos-g hdib lmr-5"><span class="pos dpos" title="A word that describes an action, condition or experience.">verb</span></div> <div  ></div><span class="uk dpron-i "><span class="region dreg">uk</span><span class="daud">                    

      
        
        814
        +    <audio class="hdn" preload="none" id="audio1" controlsList="nodownload">

      
        
        815
        +        <div class="hdib" fallback>

      
        
        816
        +            <p>Your browser doesn't support HTML5 audio</p>

      
        
        817
        +        </div>

      
        
        818
        +        <source type="audio/mpeg" src="/media/english/uk_pron/u/uks/ukski/ukskinl006.mp3"/>

      
        
        819
        +        <source type="audio/ogg" src="/media/english/uk_pron_ogg/u/uks/ukski/ukskinl006.ogg"/>

      
        
        820
        +    </audio>

      
        
        821
        +        <div title="Listen to the British English pronunciation" class="i i-volume-up c_aud htc hdib hp hv-1 fon tcu tc-bd lmr-10 lpt-3 fs20 hv-3" onclick="audio1.load(); audio1.play();" role="button" tabindex="0"></div>

      
        
        822
        +</span><span class="pron dpron">/<span class="ipa dipa lpr-2 lpl-1">skɪp</span>/</span></span> <span class="us dpron-i "><span class="region dreg">us</span><span class="daud">                    

      
        
        823
        +    <audio class="hdn" preload="none" id="audio2" controlsList="nodownload">

      
        
        824
        +        <div class="hdib" fallback>

      
        
        825
        +            <p>Your browser doesn't support HTML5 audio</p>

      
        
        826
        +        </div>

      
        
        827
        +        <source type="audio/mpeg" src="/media/english/us_pron/s/ski/skip_/skip.mp3"/>

      
        
        828
        +        <source type="audio/ogg" src="/media/english/us_pron_ogg/s/ski/skip_/skip.ogg"/>

      
        
        829
        +    </audio>

      
        
        830
        +        <div title="Listen to the American English pronunciation" class="i i-volume-up c_aud htc hdib hp hv-1 fon tcu tc-bd lmr-10 lpt-3 fs20 hv-3" onclick="audio2.load(); audio2.play();" role="button" tabindex="0"></div>

      
        
        831
        +</span><span class="pron dpron">/<span class="ipa dipa lpr-2 lpl-1">skɪp</span>/</span></span><div class="lmt--5" ></div> <span class="irreg-infls dinfls "><span class="inf-group dinfg "><b class="inf dinf">-pp-</b></span></span></div><div class="pos-body">

      
        
        832
        +

      
        
        833
        +                                <div class="pr dsense "><div class="cid" id="cald4-1-1"></div> <h3 class="dsense_h"><span class="hw dsense_hw">skip</span> <span class="pos dsense_pos" title="A word that describes an action, condition or experience.">verb</span> <span class="guideword dsense_gw" title="Guide word: helps you find the right meaning when a word has more than one meaning">

      
        
        834
        +            (<span>MOVE</span>)

      
        
        835
        +      </span></h3> <div class="sense-body dsense_b"><div class="def-block ddef_block " data-wl-senseid="ID_00029719_01">

      
        
        836
        +                        <div class="dwl hax">

      
        
        837
        +                            

      
        
        838
        +         

      
        
        839
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        840
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'ID_00029719_01', wotd: '    skip

      
        
        841
        +' } }), sidebarWordList.open">

      
        
        842
        +            <span class='tb fs10 hvm'>Add to word list</span>

      
        
        843
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        844
        +        </a>

      
        
        845
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        846
        +                on="tap:amp-access.login-sign-in">

      
        
        847
        +            <span class='tb fs10 hvm'>Add to word list</span>

      
        
        848
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        849
        +        </a>

      
        
        850
        +        </div>

      
        
        851
        +                <div class="ddef_h"><span class="def-info ddef-info">  <span class="gram dgram"><a href="/help/codes.html">[ <span class="gc dgc">I</span> <span class="gc dgc">usually</span> <span class="gc dgc">+ adv/prep</span> ]</a></span></span> <div class="def ddef_d db">to <a class="query" href="https://dictionary.cambridge.org/dictionary/english/move" title="move" rel="">move</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/lightly" title="lightly" rel="">lightly</a> and <a class="query" href="https://dictionary.cambridge.org/dictionary/english/quick" title="quickly" rel="">quickly</a>, making a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/small" title="small" rel="">small</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/jump" title="jump" rel="">jump</a> after each <a class="query" href="https://dictionary.cambridge.org/dictionary/english/step" title="step" rel="">step</a>: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="lu dlu">skip down</span> <span class="eg deg">She <a class="query" href="https://dictionary.cambridge.org/dictionary/english/watch" title="watched" rel="">watched</a> her little <a class="query" href="https://dictionary.cambridge.org/dictionary/english/granddaughter" title="granddaughter" rel="">granddaughter</a> skip down the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/path" title="path" rel="">path</a>.</span></div><div class="examp dexamp"><a class="lu dlu" href="https://dictionary.cambridge.org/dictionary/english/skip-about" title="skip about" rel="">skip about</a> <span class="eg deg">The <a class="query" href="https://dictionary.cambridge.org/dictionary/english/lamb" title="lambs" rel="">lambs</a> were skipping about in the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/field" title="field" rel="">field</a>.</span></div> </div></div></div>         

      
        
        852
        +        <div class="smartt daccord">

      
        
        853
        +            <amp-accordion disable-session-states>

      
        
        854
        +                    <section  expanded  >

      
        
        855
        +                    <header class="ca_h daccord_h">

      
        
        856
        +                        <i class="i i-plus ca_hi" aria-hidden="true"></i>

      
        
        857
        +                        SMART Vocabulary: related words and phrases                    </header>

      
        
        858
        +                    <div class="ca_b had daccord_b daccord_l">

      
        
        859
        +                        <div class="daccord_lt">

      
        
        860
        +                            <a href="https://dictionary.cambridge.org/topics/moving-quickly-and-slowly/moving-quickly/" title="Words and phrases related to skip in the topic Moving quickly">Moving quickly</a>

      
        
        861
        +                        </div>

      
        
        862
        +

      
        
        863
        +                        <div class="daccord_lb">

      
        
        864
        +                            

      
        
        865
        +                            <ul class="hul-u hul-u0 hax lmb-10 lcs">

      
        
        866
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        867
        +                                        <a title="agilely" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/agilely?topic=moving-quickly ">

      
        
        868
        +                                            <span class="results"><span class="base"><span class="hw haf">agilely</span></span></span>

      
        
        869
        +                                        </a>

      
        
        870
        +                                    </li>

      
        
        871
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        872
        +                                        <a title="agility" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/agility?topic=moving-quickly ">

      
        
        873
        +                                            <span class="results"><span class="base"><span class="hw haf">agility</span></span></span>

      
        
        874
        +                                        </a>

      
        
        875
        +                                    </li>

      
        
        876
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        877
        +                                        <a title="beetle" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/beetle?topic=moving-quickly ">

      
        
        878
        +                                            <span class="results"><span class="base"><span class="hw haf">beetle</span></span></span>

      
        
        879
        +                                        </a>

      
        
        880
        +                                    </li>

      
        
        881
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        882
        +                                        <a title="belt" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/belt?topic=moving-quickly ">

      
        
        883
        +                                            <span class="results"><span class="base"><span class="hw haf">belt</span></span></span>

      
        
        884
        +                                        </a>

      
        
        885
        +                                    </li>

      
        
        886
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        887
        +                                        <a title="bob up" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/bob-up?topic=moving-quickly ">

      
        
        888
        +                                            <span class="results"><span class="base"><span class="hw haf">bob up</span></span></span>

      
        
        889
        +                                        </a>

      
        
        890
        +                                    </li>

      
        
        891
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        892
        +                                        <a title="bowl" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/bowl?topic=moving-quickly ">

      
        
        893
        +                                            <span class="results"><span class="base"><span class="hw haf">bowl</span></span></span>

      
        
        894
        +                                        </a>

      
        
        895
        +                                    </li>

      
        
        896
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        897
        +                                        <a title="bowl down/along something phrasal verb" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/bowl-down-along?topic=moving-quickly ">

      
        
        898
        +                                            <span class="results"><span class="base"><span class="phrase haf">bowl down/along <span class="obj">something</span></span></span> <span class="pos">phrasal verb</span></span>

      
        
        899
        +                                        </a>

      
        
        900
        +                                    </li>

      
        
        901
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        902
        +                                        <a title="burn" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/burn?topic=moving-quickly ">

      
        
        903
        +                                            <span class="results"><span class="base"><span class="hw haf">burn</span></span></span>

      
        
        904
        +                                        </a>

      
        
        905
        +                                    </li>

      
        
        906
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        907
        +                                        <a title="flit" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/flit?topic=moving-quickly ">

      
        
        908
        +                                            <span class="results"><span class="base"><span class="hw haf">flit</span></span></span>

      
        
        909
        +                                        </a>

      
        
        910
        +                                    </li>

      
        
        911
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        912
        +                                        <a title="forge ahead phrasal verb" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/forge-ahead?topic=moving-quickly ">

      
        
        913
        +                                            <span class="results"><span class="base"><span class="phrase haf">forge ahead</span></span> <span class="pos">phrasal verb</span></span>

      
        
        914
        +                                        </a>

      
        
        915
        +                                    </li>

      
        
        916
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        917
        +                                        <a title="leg" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/leg?topic=moving-quickly ">

      
        
        918
        +                                            <span class="results"><span class="base"><span class="hw haf">leg</span></span></span>

      
        
        919
        +                                        </a>

      
        
        920
        +                                    </li>

      
        
        921
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        922
        +                                        <a title="light on your feet" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/light-on-feet?topic=moving-quickly ">

      
        
        923
        +                                            <span class="results"><span class="base"><span class="hw haf">light on <span class="obj">your</span> feet</span></span></span>

      
        
        924
        +                                        </a>

      
        
        925
        +                                    </li>

      
        
        926
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        927
        +                                        <a title="like the wind idiom" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/like-the-wind?topic=moving-quickly ">

      
        
        928
        +                                            <span class="results"><span class="base"><span class="phrase haf">like the wind</span></span> <span class="pos">idiom</span> </span>

      
        
        929
        +                                        </a>

      
        
        930
        +                                    </li>

      
        
        931
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        932
        +                                        <a title="lunge" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/lunge?topic=moving-quickly ">

      
        
        933
        +                                            <span class="results"><span class="base"><span class="hw haf">lunge</span></span></span>

      
        
        934
        +                                        </a>

      
        
        935
        +                                    </li>

      
        
        936
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        937
        +                                        <a title="mad dash" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/mad-dash?topic=moving-quickly ">

      
        
        938
        +                                            <span class="results"><span class="base"><span class="hw haf">mad dash</span></span></span>

      
        
        939
        +                                        </a>

      
        
        940
        +                                    </li>

      
        
        941
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        942
        +                                        <a title="make a dash for something" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/make-a-dash-for?topic=moving-quickly ">

      
        
        943
        +                                            <span class="results"><span class="base"><span class="hw haf">make a dash for <span class="obj">something</span></span></span></span>

      
        
        944
        +                                        </a>

      
        
        945
        +                                    </li>

      
        
        946
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        947
        +                                        <a title="outrun" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/outrun?topic=moving-quickly ">

      
        
        948
        +                                            <span class="results"><span class="base"><span class="hw haf">outrun</span></span></span>

      
        
        949
        +                                        </a>

      
        
        950
        +                                    </li>

      
        
        951
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        952
        +                                        <a title="rush" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/rush?topic=moving-quickly ">

      
        
        953
        +                                            <span class="results"><span class="base"><span class="hw haf">rush</span></span></span>

      
        
        954
        +                                        </a>

      
        
        955
        +                                    </li>

      
        
        956
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        957
        +                                        <a title="streaker" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/streaker?topic=moving-quickly ">

      
        
        958
        +                                            <span class="results"><span class="base"><span class="hw haf">streaker</span></span></span>

      
        
        959
        +                                        </a>

      
        
        960
        +                                    </li>

      
        
        961
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        962
        +                                        <a title="whizz" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/whizz?topic=moving-quickly ">

      
        
        963
        +                                            <span class="results"><span class="base"><span class="hw haf">whizz</span></span></span>

      
        
        964
        +                                        </a>

      
        
        965
        +                                    </li>

      
        
        966
        +                                                            </ul>

      
        
        967
        +

      
        
        968
        +                                                            <a href="https://dictionary.cambridge.org/topics/moving-quickly-and-slowly/moving-quickly/" class="had tb" title="Words and phrases related to skip in the topic Moving quickly">See more results »</a>

      
        
        969
        +                                                    </div>

      
        
        970
        +

      
        
        971
        +                                            </div>

      
        
        972
        +                    </section>

      
        
        973
        +            </amp-accordion>

      
        
        974
        +        </div>

      
        
        975
        +          <div class="pb-inline-sense"></div>

      
        
        976
        +                                                  <script type='text/javascript'>

      
        
        977
        +    if(typeof iaw !== 'undefined') {

      
        
        978
        +        iaw.que.push(function() {

      
        
        979
        +            iaw.setExtraAdSlots(["ad_ringlinkslot"]);

      
        
        980
        +            iaw.addPageCriteria("cdo_elvl", "A2");

      
        
        981
        +        });

      
        
        982
        +    }

      
        
        983
        +</script>

      
        
        984
        +<div id="ad_ringlinkslot">

      
        
        985
        +    <script type="text/javascript">

      
        
        986
        +        if(typeof iaw !== 'undefined') {

      
        
        987
        +            iaw.cmd.push(function () { iaw.display("ad_ringlinkslot"); });

      
        
        988
        +        }

      
        
        989
        +    </script>

      
        
        990
        +</div>

      
        
        991
        +             </div>

      
        
        992
        +

      
        
        993
        +                                <div class="pr dsense "><div class="cid" id="cald4-1-2"></div> <h3 class="dsense_h"><span class="hw dsense_hw">skip</span> <span class="pos dsense_pos" title="A word that describes an action, condition or experience.">verb</span> <span class="guideword dsense_gw" title="Guide word: helps you find the right meaning when a word has more than one meaning">

      
        
        994
        +            (<span>JUMP</span>)

      
        
        995
        +      </span></h3> <div class="sense-body dsense_b"><div class="def-block ddef_block " data-wl-senseid="ID_00029719_02">

      
        
        996
        +                        <div class="dwl hax">

      
        
        997
        +                            

      
        
        998
        +         

      
        
        999
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1000
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'ID_00029719_02', wotd: '    skip

      
        
        1001
        +' } }), sidebarWordList.open">

      
        
        1002
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1003
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1004
        +        </a>

      
        
        1005
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1006
        +                on="tap:amp-access.login-sign-in">

      
        
        1007
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1008
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1009
        +        </a>

      
        
        1010
        +        </div>

      
        
        1011
        +                <div class="ddef_h"><span class="def-info ddef-info">  <span class="gram dgram"><a href="/help/codes.html">[ <span class="gc dgc">I</span> ]</a></span> <span class="lab dlab"><span class="region dregion">UK</span></span> <div class="lmt-10" ></div><span class="var dvar">(<span class="lab dlab"><span class="region dregion">US</span></span> <span class="v dv lmr-0">jump rope</span>, <span class="v dv lmr-0">skip rope</span>)</span></span> <div class="def ddef_d db">to <a class="query" href="https://dictionary.cambridge.org/dictionary/english/jump" title="jump" rel="">jump</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/lightly" title="lightly" rel="">lightly</a> over a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/rope" title="rope" rel="">rope</a> that is <a class="query" href="https://dictionary.cambridge.org/dictionary/english/held" title="held" rel="">held</a> in both <a class="query" href="https://dictionary.cambridge.org/dictionary/english/your" title="your" rel="">your</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/hand" title="hands" rel="">hands</a>, or by two other <a class="query" href="https://dictionary.cambridge.org/dictionary/english/people" title="people" rel="">people</a>, and <a class="query" href="https://dictionary.cambridge.org/dictionary/english/turn" title="turned" rel="">turned</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/repeatedly" title="repeatedly" rel="">repeatedly</a> under <a class="query" href="https://dictionary.cambridge.org/dictionary/english/your" title="your" rel="">your</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/leg" title="legs" rel="">legs</a> and over <a class="query" href="https://dictionary.cambridge.org/dictionary/english/your" title="your" rel="">your</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/head" title="head" rel="">head</a> : </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="eg deg">Sports <a class="query" href="https://dictionary.cambridge.org/dictionary/english/player" title="players" rel="">players</a> often <a class="query" href="https://dictionary.cambridge.org/dictionary/english/train" title="train" rel="">train</a> by skipping.</span></div> </div></div></div>         

      
        
        1012
        +        <div class="smartt daccord">

      
        
        1013
        +            <amp-accordion disable-session-states>

      
        
        1014
        +                    <section  >

      
        
        1015
        +                    <header class="ca_h daccord_h">

      
        
        1016
        +                        <i class="i i-plus ca_hi" aria-hidden="true"></i>

      
        
        1017
        +                        SMART Vocabulary: related words and phrases                    </header>

      
        
        1018
        +                    <div class="ca_b had daccord_b daccord_l">

      
        
        1019
        +                        <div class="daccord_lt">

      
        
        1020
        +                            <a href="https://dictionary.cambridge.org/topics/games-and-activities/miscellaneous-games-and-activities/" title="Words and phrases related to skip in the topic Miscellaneous games &amp; activities">Miscellaneous games & activities</a>

      
        
        1021
        +                        </div>

      
        
        1022
        +

      
        
        1023
        +                        <div class="daccord_lb">

      
        
        1024
        +                            

      
        
        1025
        +                            <ul class="hul-u hul-u0 hax lmb-10 lcs">

      
        
        1026
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1027
        +                                        <a title="air hockey" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/air-hockey?topic=miscellaneous-games-and-activities ">

      
        
        1028
        +                                            <span class="results"><span class="base"><span class="hw haf">air hockey</span></span></span>

      
        
        1029
        +                                        </a>

      
        
        1030
        +                                    </li>

      
        
        1031
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1032
        +                                        <a title="arcade game" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/arcade-game?topic=miscellaneous-games-and-activities ">

      
        
        1033
        +                                            <span class="results"><span class="base"><span class="hw haf">arcade game</span></span></span>

      
        
        1034
        +                                        </a>

      
        
        1035
        +                                    </li>

      
        
        1036
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1037
        +                                        <a title="beer pong" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/beer-pong?topic=miscellaneous-games-and-activities ">

      
        
        1038
        +                                            <span class="results"><span class="base"><span class="hw haf">beer pong</span></span></span>

      
        
        1039
        +                                        </a>

      
        
        1040
        +                                    </li>

      
        
        1041
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1042
        +                                        <a title="belly dancing" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/belly-dancing?topic=miscellaneous-games-and-activities ">

      
        
        1043
        +                                            <span class="results"><span class="base"><span class="hw haf">belly dancing</span></span></span>

      
        
        1044
        +                                        </a>

      
        
        1045
        +                                    </li>

      
        
        1046
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1047
        +                                        <a title="bingo hall" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/bingo-hall?topic=miscellaneous-games-and-activities ">

      
        
        1048
        +                                            <span class="results"><span class="base"><span class="hw haf">bingo hall</span></span></span>

      
        
        1049
        +                                        </a>

      
        
        1050
        +                                    </li>

      
        
        1051
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1052
        +                                        <a title="bungee jumping" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/bungee-jumping?topic=miscellaneous-games-and-activities ">

      
        
        1053
        +                                            <span class="results"><span class="base"><span class="hw haf">bungee jumping</span></span></span>

      
        
        1054
        +                                        </a>

      
        
        1055
        +                                    </li>

      
        
        1056
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1057
        +                                        <a title="cage diving" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/cage-diving?topic=miscellaneous-games-and-activities ">

      
        
        1058
        +                                            <span class="results"><span class="base"><span class="hw haf">cage diving</span></span></span>

      
        
        1059
        +                                        </a>

      
        
        1060
        +                                    </li>

      
        
        1061
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1062
        +                                        <a title="charade" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/charade?topic=miscellaneous-games-and-activities ">

      
        
        1063
        +                                            <span class="results"><span class="base"><span class="hw haf">charade</span></span></span>

      
        
        1064
        +                                        </a>

      
        
        1065
        +                                    </li>

      
        
        1066
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1067
        +                                        <a title="gamified" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/gamified?topic=miscellaneous-games-and-activities ">

      
        
        1068
        +                                            <span class="results"><span class="base"><span class="hw haf">gamified</span></span></span>

      
        
        1069
        +                                        </a>

      
        
        1070
        +                                    </li>

      
        
        1071
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1072
        +                                        <a title="gaming system" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/gaming-system?topic=miscellaneous-games-and-activities ">

      
        
        1073
        +                                            <span class="results"><span class="base"><span class="hw haf">gaming system</span></span></span>

      
        
        1074
        +                                        </a>

      
        
        1075
        +                                    </li>

      
        
        1076
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1077
        +                                        <a title="glassing" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/glassing?topic=miscellaneous-games-and-activities ">

      
        
        1078
        +                                            <span class="results"><span class="base"><span class="hw haf">glassing</span></span></span>

      
        
        1079
        +                                        </a>

      
        
        1080
        +                                    </li>

      
        
        1081
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1082
        +                                        <a title="Hacky Sack" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/hacky-sack?topic=miscellaneous-games-and-activities ">

      
        
        1083
        +                                            <span class="results"><span class="base"><span class="hw haf">Hacky Sack</span></span></span>

      
        
        1084
        +                                        </a>

      
        
        1085
        +                                    </li>

      
        
        1086
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1087
        +                                        <a title="hangman" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/hangman?topic=miscellaneous-games-and-activities ">

      
        
        1088
        +                                            <span class="results"><span class="base"><span class="hw haf">hangman</span></span></span>

      
        
        1089
        +                                        </a>

      
        
        1090
        +                                    </li>

      
        
        1091
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1092
        +                                        <a title="pinball machine" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/pinball-machine?topic=miscellaneous-games-and-activities ">

      
        
        1093
        +                                            <span class="results"><span class="base"><span class="hw haf">pinball machine</span></span></span>

      
        
        1094
        +                                        </a>

      
        
        1095
        +                                    </li>

      
        
        1096
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1097
        +                                        <a title="quiz bowl" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/quiz-bowl?topic=miscellaneous-games-and-activities ">

      
        
        1098
        +                                            <span class="results"><span class="base"><span class="hw haf">quiz bowl</span></span></span>

      
        
        1099
        +                                        </a>

      
        
        1100
        +                                    </li>

      
        
        1101
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1102
        +                                        <a title="quizzing" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/quizzing?topic=miscellaneous-games-and-activities ">

      
        
        1103
        +                                            <span class="results"><span class="base"><span class="hw haf">quizzing</span></span></span>

      
        
        1104
        +                                        </a>

      
        
        1105
        +                                    </li>

      
        
        1106
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1107
        +                                        <a title="rebus" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/rebus?topic=miscellaneous-games-and-activities ">

      
        
        1108
        +                                            <span class="results"><span class="base"><span class="hw haf">rebus</span></span></span>

      
        
        1109
        +                                        </a>

      
        
        1110
        +                                    </li>

      
        
        1111
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1112
        +                                        <a title="respawn" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/respawn?topic=miscellaneous-games-and-activities ">

      
        
        1113
        +                                            <span class="results"><span class="base"><span class="hw haf">respawn</span></span></span>

      
        
        1114
        +                                        </a>

      
        
        1115
        +                                    </li>

      
        
        1116
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1117
        +                                        <a title="role-playing game" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/role-playing-game?topic=miscellaneous-games-and-activities ">

      
        
        1118
        +                                            <span class="results"><span class="base"><span class="hw haf">role-playing game</span></span></span>

      
        
        1119
        +                                        </a>

      
        
        1120
        +                                    </li>

      
        
        1121
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1122
        +                                        <a title="Rollerblade" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/rollerblade?topic=miscellaneous-games-and-activities ">

      
        
        1123
        +                                            <span class="results"><span class="base"><span class="hw haf">Rollerblade</span></span></span>

      
        
        1124
        +                                        </a>

      
        
        1125
        +                                    </li>

      
        
        1126
        +                                                            </ul>

      
        
        1127
        +

      
        
        1128
        +                                                            <a href="https://dictionary.cambridge.org/topics/games-and-activities/miscellaneous-games-and-activities/" class="had tb" title="Words and phrases related to skip in the topic Miscellaneous games &amp; activities">See more results »</a>

      
        
        1129
        +                                                    </div>

      
        
        1130
        +

      
        
        1131
        +                                            </div>

      
        
        1132
        +                    </section>

      
        
        1133
        +            </amp-accordion>

      
        
        1134
        +        </div>

      
        
        1135
        +          <div class="pb-inline-sense"></div>

      
        
        1136
        +             </div>

      
        
        1137
        +

      
        
        1138
        +                                <div class="pr dsense dsense-noh"><div class="cid" id="cald4-1-3"></div> <div class="sense-body dsense_b"><div class="pr phrase-block dphrase-block "><div class="cid" id="cald4-1-3-1"></div><div class="phrase-head dphrase_h"><i class="i i-caret-right dtrans fs18 lpb-4" aria-hidden="true"> </i><span class="phrase-title dphrase-title"><b>skip rope</b></span></div><div class="phrase-body dphrase_b"><div class="def-block ddef_block " data-wl-senseid="ID_00029719_07">

      
        
        1139
        +                        <div class="dwl hax">

      
        
        1140
        +                            

      
        
        1141
        +         

      
        
        1142
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1143
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'ID_00029719_07', wotd: '    skip

      
        
        1144
        +' } }), sidebarWordList.open">

      
        
        1145
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1146
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1147
        +        </a>

      
        
        1148
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1149
        +                on="tap:amp-access.login-sign-in">

      
        
        1150
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1151
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1152
        +        </a>

      
        
        1153
        +        </div>

      
        
        1154
        +                <div class="ddef_h"><span class="def-info ddef-info">  <span class="lab dlab"><span class="region dregion">US</span></span> <div class="lmt-10" ></div><span class="var dvar">(<span class="lab dlab">usually</span> <span class="v dv lmr-0">jump rope</span>)</span>; <span class="var dvar">(<span class="lab dlab"><span class="region dregion">UK</span></span> <span class="v dv lmr-0">skip</span>)</span></span> <div class="def ddef_d db">to <a class="query" href="https://dictionary.cambridge.org/dictionary/english/jump" title="jump" rel="">jump</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/lightly" title="lightly" rel="">lightly</a> over a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/rope" title="rope" rel="">rope</a> that is <a class="query" href="https://dictionary.cambridge.org/dictionary/english/held" title="held" rel="">held</a> in both <a class="query" href="https://dictionary.cambridge.org/dictionary/english/your" title="your" rel="">your</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/hand" title="hands" rel="">hands</a>, or by two other <a class="query" href="https://dictionary.cambridge.org/dictionary/english/people" title="people" rel="">people</a>, and <a class="query" href="https://dictionary.cambridge.org/dictionary/english/turn" title="turned" rel="">turned</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/repeatedly" title="repeatedly" rel="">repeatedly</a> under <a class="query" href="https://dictionary.cambridge.org/dictionary/english/your" title="your" rel="">your</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/leg" title="legs" rel="">legs</a> and over <a class="query" href="https://dictionary.cambridge.org/dictionary/english/your" title="your" rel="">your</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/head" title="head" rel="">head</a>: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="eg deg">Skip <a class="query" href="https://dictionary.cambridge.org/dictionary/english/rope" title="rope" rel="">rope</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/rapid" title="rapidly" rel="">rapidly</a> for five <a class="query" href="https://dictionary.cambridge.org/dictionary/english/minutes" title="minutes" rel="">minutes</a>.</span></div><div class="examp dexamp"> <span class="eg deg">We used to skip <a class="query" href="https://dictionary.cambridge.org/dictionary/english/rope" title="rope" rel="">rope</a> and <a class="query" href="https://dictionary.cambridge.org/dictionary/english/play" title="play" rel="">play</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/jacks" title="jacks" rel="">jacks</a> after <a class="query" href="https://dictionary.cambridge.org/dictionary/english/school" title="school" rel="">school</a>.</span></div><div class="examp dexamp"> <span class="eg deg">Skipping <a class="query" href="https://dictionary.cambridge.org/dictionary/english/rope" title="rope" rel="">rope</a> is good <a class="query" href="https://dictionary.cambridge.org/dictionary/english/cardiovascular" title="cardiovascular" rel="">cardiovascular</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/exercise" title="exercise" rel="">exercise</a>.</span></div><div class="examp dexamp"> <span class="eg deg">The <a class="query" href="https://dictionary.cambridge.org/dictionary/english/children" title="children" rel="">children</a> in the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/schoolyard" title="schoolyard" rel="">schoolyard</a> skipped <a class="query" href="https://dictionary.cambridge.org/dictionary/english/rope" title="rope" rel="">rope</a> in <a class="query" href="https://dictionary.cambridge.org/dictionary/english/group" title="groups" rel="">groups</a> of three. </span></div> </div></div></div></div></div>         

      
        
        1155
        +        <div class="smartt daccord">

      
        
        1156
        +            <amp-accordion disable-session-states>

      
        
        1157
        +                    <section  >

      
        
        1158
        +                    <header class="ca_h daccord_h">

      
        
        1159
        +                        <i class="i i-plus ca_hi" aria-hidden="true"></i>

      
        
        1160
        +                        SMART Vocabulary: related words and phrases                    </header>

      
        
        1161
        +                    <div class="ca_b had daccord_b daccord_l">

      
        
        1162
        +                        <div class="daccord_lt">

      
        
        1163
        +                            <a href="https://dictionary.cambridge.org/topics/games-and-activities/miscellaneous-games-and-activities/" title="Words and phrases related to skip in the topic Miscellaneous games &amp; activities">Miscellaneous games & activities</a>

      
        
        1164
        +                        </div>

      
        
        1165
        +

      
        
        1166
        +                        <div class="daccord_lb">

      
        
        1167
        +                            

      
        
        1168
        +                            <ul class="hul-u hul-u0 hax lmb-10 lcs">

      
        
        1169
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1170
        +                                        <a title="air hockey" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/air-hockey?topic=miscellaneous-games-and-activities ">

      
        
        1171
        +                                            <span class="results"><span class="base"><span class="hw haf">air hockey</span></span></span>

      
        
        1172
        +                                        </a>

      
        
        1173
        +                                    </li>

      
        
        1174
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1175
        +                                        <a title="arcade game" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/arcade-game?topic=miscellaneous-games-and-activities ">

      
        
        1176
        +                                            <span class="results"><span class="base"><span class="hw haf">arcade game</span></span></span>

      
        
        1177
        +                                        </a>

      
        
        1178
        +                                    </li>

      
        
        1179
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1180
        +                                        <a title="beer pong" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/beer-pong?topic=miscellaneous-games-and-activities ">

      
        
        1181
        +                                            <span class="results"><span class="base"><span class="hw haf">beer pong</span></span></span>

      
        
        1182
        +                                        </a>

      
        
        1183
        +                                    </li>

      
        
        1184
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1185
        +                                        <a title="belly dancing" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/belly-dancing?topic=miscellaneous-games-and-activities ">

      
        
        1186
        +                                            <span class="results"><span class="base"><span class="hw haf">belly dancing</span></span></span>

      
        
        1187
        +                                        </a>

      
        
        1188
        +                                    </li>

      
        
        1189
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1190
        +                                        <a title="bingo hall" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/bingo-hall?topic=miscellaneous-games-and-activities ">

      
        
        1191
        +                                            <span class="results"><span class="base"><span class="hw haf">bingo hall</span></span></span>

      
        
        1192
        +                                        </a>

      
        
        1193
        +                                    </li>

      
        
        1194
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1195
        +                                        <a title="bungee jumping" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/bungee-jumping?topic=miscellaneous-games-and-activities ">

      
        
        1196
        +                                            <span class="results"><span class="base"><span class="hw haf">bungee jumping</span></span></span>

      
        
        1197
        +                                        </a>

      
        
        1198
        +                                    </li>

      
        
        1199
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1200
        +                                        <a title="cage diving" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/cage-diving?topic=miscellaneous-games-and-activities ">

      
        
        1201
        +                                            <span class="results"><span class="base"><span class="hw haf">cage diving</span></span></span>

      
        
        1202
        +                                        </a>

      
        
        1203
        +                                    </li>

      
        
        1204
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1205
        +                                        <a title="charade" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/charade?topic=miscellaneous-games-and-activities ">

      
        
        1206
        +                                            <span class="results"><span class="base"><span class="hw haf">charade</span></span></span>

      
        
        1207
        +                                        </a>

      
        
        1208
        +                                    </li>

      
        
        1209
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1210
        +                                        <a title="gamified" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/gamified?topic=miscellaneous-games-and-activities ">

      
        
        1211
        +                                            <span class="results"><span class="base"><span class="hw haf">gamified</span></span></span>

      
        
        1212
        +                                        </a>

      
        
        1213
        +                                    </li>

      
        
        1214
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1215
        +                                        <a title="gaming system" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/gaming-system?topic=miscellaneous-games-and-activities ">

      
        
        1216
        +                                            <span class="results"><span class="base"><span class="hw haf">gaming system</span></span></span>

      
        
        1217
        +                                        </a>

      
        
        1218
        +                                    </li>

      
        
        1219
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1220
        +                                        <a title="glassing" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/glassing?topic=miscellaneous-games-and-activities ">

      
        
        1221
        +                                            <span class="results"><span class="base"><span class="hw haf">glassing</span></span></span>

      
        
        1222
        +                                        </a>

      
        
        1223
        +                                    </li>

      
        
        1224
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1225
        +                                        <a title="Hacky Sack" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/hacky-sack?topic=miscellaneous-games-and-activities ">

      
        
        1226
        +                                            <span class="results"><span class="base"><span class="hw haf">Hacky Sack</span></span></span>

      
        
        1227
        +                                        </a>

      
        
        1228
        +                                    </li>

      
        
        1229
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1230
        +                                        <a title="hangman" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/hangman?topic=miscellaneous-games-and-activities ">

      
        
        1231
        +                                            <span class="results"><span class="base"><span class="hw haf">hangman</span></span></span>

      
        
        1232
        +                                        </a>

      
        
        1233
        +                                    </li>

      
        
        1234
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1235
        +                                        <a title="pinball machine" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/pinball-machine?topic=miscellaneous-games-and-activities ">

      
        
        1236
        +                                            <span class="results"><span class="base"><span class="hw haf">pinball machine</span></span></span>

      
        
        1237
        +                                        </a>

      
        
        1238
        +                                    </li>

      
        
        1239
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1240
        +                                        <a title="quiz bowl" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/quiz-bowl?topic=miscellaneous-games-and-activities ">

      
        
        1241
        +                                            <span class="results"><span class="base"><span class="hw haf">quiz bowl</span></span></span>

      
        
        1242
        +                                        </a>

      
        
        1243
        +                                    </li>

      
        
        1244
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1245
        +                                        <a title="quizzing" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/quizzing?topic=miscellaneous-games-and-activities ">

      
        
        1246
        +                                            <span class="results"><span class="base"><span class="hw haf">quizzing</span></span></span>

      
        
        1247
        +                                        </a>

      
        
        1248
        +                                    </li>

      
        
        1249
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1250
        +                                        <a title="rebus" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/rebus?topic=miscellaneous-games-and-activities ">

      
        
        1251
        +                                            <span class="results"><span class="base"><span class="hw haf">rebus</span></span></span>

      
        
        1252
        +                                        </a>

      
        
        1253
        +                                    </li>

      
        
        1254
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1255
        +                                        <a title="respawn" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/respawn?topic=miscellaneous-games-and-activities ">

      
        
        1256
        +                                            <span class="results"><span class="base"><span class="hw haf">respawn</span></span></span>

      
        
        1257
        +                                        </a>

      
        
        1258
        +                                    </li>

      
        
        1259
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1260
        +                                        <a title="role-playing game" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/role-playing-game?topic=miscellaneous-games-and-activities ">

      
        
        1261
        +                                            <span class="results"><span class="base"><span class="hw haf">role-playing game</span></span></span>

      
        
        1262
        +                                        </a>

      
        
        1263
        +                                    </li>

      
        
        1264
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1265
        +                                        <a title="Rollerblade" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/rollerblade?topic=miscellaneous-games-and-activities ">

      
        
        1266
        +                                            <span class="results"><span class="base"><span class="hw haf">Rollerblade</span></span></span>

      
        
        1267
        +                                        </a>

      
        
        1268
        +                                    </li>

      
        
        1269
        +                                                            </ul>

      
        
        1270
        +

      
        
        1271
        +                                                            <a href="https://dictionary.cambridge.org/topics/games-and-activities/miscellaneous-games-and-activities/" class="had tb" title="Words and phrases related to skip in the topic Miscellaneous games &amp; activities">See more results »</a>

      
        
        1272
        +                                                    </div>

      
        
        1273
        +

      
        
        1274
        +                                            </div>

      
        
        1275
        +                    </section>

      
        
        1276
        +            </amp-accordion>

      
        
        1277
        +        </div>

      
        
        1278
        +          <div class="pb-inline-sense"></div>

      
        
        1279
        +                                                            <div id='ad_contentslot_1' class='am-default_moreslots contentslot'>

      
        
        1280
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_contentslot_1'); });</script>

      
        
        1281
        +        </div>

      
        
        1282
        +                             </div>

      
        
        1283
        +

      
        
        1284
        +                                <div class="pr dsense "><div class="cid" id="cald4-1-4"></div> <h3 class="dsense_h"><span class="hw dsense_hw">skip</span> <span class="pos dsense_pos" title="A word that describes an action, condition or experience.">verb</span> <span class="guideword dsense_gw" title="Guide word: helps you find the right meaning when a word has more than one meaning">

      
        
        1285
        +            (<span>LEAVE</span>)

      
        
        1286
        +      </span></h3> <div class="sense-body dsense_b"><div class="def-block ddef_block " data-wl-senseid="ID_00029719_03">

      
        
        1287
        +                        <div class="dwl hax">

      
        
        1288
        +                            

      
        
        1289
        +         

      
        
        1290
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1291
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'ID_00029719_03', wotd: '    skip

      
        
        1292
        +' } }), sidebarWordList.open">

      
        
        1293
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1294
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1295
        +        </a>

      
        
        1296
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1297
        +                on="tap:amp-access.login-sign-in">

      
        
        1298
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1299
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1300
        +        </a>

      
        
        1301
        +        </div>

      
        
        1302
        +                <div class="ddef_h"><span class="def-info ddef-info"><span class="epp-xref dxref C1">C1</span> <span class="gram dgram"><a href="/help/codes.html">[ <span class="gc dgc">I</span> or <span class="gc dgc">T</span> ]</a></span></span> <div class="def ddef_d db">to <a class="query" href="https://dictionary.cambridge.org/dictionary/english/leave" title="leave" rel="">leave</a> one thing or <a class="query" href="https://dictionary.cambridge.org/dictionary/english/place" title="place" rel="">place</a>, <a class="query" href="https://dictionary.cambridge.org/dictionary/english/especially" title="especially" rel="">especially</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/quick" title="quickly" rel="">quickly</a>, in <a class="query" href="https://dictionary.cambridge.org/dictionary/english/order" title="order" rel="">order</a> to go to another: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="lu dlu">skip (over)</span> <span class="eg deg">This <a class="query" href="https://dictionary.cambridge.org/dictionary/english/part" title="part" rel="">part</a> of the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/book" title="book" rel="">book</a> isn't very <a class="query" href="https://dictionary.cambridge.org/dictionary/english/interesting" title="interesting" rel="">interesting</a>, so I'm going to skip (over) it.</span></div><div class="examp dexamp"><span class="lu dlu">skip from <span class="obj dobj">something</span> to <span class="obj dobj">something</span></span> <span class="eg deg">The <a class="query" href="https://dictionary.cambridge.org/dictionary/english/teacher" title="teacher" rel="">teacher</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/kept" title="kept" rel="">kept</a> skipping from one <a class="query" href="https://dictionary.cambridge.org/dictionary/english/subject" title="subject" rel="">subject</a> to another so it was <a class="query" href="https://dictionary.cambridge.org/dictionary/english/difficult" title="difficult" rel="">difficult</a> to <a class="query" href="https://dictionary.cambridge.org/dictionary/english/follow" title="follow" rel="">follow</a> what he was saying.</span></div><div class="examp dexamp"><span class="lu dlu">skip over/across/off</span> <span class="lab dlab"><span class="region dregion">UK</span></span> <span class="eg deg">We're skipping over/<a class="query" href="https://dictionary.cambridge.org/dictionary/english/across" title="across" rel="">across</a>/off <span class="gloss dgloss">(= making a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/quick" title="quick" rel="">quick</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/journey" title="journey" rel="">journey</a>)</span> to France for the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/day" title="day" rel="">day</a>.</span></div><div class="examp dexamp"><a class="lu dlu" href="https://dictionary.cambridge.org/dictionary/english/skip-the-country" title="skip the country" rel="">skip the country</a> <span class="eg deg">The <a class="query" href="https://dictionary.cambridge.org/dictionary/english/police" title="police" rel="">police</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/think" title="think" rel="">think</a> that the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/bank" title="bank" rel="">bank</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/robber" title="robbers" rel="">robbers</a> must have skipped <span class="gloss dgloss">(= <a class="query" href="https://dictionary.cambridge.org/dictionary/english/left" title="left" rel="">left</a>)</span> the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/country" title="country" rel="">country</a> by now.</span></div><div class="examp dexamp"><span class="lu dlu">skip off/out</span> <span class="lab dlab"><span class="region dregion">UK</span></span> <span class="eg deg">She skipped off/out <span class="gloss dgloss">(= <a class="query" href="https://dictionary.cambridge.org/dictionary/english/left" title="left" rel="">left</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/quick" title="quickly" rel="">quickly</a> and/or <a class="query" href="https://dictionary.cambridge.org/dictionary/english/secret" title="secretly" rel="">secretly</a>)</span> without saying <a class="query" href="https://dictionary.cambridge.org/dictionary/english/goodbye" title="goodbye" rel="">goodbye</a>.</span></div> </div></div></div>         

      
        
        1303
        +        <div class="smartt daccord">

      
        
        1304
        +            <amp-accordion disable-session-states>

      
        
        1305
        +                    <section  >

      
        
        1306
        +                    <header class="ca_h daccord_h">

      
        
        1307
        +                        <i class="i i-plus ca_hi" aria-hidden="true"></i>

      
        
        1308
        +                        SMART Vocabulary: related words and phrases                    </header>

      
        
        1309
        +                    <div class="ca_b had daccord_b daccord_l">

      
        
        1310
        +                        <div class="daccord_lt">

      
        
        1311
        +                            <a href="https://dictionary.cambridge.org/topics/including-and-excluding/excluding/" title="Words and phrases related to skip in the topic Excluding">Excluding</a>

      
        
        1312
        +                        </div>

      
        
        1313
        +

      
        
        1314
        +                        <div class="daccord_lb">

      
        
        1315
        +                            

      
        
        1316
        +                            <ul class="hul-u hul-u0 hax lmb-10 lcs">

      
        
        1317
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1318
        +                                        <a title="acid-free" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/acid-free?topic=excluding ">

      
        
        1319
        +                                            <span class="results"><span class="base"><span class="hw haf">acid-free</span></span></span>

      
        
        1320
        +                                        </a>

      
        
        1321
        +                                    </li>

      
        
        1322
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1323
        +                                        <a title="apart" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/apart?topic=excluding ">

      
        
        1324
        +                                            <span class="results"><span class="base"><span class="hw haf">apart</span></span></span>

      
        
        1325
        +                                        </a>

      
        
        1326
        +                                    </li>

      
        
        1327
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1328
        +                                        <a title="aside" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/aside?topic=excluding ">

      
        
        1329
        +                                            <span class="results"><span class="base"><span class="hw haf">aside</span></span></span>

      
        
        1330
        +                                        </a>

      
        
        1331
        +                                    </li>

      
        
        1332
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1333
        +                                        <a title="bar" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/bar?topic=excluding ">

      
        
        1334
        +                                            <span class="results"><span class="base"><span class="hw haf">bar</span></span></span>

      
        
        1335
        +                                        </a>

      
        
        1336
        +                                    </li>

      
        
        1337
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1338
        +                                        <a title="bar none idiom" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/bar-none?topic=excluding ">

      
        
        1339
        +                                            <span class="results"><span class="base"><span class="phrase haf">bar none</span></span> <span class="pos">idiom</span> </span>

      
        
        1340
        +                                        </a>

      
        
        1341
        +                                    </li>

      
        
        1342
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1343
        +                                        <a title="barring" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/barring?topic=excluding ">

      
        
        1344
        +                                            <span class="results"><span class="base"><span class="hw haf">barring</span></span></span>

      
        
        1345
        +                                        </a>

      
        
        1346
        +                                    </li>

      
        
        1347
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1348
        +                                        <a title="dumping ground" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/dumping-ground?topic=excluding ">

      
        
        1349
        +                                            <span class="results"><span class="base"><span class="hw haf">dumping ground</span></span></span>

      
        
        1350
        +                                        </a>

      
        
        1351
        +                                    </li>

      
        
        1352
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1353
        +                                        <a title="exclude someone/something from something" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/exclude-from?topic=excluding ">

      
        
        1354
        +                                            <span class="results"><span class="base"><span class="hw haf">exclude <span class="obj">someone/something</span> from <span class="obj">something</span></span></span></span>

      
        
        1355
        +                                        </a>

      
        
        1356
        +                                    </li>

      
        
        1357
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1358
        +                                        <a title="excluding" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/excluding?topic=excluding ">

      
        
        1359
        +                                            <span class="results"><span class="base"><span class="hw haf">excluding</span></span></span>

      
        
        1360
        +                                        </a>

      
        
        1361
        +                                    </li>

      
        
        1362
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1363
        +                                        <a title="exclusion" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/exclusion?topic=excluding ">

      
        
        1364
        +                                            <span class="results"><span class="base"><span class="hw haf">exclusion</span></span></span>

      
        
        1365
        +                                        </a>

      
        
        1366
        +                                    </li>

      
        
        1367
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1368
        +                                        <a title="exclusion from something" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/exclusion-from?topic=excluding ">

      
        
        1369
        +                                            <span class="results"><span class="base"><span class="hw haf">exclusion from <span class="obj">something</span></span></span></span>

      
        
        1370
        +                                        </a>

      
        
        1371
        +                                    </li>

      
        
        1372
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1373
        +                                        <a title="exclusionary" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/exclusionary?topic=excluding ">

      
        
        1374
        +                                            <span class="results"><span class="base"><span class="hw haf">exclusionary</span></span></span>

      
        
        1375
        +                                        </a>

      
        
        1376
        +                                    </li>

      
        
        1377
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1378
        +                                        <a title="freeze" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/freeze?topic=excluding ">

      
        
        1379
        +                                            <span class="results"><span class="base"><span class="hw haf">freeze</span></span></span>

      
        
        1380
        +                                        </a>

      
        
        1381
        +                                    </li>

      
        
        1382
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1383
        +                                        <a title="omit" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/omit?topic=excluding ">

      
        
        1384
        +                                            <span class="results"><span class="base"><span class="hw haf">omit</span></span></span>

      
        
        1385
        +                                        </a>

      
        
        1386
        +                                    </li>

      
        
        1387
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1388
        +                                        <a title="omit someone/something from something" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/omit-from?topic=excluding ">

      
        
        1389
        +                                            <span class="results"><span class="base"><span class="hw haf">omit <span class="obj">someone/something</span> from <span class="obj">something</span></span></span></span>

      
        
        1390
        +                                        </a>

      
        
        1391
        +                                    </li>

      
        
        1392
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1393
        +                                        <a title="on/from the sidelines idiom" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/on-from-the-sidelines?topic=excluding ">

      
        
        1394
        +                                            <span class="results"><span class="base"><span class="phrase haf">on/from the sidelines</span></span> <span class="pos">idiom</span> </span>

      
        
        1395
        +                                        </a>

      
        
        1396
        +                                    </li>

      
        
        1397
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1398
        +                                        <a title="ostracism" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/ostracism?topic=excluding ">

      
        
        1399
        +                                            <span class="results"><span class="base"><span class="hw haf">ostracism</span></span></span>

      
        
        1400
        +                                        </a>

      
        
        1401
        +                                    </li>

      
        
        1402
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1403
        +                                        <a title="ostracize" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/ostracize?topic=excluding ">

      
        
        1404
        +                                            <span class="results"><span class="base"><span class="hw haf">ostracize</span></span></span>

      
        
        1405
        +                                        </a>

      
        
        1406
        +                                    </li>

      
        
        1407
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1408
        +                                        <a title="sideline" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/sideline?topic=excluding ">

      
        
        1409
        +                                            <span class="results"><span class="base"><span class="hw haf">sideline</span></span></span>

      
        
        1410
        +                                        </a>

      
        
        1411
        +                                    </li>

      
        
        1412
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1413
        +                                        <a title="with the exception of someone/something" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/with-the-exception-of?topic=excluding ">

      
        
        1414
        +                                            <span class="results"><span class="base"><span class="hw haf">with the exception of <span class="obj">someone/something</span></span></span></span>

      
        
        1415
        +                                        </a>

      
        
        1416
        +                                    </li>

      
        
        1417
        +                                                            </ul>

      
        
        1418
        +

      
        
        1419
        +                                                            <a href="https://dictionary.cambridge.org/topics/including-and-excluding/excluding/" class="had tb" title="Words and phrases related to skip in the topic Excluding">See more results »</a>

      
        
        1420
        +                                                    </div>

      
        
        1421
        +

      
        
        1422
        +                                            </div>

      
        
        1423
        +                    </section>

      
        
        1424
        +            </amp-accordion>

      
        
        1425
        +        </div>

      
        
        1426
        +          <div class="pb-inline-sense"></div>

      
        
        1427
        +             </div>

      
        
        1428
        +

      
        
        1429
        +                                <div class="pr dsense "><div class="cid" id="cald4-1-5"></div> <h3 class="dsense_h"><span class="hw dsense_hw">skip</span> <span class="pos dsense_pos" title="A word that describes an action, condition or experience.">verb</span> <span class="guideword dsense_gw" title="Guide word: helps you find the right meaning when a word has more than one meaning">

      
        
        1430
        +            (<span>AVOID</span>)

      
        
        1431
        +      </span></h3> <div class="sense-body dsense_b"><div class="def-block ddef_block " data-wl-senseid="ID_00029719_04">

      
        
        1432
        +                        <div class="dwl hax">

      
        
        1433
        +                            

      
        
        1434
        +         

      
        
        1435
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1436
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'ID_00029719_04', wotd: '    skip

      
        
        1437
        +' } }), sidebarWordList.open">

      
        
        1438
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1439
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1440
        +        </a>

      
        
        1441
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1442
        +                on="tap:amp-access.login-sign-in">

      
        
        1443
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1444
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1445
        +        </a>

      
        
        1446
        +        </div>

      
        
        1447
        +                <div class="ddef_h"><span class="def-info ddef-info"><span class="epp-xref dxref B2">B2</span> <span class="gram dgram"><a href="/help/codes.html">[ <span class="gc dgc">T</span> ]</a></span> <span class="lab dlab"><span class="usage dusage">informal</span></span></span> <div class="def ddef_d db">to not do or not have something that you usually do or that you should do; to <a class="query" href="https://dictionary.cambridge.org/dictionary/english/avoid" title="avoid" rel="">avoid</a>: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="lu dlu">skip lunch</span> <span class="eg deg">I'm <a class="query" href="https://dictionary.cambridge.org/dictionary/english/trying" title="trying" rel="">trying</a> to <a class="query" href="https://dictionary.cambridge.org/dictionary/english/lose" title="lose" rel="">lose</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/weight" title="weight" rel="">weight</a>, so I'm skipping <span class="gloss dgloss">(= not <a class="query" href="https://dictionary.cambridge.org/dictionary/english/eat" title="eating" rel="">eating</a>)</span> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/lunch" title="lunch" rel="">lunch</a> today.</span></div><div class="examp dexamp"><span class="lu dlu">skip school</span> <span class="lab dlab"><span class="region dregion">US</span></span> <span class="eg deg">Should <a class="query" href="https://dictionary.cambridge.org/dictionary/english/parent" title="parents" rel="">parents</a> have to <a class="query" href="https://dictionary.cambridge.org/dictionary/english/pay" title="pay" rel="">pay</a> if <a class="query" href="https://dictionary.cambridge.org/dictionary/english/their" title="their" rel="">their</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/child" title="child" rel="">child</a> skips <a class="query" href="https://dictionary.cambridge.org/dictionary/english/school" title="school" rel="">school</a>?</span></div><div class="examp dexamp"><span class="lu dlu">skip class</span> <span class="lab dlab"><span class="region dregion">US</span></span> <span class="eg deg">I skipped <a class="query" href="https://dictionary.cambridge.org/dictionary/english/class" title="class" rel="">class</a> and went to the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/park" title="park" rel="">park</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/instead" title="instead" rel="">instead</a>.</span></div><div class="daccord fs16"><amp-accordion>

      
        
        1448
        +                    <section  >

      
        
        1449
        +                    <header class="ca_h">

      
        
        1450
        +                            <i class="i i-plus ca_hi" aria-hidden="true"></i>

      
        
        1451
        +                        Thesaurus: synonyms, antonyms, and examples

      
        
        1452
        +                    </header><div class="had daccord_b"><div class="daccord_lt"><a href="/thesaurus/articles/to-avoid-doing-something">to avoid doing something</a></div><div class="daccord_lb"><ul class="hul-u lmb-10 "><li class="had t-i"><a href="/thesaurus/avoid">avoid</a><span class="ti lml-5"><span class="example dexample">Avoid swimming in areas where sharks are known to congregate.</span></span></li><li class="had t-i"><a href="/thesaurus/evade">evade</a><span class="ti lml-5"><span class="example dexample">Please don’t think I’m trying to evade my responsibility.</span></span></li><li class="had t-i"><a href="/thesaurus/dodge">dodge</a><span class="ti lml-5"><span class="example dexample">He tried to dodge his military service.</span></span></li><li class="had t-i"><a href="/thesaurus/run-away-from">run away from</a><span class="ti lml-5"><span class="example dexample">I didn't often run away from difficult decisions.</span></span></li><li class="had t-i"><a href="/thesaurus/shrink-from">shrink from</a><span class="ti lml-5"><span class="example dexample">I've never been one to shrink from a challenge.</span></span></li><li class="had t-i"><a href="/thesaurus/sidestep">sidestep</a><span class="ti lml-5"><span class="example dexample">This is not a responsibility you can sidestep.</span></span></li></ul><a class="had tb" href="/thesaurus/articles/to-avoid-doing-something" title="See how to use these synonyms and their opposites.">

      
        
        1453
        +            See more results »

      
        
        1454
        +        </a></div></div>

      
        
        1455
        +                    </section>

      
        
        1456
        +            </amp-accordion></div> </div></div></div>         

      
        
        1457
        +        <div class="smartt daccord">

      
        
        1458
        +            <amp-accordion disable-session-states>

      
        
        1459
        +                    <section  >

      
        
        1460
        +                    <header class="ca_h daccord_h">

      
        
        1461
        +                        <i class="i i-plus ca_hi" aria-hidden="true"></i>

      
        
        1462
        +                        SMART Vocabulary: related words and phrases                    </header>

      
        
        1463
        +                    <div class="ca_b had daccord_b daccord_l">

      
        
        1464
        +                        <div class="daccord_lt">

      
        
        1465
        +                            <a href="https://dictionary.cambridge.org/topics/doing-and-achieving/avoiding-action/" title="Words and phrases related to skip in the topic Avoiding action">Avoiding action</a>

      
        
        1466
        +                        </div>

      
        
        1467
        +

      
        
        1468
        +                        <div class="daccord_lb">

      
        
        1469
        +                            

      
        
        1470
        +                            <ul class="hul-u hul-u0 hax lmb-10 lcs">

      
        
        1471
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1472
        +                                        <a title="abrogate" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/abrogate?topic=avoiding-action ">

      
        
        1473
        +                                            <span class="results"><span class="base"><span class="hw haf">abrogate</span></span></span>

      
        
        1474
        +                                        </a>

      
        
        1475
        +                                    </li>

      
        
        1476
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1477
        +                                        <a title="abrogation" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/abrogation?topic=avoiding-action ">

      
        
        1478
        +                                            <span class="results"><span class="base"><span class="hw haf">abrogation</span></span></span>

      
        
        1479
        +                                        </a>

      
        
        1480
        +                                    </li>

      
        
        1481
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1482
        +                                        <a title="avoid" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/avoid?topic=avoiding-action ">

      
        
        1483
        +                                            <span class="results"><span class="base"><span class="hw haf">avoid</span></span></span>

      
        
        1484
        +                                        </a>

      
        
        1485
        +                                    </li>

      
        
        1486
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1487
        +                                        <a title="avoid something like the plague idiom" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/avoid-like-the-plague?topic=avoiding-action ">

      
        
        1488
        +                                            <span class="results"><span class="base"><span class="phrase haf">avoid <span class="obj">something</span> like the plague</span></span> <span class="pos">idiom</span> </span>

      
        
        1489
        +                                        </a>

      
        
        1490
        +                                    </li>

      
        
        1491
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1492
        +                                        <a title="avoidance" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/avoidance?topic=avoiding-action ">

      
        
        1493
        +                                            <span class="results"><span class="base"><span class="hw haf">avoidance</span></span></span>

      
        
        1494
        +                                        </a>

      
        
        1495
        +                                    </li>

      
        
        1496
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1497
        +                                        <a title="doss" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/doss?topic=avoiding-action ">

      
        
        1498
        +                                            <span class="results"><span class="base"><span class="hw haf">doss</span></span></span>

      
        
        1499
        +                                        </a>

      
        
        1500
        +                                    </li>

      
        
        1501
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1502
        +                                        <a title="elude" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/elude?topic=avoiding-action ">

      
        
        1503
        +                                            <span class="results"><span class="base"><span class="hw haf">elude</span></span></span>

      
        
        1504
        +                                        </a>

      
        
        1505
        +                                    </li>

      
        
        1506
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1507
        +                                        <a title="end-run" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/end-run?topic=avoiding-action ">

      
        
        1508
        +                                            <span class="results"><span class="base"><span class="hw haf">end-run</span></span></span>

      
        
        1509
        +                                        </a>

      
        
        1510
        +                                    </li>

      
        
        1511
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1512
        +                                        <a title="eschew" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/eschew?topic=avoiding-action ">

      
        
        1513
        +                                            <span class="results"><span class="base"><span class="hw haf">eschew</span></span></span>

      
        
        1514
        +                                        </a>

      
        
        1515
        +                                    </li>

      
        
        1516
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1517
        +                                        <a title="evade" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/evade?topic=avoiding-action ">

      
        
        1518
        +                                            <span class="results"><span class="base"><span class="hw haf">evade</span></span></span>

      
        
        1519
        +                                        </a>

      
        
        1520
        +                                    </li>

      
        
        1521
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1522
        +                                        <a title="evader" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/evader?topic=avoiding-action ">

      
        
        1523
        +                                            <span class="results"><span class="base"><span class="hw haf">evader</span></span></span>

      
        
        1524
        +                                        </a>

      
        
        1525
        +                                    </li>

      
        
        1526
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1527
        +                                        <a title="evasion" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/evasion?topic=avoiding-action ">

      
        
        1528
        +                                            <span class="results"><span class="base"><span class="hw haf">evasion</span></span></span>

      
        
        1529
        +                                        </a>

      
        
        1530
        +                                    </li>

      
        
        1531
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1532
        +                                        <a title="fiddle" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/fiddle?topic=avoiding-action ">

      
        
        1533
        +                                            <span class="results"><span class="base"><span class="hw haf">fiddle</span></span></span>

      
        
        1534
        +                                        </a>

      
        
        1535
        +                                    </li>

      
        
        1536
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1537
        +                                        <a title="insure" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/insure?topic=avoiding-action ">

      
        
        1538
        +                                            <span class="results"><span class="base"><span class="hw haf">insure</span></span></span>

      
        
        1539
        +                                        </a>

      
        
        1540
        +                                    </li>

      
        
        1541
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1542
        +                                        <a title="run for the hills idiom" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/run-for-the-hills?topic=avoiding-action ">

      
        
        1543
        +                                            <span class="results"><span class="base"><span class="phrase haf">run for the hills</span></span> <span class="pos">idiom</span> </span>

      
        
        1544
        +                                        </a>

      
        
        1545
        +                                    </li>

      
        
        1546
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1547
        +                                        <a title="shirk" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/shirk?topic=avoiding-action ">

      
        
        1548
        +                                            <span class="results"><span class="base"><span class="hw haf">shirk</span></span></span>

      
        
        1549
        +                                        </a>

      
        
        1550
        +                                    </li>

      
        
        1551
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1552
        +                                        <a title="short circuit" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/short-circuit?topic=avoiding-action ">

      
        
        1553
        +                                            <span class="results"><span class="base"><span class="hw haf">short circuit</span></span></span>

      
        
        1554
        +                                        </a>

      
        
        1555
        +                                    </li>

      
        
        1556
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1557
        +                                        <a title="shrink from something phrasal verb" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/shrink-from?topic=avoiding-action ">

      
        
        1558
        +                                            <span class="results"><span class="base"><span class="phrase haf">shrink from <span class="obj">something</span></span></span> <span class="pos">phrasal verb</span></span>

      
        
        1559
        +                                        </a>

      
        
        1560
        +                                    </li>

      
        
        1561
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1562
        +                                        <a title="shy away from something phrasal verb" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/shy-away-from?topic=avoiding-action ">

      
        
        1563
        +                                            <span class="results"><span class="base"><span class="phrase haf">shy away from <span class="obj">something</span></span></span> <span class="pos">phrasal verb</span></span>

      
        
        1564
        +                                        </a>

      
        
        1565
        +                                    </li>

      
        
        1566
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1567
        +                                        <a title="steer" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/steer?topic=avoiding-action ">

      
        
        1568
        +                                            <span class="results"><span class="base"><span class="hw haf">steer</span></span></span>

      
        
        1569
        +                                        </a>

      
        
        1570
        +                                    </li>

      
        
        1571
        +                                                            </ul>

      
        
        1572
        +

      
        
        1573
        +                                                            <a href="https://dictionary.cambridge.org/topics/doing-and-achieving/avoiding-action/" class="had tb" title="Words and phrases related to skip in the topic Avoiding action">See more results »</a>

      
        
        1574
        +                                                    </div>

      
        
        1575
        +

      
        
        1576
        +                                            </div>

      
        
        1577
        +                    </section>

      
        
        1578
        +            </amp-accordion>

      
        
        1579
        +        </div>

      
        
        1580
        +          <div class="pb-inline-sense"></div>

      
        
        1581
        +       </div>

      
        
        1582
        +

      
        
        1583
        +                                <div class="pr dsense "><div class="cid" id="cald4-1-6"></div> <h3 class="dsense_h"><span class="hw dsense_hw">skip</span> <span class="pos dsense_pos" title="A word that describes an action, condition or experience.">verb</span> <span class="guideword dsense_gw" title="Guide word: helps you find the right meaning when a word has more than one meaning">

      
        
        1584
        +            (<span>THROW</span>)

      
        
        1585
        +      </span></h3> <div class="sense-body dsense_b"><div class="def-block ddef_block " data-wl-senseid="ID_00029719_08">

      
        
        1586
        +                        <div class="dwl hax">

      
        
        1587
        +                            

      
        
        1588
        +         

      
        
        1589
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1590
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'ID_00029719_08', wotd: '    skip

      
        
        1591
        +' } }), sidebarWordList.open">

      
        
        1592
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1593
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1594
        +        </a>

      
        
        1595
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1596
        +                on="tap:amp-access.login-sign-in">

      
        
        1597
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1598
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1599
        +        </a>

      
        
        1600
        +        </div>

      
        
        1601
        +                <div class="ddef_h"><span class="def-info ddef-info">  <span class="gram dgram"><a href="/help/codes.html">[ <span class="gc dgc">T</span> ]</a></span> <span class="lab dlab"><span class="region dregion">US</span></span> <div class="lmt-10" ></div><span class="var dvar">(<span class="lab dlab"><span class="region dregion">UK</span></span> <span class="v dv lmr-0">skim</span>)</span></span> <div class="def ddef_d db">to <a class="query" href="https://dictionary.cambridge.org/dictionary/english/throw" title="throw" rel="">throw</a> a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/flat" title="flat" rel="">flat</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/stone" title="stone" rel="">stone</a> horizontally over <a class="query" href="https://dictionary.cambridge.org/dictionary/english/water" title="water" rel="">water</a> so that it <a class="query" href="https://dictionary.cambridge.org/dictionary/english/touch" title="touches" rel="">touches</a> and <a class="query" href="https://dictionary.cambridge.org/dictionary/english/rise" title="rises" rel="">rises</a> off the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/surface" title="surface" rel="">surface</a> several <a class="query" href="https://dictionary.cambridge.org/dictionary/english/times" title="times" rel="">times</a>: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="eg deg">We <a class="query" href="https://dictionary.cambridge.org/dictionary/english/watch" title="watched" rel="">watched</a> a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/child" title="child" rel="">child</a> skipping <a class="query" href="https://dictionary.cambridge.org/dictionary/english/stone" title="stones" rel="">stones</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/across" title="across" rel="">across</a> the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/lake" title="lake" rel="">lake</a>.</span></div> </div></div></div>         

      
        
        1602
        +        <div class="smartt daccord">

      
        
        1603
        +            <amp-accordion disable-session-states>

      
        
        1604
        +                    <section  >

      
        
        1605
        +                    <header class="ca_h daccord_h">

      
        
        1606
        +                        <i class="i i-plus ca_hi" aria-hidden="true"></i>

      
        
        1607
        +                        SMART Vocabulary: related words and phrases                    </header>

      
        
        1608
        +                    <div class="ca_b had daccord_b daccord_l">

      
        
        1609
        +                        <div class="daccord_lt">

      
        
        1610
        +                            <a href="https://dictionary.cambridge.org/topics/arriving-and-departing/movement-through-the-air/" title="Words and phrases related to skip in the topic Movement through the air">Movement through the air</a>

      
        
        1611
        +                        </div>

      
        
        1612
        +

      
        
        1613
        +                        <div class="daccord_lb">

      
        
        1614
        +                            

      
        
        1615
        +                            <ul class="hul-u hul-u0 hax lmb-10 lcs">

      
        
        1616
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1617
        +                                        <a title="aerodynamic" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/aerodynamic?topic=movement-through-the-air ">

      
        
        1618
        +                                            <span class="results"><span class="base"><span class="hw haf">aerodynamic</span></span></span>

      
        
        1619
        +                                        </a>

      
        
        1620
        +                                    </li>

      
        
        1621
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1622
        +                                        <a title="airborne" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/airborne?topic=movement-through-the-air ">

      
        
        1623
        +                                            <span class="results"><span class="base"><span class="hw haf">airborne</span></span></span>

      
        
        1624
        +                                        </a>

      
        
        1625
        +                                    </li>

      
        
        1626
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1627
        +                                        <a title="buoyantly" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/buoyantly?topic=movement-through-the-air ">

      
        
        1628
        +                                            <span class="results"><span class="base"><span class="hw haf">buoyantly</span></span></span>

      
        
        1629
        +                                        </a>

      
        
        1630
        +                                    </li>

      
        
        1631
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1632
        +                                        <a title="flight" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/flight?topic=movement-through-the-air ">

      
        
        1633
        +                                            <span class="results"><span class="base"><span class="hw haf">flight</span></span></span>

      
        
        1634
        +                                        </a>

      
        
        1635
        +                                    </li>

      
        
        1636
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1637
        +                                        <a title="flighted" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/flighted?topic=movement-through-the-air ">

      
        
        1638
        +                                            <span class="results"><span class="base"><span class="hw haf">flighted</span></span></span>

      
        
        1639
        +                                        </a>

      
        
        1640
        +                                    </li>

      
        
        1641
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1642
        +                                        <a title="flit" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/flit?topic=movement-through-the-air ">

      
        
        1643
        +                                            <span class="results"><span class="base"><span class="hw haf">flit</span></span></span>

      
        
        1644
        +                                        </a>

      
        
        1645
        +                                    </li>

      
        
        1646
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1647
        +                                        <a title="glide through something" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/glide-through?topic=movement-through-the-air ">

      
        
        1648
        +                                            <span class="results"><span class="base"><span class="hw haf">glide through <span class="obj">something</span></span></span></span>

      
        
        1649
        +                                        </a>

      
        
        1650
        +                                    </li>

      
        
        1651
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1652
        +                                        <a title="hang time" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/hang-time?topic=movement-through-the-air ">

      
        
        1653
        +                                            <span class="results"><span class="base"><span class="hw haf">hang time</span></span></span>

      
        
        1654
        +                                        </a>

      
        
        1655
        +                                    </li>

      
        
        1656
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1657
        +                                        <a title="lift" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/lift?topic=movement-through-the-air ">

      
        
        1658
        +                                            <span class="results"><span class="base"><span class="hw haf">lift</span></span></span>

      
        
        1659
        +                                        </a>

      
        
        1660
        +                                    </li>

      
        
        1661
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1662
        +                                        <a title="loop" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/loop?topic=movement-through-the-air ">

      
        
        1663
        +                                            <span class="results"><span class="base"><span class="hw haf">loop</span></span></span>

      
        
        1664
        +                                        </a>

      
        
        1665
        +                                    </li>

      
        
        1666
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1667
        +                                        <a title="parkour" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/parkour?topic=movement-through-the-air ">

      
        
        1668
        +                                            <span class="results"><span class="base"><span class="hw haf">parkour</span></span></span>

      
        
        1669
        +                                        </a>

      
        
        1670
        +                                    </li>

      
        
        1671
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1672
        +                                        <a title="skim" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/skim?topic=movement-through-the-air ">

      
        
        1673
        +                                            <span class="results"><span class="base"><span class="hw haf">skim</span></span></span>

      
        
        1674
        +                                        </a>

      
        
        1675
        +                                    </li>

      
        
        1676
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1677
        +                                        <a title="slingshot" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/slingshot?topic=movement-through-the-air ">

      
        
        1678
        +                                            <span class="results"><span class="base"><span class="hw haf">slingshot</span></span></span>

      
        
        1679
        +                                        </a>

      
        
        1680
        +                                    </li>

      
        
        1681
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1682
        +                                        <a title="smoothness" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/smoothness?topic=movement-through-the-air ">

      
        
        1683
        +                                            <span class="results"><span class="base"><span class="hw haf">smoothness</span></span></span>

      
        
        1684
        +                                        </a>

      
        
        1685
        +                                    </li>

      
        
        1686
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1687
        +                                        <a title="soaring" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/soaring?topic=movement-through-the-air ">

      
        
        1688
        +                                            <span class="results"><span class="base"><span class="hw haf">soaring</span></span></span>

      
        
        1689
        +                                        </a>

      
        
        1690
        +                                    </li>

      
        
        1691
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1692
        +                                        <a title="somersault" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/somersault?topic=movement-through-the-air ">

      
        
        1693
        +                                            <span class="results"><span class="base"><span class="hw haf">somersault</span></span></span>

      
        
        1694
        +                                        </a>

      
        
        1695
        +                                    </li>

      
        
        1696
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1697
        +                                        <a title="stunt" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/stunt?topic=movement-through-the-air ">

      
        
        1698
        +                                            <span class="results"><span class="base"><span class="hw haf">stunt</span></span></span>

      
        
        1699
        +                                        </a>

      
        
        1700
        +                                    </li>

      
        
        1701
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1702
        +                                        <a title="swish" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/swish?topic=movement-through-the-air ">

      
        
        1703
        +                                            <span class="results"><span class="base"><span class="hw haf">swish</span></span></span>

      
        
        1704
        +                                        </a>

      
        
        1705
        +                                    </li>

      
        
        1706
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1707
        +                                        <a title="wheel" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/wheel?topic=movement-through-the-air ">

      
        
        1708
        +                                            <span class="results"><span class="base"><span class="hw haf">wheel</span></span></span>

      
        
        1709
        +                                        </a>

      
        
        1710
        +                                    </li>

      
        
        1711
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1712
        +                                        <a title="wing" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/wing?topic=movement-through-the-air ">

      
        
        1713
        +                                            <span class="results"><span class="base"><span class="hw haf">wing</span></span></span>

      
        
        1714
        +                                        </a>

      
        
        1715
        +                                    </li>

      
        
        1716
        +                                                            </ul>

      
        
        1717
        +

      
        
        1718
        +                                                            <a href="https://dictionary.cambridge.org/topics/arriving-and-departing/movement-through-the-air/" class="had tb" title="Words and phrases related to skip in the topic Movement through the air">See more results »</a>

      
        
        1719
        +                                                    </div>

      
        
        1720
        +

      
        
        1721
        +                                            </div>

      
        
        1722
        +                    </section>

      
        
        1723
        +            </amp-accordion>

      
        
        1724
        +        </div>

      
        
        1725
        +          <div class="pb-inline-sense"></div>

      
        
        1726
        +                                                            <div id='ad_contentslot_2' class='am-default_moreslots contentslot'>

      
        
        1727
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_contentslot_2'); });</script>

      
        
        1728
        +        </div>

      
        
        1729
        +                             </div><div class="xref phrasal_verb hax dxref-w lmt-25 lmb-25"><h3 class="bb fs16 lp-10 lmb-0"><strong class="xref-title dxref-t">Phrasal verb</strong></h3><div class="hax lp-10 lb lb-cm lbt0"><div class="lcs">

      
        
        1730
        +

      
        
        1731
        +                <div class="item lc lc1 lpb-10 lpr-10" data-position="1"><a href="/dictionary/english/skip-out-on" title="meaning of skip out on someone/something" rel=""><span class="x-h dx-h">skip out on <span class="obj dobj">someone/something</span></span></a></div></div></div></div></div></div>

      
        
        1732
        +                

      
        
        1733
        +<div class="pr x lbb lb-cm">

      
        
        1734
        +    <div class="hfr lpb-2">

      
        
        1735
        +                    <div class="pr hdib i i-facebook lp-5 lmr-10">

      
        
        1736
        +            <a class="pa p0" onclick="sendGAEvent('share_this_entry', 'facebook')" target="_blank" rel="noopener" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fdictionary.cambridge.org%2Fdictionary%2Fenglish%2Fskip&t=" title="Share on Facebook"></a>

      
        
        1737
        +        </div>

      
        
        1738
        +        <div class="pr hdib i i-x lp-5 lmr-10">

      
        
        1739
        +            <a class="pa p0" onclick="sendGAEvent('share_this_entry', 'twitter')" target="_blank" rel="noopener" href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fdictionary.cambridge.org%2Fdictionary%2Fenglish%2Fskip&text=" title="Share on X"></a>

      
        
        1740
        +        </div>

      
        
        1741
        +        </div>

      
        
        1742
        +</div>

      
        
        1743
        +            <div class="pr entry-body__el"><div class="cid" id="cald4-2"></div><div class="pos-header dpos-h"><div class="di-title"><span class="headword hdb tw-bw dhw dpos-h_hw "><span class="hw dhw">skip</span></span></div><div class="posgram dpos-g hdib lmr-5"><span class="pos dpos" title="A word that refers to a person, place, idea, event or thing.">noun</span> <span class="gram dgram"><a href="/help/codes.html">[ <span class="gc dgc">C</span> ]</a></span></div> <div  ></div><span class="uk dpron-i "><span class="region dreg">uk</span><span class="daud">                    

      
        
        1744
        +    <audio class="hdn" preload="none" id="audio3" controlsList="nodownload">

      
        
        1745
        +        <div class="hdib" fallback>

      
        
        1746
        +            <p>Your browser doesn't support HTML5 audio</p>

      
        
        1747
        +        </div>

      
        
        1748
        +        <source type="audio/mpeg" src="/media/english/uk_pron/u/uks/ukski/ukskinl006.mp3"/>

      
        
        1749
        +        <source type="audio/ogg" src="/media/english/uk_pron_ogg/u/uks/ukski/ukskinl006.ogg"/>

      
        
        1750
        +    </audio>

      
        
        1751
        +        <div title="Listen to the British English pronunciation" class="i i-volume-up c_aud htc hdib hp hv-1 fon tcu tc-bd lmr-10 lpt-3 fs20 hv-3" onclick="audio3.load(); audio3.play();" role="button" tabindex="0"></div>

      
        
        1752
        +</span><span class="pron dpron">/<span class="ipa dipa lpr-2 lpl-1">skɪp</span>/</span></span> <span class="us dpron-i "><span class="region dreg">us</span><span class="daud">                    

      
        
        1753
        +    <audio class="hdn" preload="none" id="audio4" controlsList="nodownload">

      
        
        1754
        +        <div class="hdib" fallback>

      
        
        1755
        +            <p>Your browser doesn't support HTML5 audio</p>

      
        
        1756
        +        </div>

      
        
        1757
        +        <source type="audio/mpeg" src="/media/english/us_pron/s/ski/skip_/skip.mp3"/>

      
        
        1758
        +        <source type="audio/ogg" src="/media/english/us_pron_ogg/s/ski/skip_/skip.ogg"/>

      
        
        1759
        +    </audio>

      
        
        1760
        +        <div title="Listen to the American English pronunciation" class="i i-volume-up c_aud htc hdib hp hv-1 fon tcu tc-bd lmr-10 lpt-3 fs20 hv-3" onclick="audio4.load(); audio4.play();" role="button" tabindex="0"></div>

      
        
        1761
        +</span><span class="pron dpron">/<span class="ipa dipa lpr-2 lpl-1">skɪp</span>/</span></span></div><div class="pos-body">

      
        
        1762
        +

      
        
        1763
        +                                <div class="pr dsense "><div class="cid" id="cald4-2-1"></div> <h3 class="dsense_h"><span class="hw dsense_hw">skip</span> <span class="pos dsense_pos" title="A word that refers to a person, place, idea, event or thing.">noun</span> <span class="dgram">[C]</span> <span class="guideword dsense_gw" title="Guide word: helps you find the right meaning when a word has more than one meaning">

      
        
        1764
        +            (<span>CONTAINER</span>)

      
        
        1765
        +      </span></h3> <div class="sense-body dsense_b"><div class="def-block ddef_block " data-wl-senseid="ID_00029719_05">

      
        
        1766
        +                        <div class="dwl hax">

      
        
        1767
        +                            

      
        
        1768
        +         

      
        
        1769
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1770
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'ID_00029719_05', wotd: '    skip

      
        
        1771
        +' } }), sidebarWordList.open">

      
        
        1772
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1773
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1774
        +        </a>

      
        
        1775
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1776
        +                on="tap:amp-access.login-sign-in">

      
        
        1777
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1778
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1779
        +        </a>

      
        
        1780
        +        </div>

      
        
        1781
        +                <div class="hflxrev hdf-xs hdb-s hdf-l"><div class="hflx1"><div class="ddef_h"><span class="def-info ddef-info">  <span class="lab dlab"><span class="region dregion">UK</span></span></span> <div class="def ddef_d db">a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/large" title="large" rel="">large</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/metal" title="metal" rel="">metal</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/container" title="container" rel="">container</a> into which <a class="query" href="https://dictionary.cambridge.org/dictionary/english/people" title="people" rel="">people</a> put <a class="query" href="https://dictionary.cambridge.org/dictionary/english/unwanted" title="unwanted" rel="">unwanted</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/object" title="objects" rel="">objects</a> or <a class="query" href="https://dictionary.cambridge.org/dictionary/english/building" title="building" rel="">building</a> or <a class="query" href="https://dictionary.cambridge.org/dictionary/english/garden" title="garden" rel="">garden</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/waste" title="waste" rel="">waste</a>, and which is <a class="query" href="https://dictionary.cambridge.org/dictionary/english/brought" title="brought" rel="">brought</a> to and taken away from a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/place" title="place" rel="">place</a> by a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/special" title="special" rel="">special</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/truck" title="truck" rel="">truck</a> when <a class="query" href="https://dictionary.cambridge.org/dictionary/english/people" title="people" rel="">people</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/ask" title="ask" rel="">ask</a> for it</div> </div><div class="def-body ddef_b"> <div class="xref compare hax dxref-w "><strong class="xref-title dxref-t">Compare</strong><div class="lcs lmt-10 lmb-20">

      
        
        1782
        +

      
        
        1783
        +                <div class="item lc lc1 lpb-10 lpr-10" data-position="1"><a href="/dictionary/english/dumpster" title="meaning of Dumpster"><span class="x-h dx-h">Dumpster</span></a></div></div></div> </div></div>

      
        
        1784
        +                <div class="dimg"><amp-state id="stateEntryImageID_00029719_05"><script type="application/json">

      
        
        1785
        +                { "src": "/images/thumb/skip_noun_002_34069.jpg?version=6.0.78" }

      
        
        1786
        +                </script></amp-state><amp-img class="dimg_i hp" src="/images/thumb/skip_noun_002_34069.jpg?version=6.0.78" width="200.0" height="133.0" title="picture of skip" alt="picture of skip" [src]="stateEntryImageID_00029719_05.src" aria-describedby="entryImgID_00029719_05" role="button" tabindex="0" on="tap:AMP.setState({ stateEntryImageID_00029719_05: { src: '/images/full/skip_noun_002_34069.jpg?version=6.0.78' } }),lightbox-entry">

      
        
        1787
        +                 

      
        
        1788
        +            </amp-img><div class="dimg_c" id="entryImgID_00029719_05">nicolamargaret/E+/GettyImages</div></div></div></div></div>         

      
        
        1789
        +        <div class="smartt daccord">

      
        
        1790
        +            <amp-accordion disable-session-states>

      
        
        1791
        +                    <section  >

      
        
        1792
        +                    <header class="ca_h daccord_h">

      
        
        1793
        +                        <i class="i i-plus ca_hi" aria-hidden="true"></i>

      
        
        1794
        +                        SMART Vocabulary: related words and phrases                    </header>

      
        
        1795
        +                    <div class="ca_b had daccord_b daccord_l">

      
        
        1796
        +                        <div class="daccord_lt">

      
        
        1797
        +                            <a href="https://dictionary.cambridge.org/topics/containers-and-vessels/containers-for-waste/" title="Words and phrases related to skip in the topic Containers for waste">Containers for waste</a>

      
        
        1798
        +                        </div>

      
        
        1799
        +

      
        
        1800
        +                        <div class="daccord_lb">

      
        
        1801
        +                            

      
        
        1802
        +                            <ul class="hul-u hul-u0 hax lmb-10 lcs">

      
        
        1803
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1804
        +                                        <a title="ashcan" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/ashcan?topic=containers-for-waste ">

      
        
        1805
        +                                            <span class="results"><span class="base"><span class="hw haf">ashcan</span></span></span>

      
        
        1806
        +                                        </a>

      
        
        1807
        +                                    </li>

      
        
        1808
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1809
        +                                        <a title="bin" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/bin?topic=containers-for-waste ">

      
        
        1810
        +                                            <span class="results"><span class="base"><span class="hw haf">bin</span></span></span>

      
        
        1811
        +                                        </a>

      
        
        1812
        +                                    </li>

      
        
        1813
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1814
        +                                        <a title="bin bag" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/bin-bag?topic=containers-for-waste ">

      
        
        1815
        +                                            <span class="results"><span class="base"><span class="hw haf">bin bag</span></span></span>

      
        
        1816
        +                                        </a>

      
        
        1817
        +                                    </li>

      
        
        1818
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1819
        +                                        <a title="bin liner" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/bin-liner?topic=containers-for-waste ">

      
        
        1820
        +                                            <span class="results"><span class="base"><span class="hw haf">bin liner</span></span></span>

      
        
        1821
        +                                        </a>

      
        
        1822
        +                                    </li>

      
        
        1823
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1824
        +                                        <a title="black bag" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/black-bag?topic=containers-for-waste ">

      
        
        1825
        +                                            <span class="results"><span class="base"><span class="hw haf">black bag</span></span></span>

      
        
        1826
        +                                        </a>

      
        
        1827
        +                                    </li>

      
        
        1828
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1829
        +                                        <a title="chemical toilet" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/chemical-toilet?topic=containers-for-waste ">

      
        
        1830
        +                                            <span class="results"><span class="base"><span class="hw haf">chemical toilet</span></span></span>

      
        
        1831
        +                                        </a>

      
        
        1832
        +                                    </li>

      
        
        1833
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1834
        +                                        <a title="Dumpster" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/dumpster?topic=containers-for-waste ">

      
        
        1835
        +                                            <span class="results"><span class="base"><span class="hw haf">Dumpster</span></span></span>

      
        
        1836
        +                                        </a>

      
        
        1837
        +                                    </li>

      
        
        1838
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1839
        +                                        <a title="dustbin" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/dustbin?topic=containers-for-waste ">

      
        
        1840
        +                                            <span class="results"><span class="base"><span class="hw haf">dustbin</span></span></span>

      
        
        1841
        +                                        </a>

      
        
        1842
        +                                    </li>

      
        
        1843
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1844
        +                                        <a title="dustbin bag" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/dustbin-bag?topic=containers-for-waste ">

      
        
        1845
        +                                            <span class="results"><span class="base"><span class="hw haf">dustbin bag</span></span></span>

      
        
        1846
        +                                        </a>

      
        
        1847
        +                                    </li>

      
        
        1848
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1849
        +                                        <a title="garbage bag" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/garbage-bag?topic=containers-for-waste ">

      
        
        1850
        +                                            <span class="results"><span class="base"><span class="hw haf">garbage bag</span></span></span>

      
        
        1851
        +                                        </a>

      
        
        1852
        +                                    </li>

      
        
        1853
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1854
        +                                        <a title="honey bucket" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/honey-bucket?topic=containers-for-waste ">

      
        
        1855
        +                                            <span class="results"><span class="base"><span class="hw haf">honey bucket</span></span></span>

      
        
        1856
        +                                        </a>

      
        
        1857
        +                                    </li>

      
        
        1858
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1859
        +                                        <a title="litter bin" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/litter-bin?topic=containers-for-waste ">

      
        
        1860
        +                                            <span class="results"><span class="base"><span class="hw haf">litter bin</span></span></span>

      
        
        1861
        +                                        </a>

      
        
        1862
        +                                    </li>

      
        
        1863
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1864
        +                                        <a title="litter box" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/litter-box?topic=containers-for-waste ">

      
        
        1865
        +                                            <span class="results"><span class="base"><span class="hw haf">litter box</span></span></span>

      
        
        1866
        +                                        </a>

      
        
        1867
        +                                    </li>

      
        
        1868
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1869
        +                                        <a title="litter tray" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/litter-tray?topic=containers-for-waste ">

      
        
        1870
        +                                            <span class="results"><span class="base"><span class="hw haf">litter tray</span></span></span>

      
        
        1871
        +                                        </a>

      
        
        1872
        +                                    </li>

      
        
        1873
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1874
        +                                        <a title="trash bag" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/trash-bag?topic=containers-for-waste ">

      
        
        1875
        +                                            <span class="results"><span class="base"><span class="hw haf">trash bag</span></span></span>

      
        
        1876
        +                                        </a>

      
        
        1877
        +                                    </li>

      
        
        1878
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1879
        +                                        <a title="trash can liner" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/trash-can-liner?topic=containers-for-waste ">

      
        
        1880
        +                                            <span class="results"><span class="base"><span class="hw haf">trash can liner</span></span></span>

      
        
        1881
        +                                        </a>

      
        
        1882
        +                                    </li>

      
        
        1883
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1884
        +                                        <a title="waste bin" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/waste-bin?topic=containers-for-waste ">

      
        
        1885
        +                                            <span class="results"><span class="base"><span class="hw haf">waste bin</span></span></span>

      
        
        1886
        +                                        </a>

      
        
        1887
        +                                    </li>

      
        
        1888
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1889
        +                                        <a title="wastebasket" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/wastebasket?topic=containers-for-waste ">

      
        
        1890
        +                                            <span class="results"><span class="base"><span class="hw haf">wastebasket</span></span></span>

      
        
        1891
        +                                        </a>

      
        
        1892
        +                                    </li>

      
        
        1893
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1894
        +                                        <a title="wastepaper basket" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/wastepaper-basket?topic=containers-for-waste ">

      
        
        1895
        +                                            <span class="results"><span class="base"><span class="hw haf">wastepaper basket</span></span></span>

      
        
        1896
        +                                        </a>

      
        
        1897
        +                                    </li>

      
        
        1898
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1899
        +                                        <a title="wheelie bin" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/wheelie-bin?topic=containers-for-waste ">

      
        
        1900
        +                                            <span class="results"><span class="base"><span class="hw haf">wheelie bin</span></span></span>

      
        
        1901
        +                                        </a>

      
        
        1902
        +                                    </li>

      
        
        1903
        +                                                            </ul>

      
        
        1904
        +

      
        
        1905
        +                                                            <a href="https://dictionary.cambridge.org/topics/containers-and-vessels/containers-for-waste/" class="had tb" title="Words and phrases related to skip in the topic Containers for waste">See more results »</a>

      
        
        1906
        +                                                    </div>

      
        
        1907
        +

      
        
        1908
        +                                            </div>

      
        
        1909
        +                    </section>

      
        
        1910
        +            </amp-accordion>

      
        
        1911
        +        </div>

      
        
        1912
        +          <div class="pb-inline-sense"></div>

      
        
        1913
        +             </div>

      
        
        1914
        +

      
        
        1915
        +                                <div class="pr dsense "><div class="cid" id="cald4-2-2"></div> <h3 class="dsense_h"><span class="hw dsense_hw">skip</span> <span class="pos dsense_pos" title="A word that refers to a person, place, idea, event or thing.">noun</span> <span class="dgram">[C]</span> <span class="guideword dsense_gw" title="Guide word: helps you find the right meaning when a word has more than one meaning">

      
        
        1916
        +            (<span>MOVE</span>)

      
        
        1917
        +      </span></h3> <div class="sense-body dsense_b"><div class="def-block ddef_block " data-wl-senseid="ID_00029719_06">

      
        
        1918
        +                        <div class="dwl hax">

      
        
        1919
        +                            

      
        
        1920
        +         

      
        
        1921
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1922
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'ID_00029719_06', wotd: '    skip

      
        
        1923
        +' } }), sidebarWordList.open">

      
        
        1924
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1925
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1926
        +        </a>

      
        
        1927
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        1928
        +                on="tap:amp-access.login-sign-in">

      
        
        1929
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        1930
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        1931
        +        </a>

      
        
        1932
        +        </div>

      
        
        1933
        +                <div class="ddef_h"><span class="def-info ddef-info">  </span><div class="def ddef_d db">a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/small" title="small" rel="">small</a>, <a class="query" href="https://dictionary.cambridge.org/dictionary/english/light" title="light" rel="">light</a>, <a class="query" href="https://dictionary.cambridge.org/dictionary/english/dancing" title="dancing" rel="">dancing</a> or <a class="query" href="https://dictionary.cambridge.org/dictionary/english/jump" title="jumping" rel="">jumping</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/step" title="step" rel="">step</a>: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="eg deg">She gave a little skip of <a class="query" href="https://dictionary.cambridge.org/dictionary/english/joy" title="joy" rel="">joy</a>.</span></div> </div></div></div>         

      
        
        1934
        +        <div class="smartt daccord">

      
        
        1935
        +            <amp-accordion disable-session-states>

      
        
        1936
        +                    <section  >

      
        
        1937
        +                    <header class="ca_h daccord_h">

      
        
        1938
        +                        <i class="i i-plus ca_hi" aria-hidden="true"></i>

      
        
        1939
        +                        SMART Vocabulary: related words and phrases                    </header>

      
        
        1940
        +                    <div class="ca_b had daccord_b daccord_l">

      
        
        1941
        +                        <div class="daccord_lt">

      
        
        1942
        +                            <a href="https://dictionary.cambridge.org/topics/moving-up-or-down/jumping/" title="Words and phrases related to skip in the topic Jumping">Jumping</a>

      
        
        1943
        +                        </div>

      
        
        1944
        +

      
        
        1945
        +                        <div class="daccord_lb">

      
        
        1946
        +                            

      
        
        1947
        +                            <ul class="hul-u hul-u0 hax lmb-10 lcs">

      
        
        1948
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1949
        +                                        <a title="a hop, skip, and a jump idiom" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/hop-skip-and-a-jump?topic=jumping ">

      
        
        1950
        +                                            <span class="results"><span class="base"><span class="phrase haf">a hop, skip, and a jump</span></span> <span class="pos">idiom</span> </span>

      
        
        1951
        +                                        </a>

      
        
        1952
        +                                    </li>

      
        
        1953
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1954
        +                                        <a title="bound" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/bound?topic=jumping ">

      
        
        1955
        +                                            <span class="results"><span class="base"><span class="hw haf">bound</span></span></span>

      
        
        1956
        +                                        </a>

      
        
        1957
        +                                    </li>

      
        
        1958
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1959
        +                                        <a title="bunny hop" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/bunny-hop?topic=jumping ">

      
        
        1960
        +                                            <span class="results"><span class="base"><span class="hw haf">bunny hop</span></span></span>

      
        
        1961
        +                                        </a>

      
        
        1962
        +                                    </li>

      
        
        1963
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1964
        +                                        <a title="cannonball" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/cannonball?topic=jumping ">

      
        
        1965
        +                                            <span class="results"><span class="base"><span class="hw haf">cannonball</span></span></span>

      
        
        1966
        +                                        </a>

      
        
        1967
        +                                    </li>

      
        
        1968
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1969
        +                                        <a title="caper" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/caper?topic=jumping ">

      
        
        1970
        +                                            <span class="results"><span class="base"><span class="hw haf">caper</span></span></span>

      
        
        1971
        +                                        </a>

      
        
        1972
        +                                    </li>

      
        
        1973
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1974
        +                                        <a title="clear a hurdle" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/clear-a-hurdle?topic=jumping ">

      
        
        1975
        +                                            <span class="results"><span class="base"><span class="hw haf">clear a hurdle</span></span></span>

      
        
        1976
        +                                        </a>

      
        
        1977
        +                                    </li>

      
        
        1978
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1979
        +                                        <a title="frisk" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/frisk?topic=jumping ">

      
        
        1980
        +                                            <span class="results"><span class="base"><span class="hw haf">frisk</span></span></span>

      
        
        1981
        +                                        </a>

      
        
        1982
        +                                    </li>

      
        
        1983
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1984
        +                                        <a title="hop" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/hop?topic=jumping ">

      
        
        1985
        +                                            <span class="results"><span class="base"><span class="hw haf">hop</span></span></span>

      
        
        1986
        +                                        </a>

      
        
        1987
        +                                    </li>

      
        
        1988
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1989
        +                                        <a title="hurdle" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/hurdle?topic=jumping ">

      
        
        1990
        +                                            <span class="results"><span class="base"><span class="hw haf">hurdle</span></span></span>

      
        
        1991
        +                                        </a>

      
        
        1992
        +                                    </li>

      
        
        1993
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1994
        +                                        <a title="jump" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/jump?topic=jumping ">

      
        
        1995
        +                                            <span class="results"><span class="base"><span class="hw haf">jump</span></span></span>

      
        
        1996
        +                                        </a>

      
        
        1997
        +                                    </li>

      
        
        1998
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        1999
        +                                        <a title="jump up and down" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/jump-up-and-down?topic=jumping ">

      
        
        2000
        +                                            <span class="results"><span class="base"><span class="hw haf">jump up and down</span></span></span>

      
        
        2001
        +                                        </a>

      
        
        2002
        +                                    </li>

      
        
        2003
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2004
        +                                        <a title="launch" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/launch?topic=jumping ">

      
        
        2005
        +                                            <span class="results"><span class="base"><span class="hw haf">launch</span></span></span>

      
        
        2006
        +                                        </a>

      
        
        2007
        +                                    </li>

      
        
        2008
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2009
        +                                        <a title="leap" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/leap?topic=jumping ">

      
        
        2010
        +                                            <span class="results"><span class="base"><span class="hw haf">leap</span></span></span>

      
        
        2011
        +                                        </a>

      
        
        2012
        +                                    </li>

      
        
        2013
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2014
        +                                        <a title="leaper" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/leaper?topic=jumping ">

      
        
        2015
        +                                            <span class="results"><span class="base"><span class="hw haf">leaper</span></span></span>

      
        
        2016
        +                                        </a>

      
        
        2017
        +                                    </li>

      
        
        2018
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2019
        +                                        <a title="outjump" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/outjump?topic=jumping ">

      
        
        2020
        +                                            <span class="results"><span class="base"><span class="hw haf">outjump</span></span></span>

      
        
        2021
        +                                        </a>

      
        
        2022
        +                                    </li>

      
        
        2023
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2024
        +                                        <a title="outleap" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/outleap?topic=jumping ">

      
        
        2025
        +                                            <span class="results"><span class="base"><span class="hw haf">outleap</span></span></span>

      
        
        2026
        +                                        </a>

      
        
        2027
        +                                    </li>

      
        
        2028
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2029
        +                                        <a title="pile" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/pile?topic=jumping ">

      
        
        2030
        +                                            <span class="results"><span class="base"><span class="hw haf">pile</span></span></span>

      
        
        2031
        +                                        </a>

      
        
        2032
        +                                    </li>

      
        
        2033
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2034
        +                                        <a title="pogo" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/pogo?topic=jumping ">

      
        
        2035
        +                                            <span class="results"><span class="base"><span class="hw haf">pogo</span></span></span>

      
        
        2036
        +                                        </a>

      
        
        2037
        +                                    </li>

      
        
        2038
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2039
        +                                        <a title="pounce" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/pounce?topic=jumping ">

      
        
        2040
        +                                            <span class="results"><span class="base"><span class="hw haf">pounce</span></span></span>

      
        
        2041
        +                                        </a>

      
        
        2042
        +                                    </li>

      
        
        2043
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2044
        +                                        <a title="triple" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/triple?topic=jumping ">

      
        
        2045
        +                                            <span class="results"><span class="base"><span class="hw haf">triple</span></span></span>

      
        
        2046
        +                                        </a>

      
        
        2047
        +                                    </li>

      
        
        2048
        +                                                            </ul>

      
        
        2049
        +

      
        
        2050
        +                                                            <a href="https://dictionary.cambridge.org/topics/moving-up-or-down/jumping/" class="had tb" title="Words and phrases related to skip in the topic Jumping">See more results »</a>

      
        
        2051
        +                                                    </div>

      
        
        2052
        +

      
        
        2053
        +                                            </div>

      
        
        2054
        +                    </section>

      
        
        2055
        +            </amp-accordion>

      
        
        2056
        +        </div>

      
        
        2057
        +          <div class="pb-inline-sense"></div>

      
        
        2058
        +       </div>

      
        
        2059
        +

      
        
        2060
        +                                                <div class="pr dsense "><div class="cid" id="cald4-2-3"></div> <h3 class="dsense_h"><span class="hw dsense_hw">skip</span> <span class="pos dsense_pos" title="A word that refers to a person, place, idea, event or thing.">noun</span> <span class="dgram">[C]</span> <span class="guideword dsense_gw" title="Guide word: helps you find the right meaning when a word has more than one meaning">

      
        
        2061
        +            (<span>PERSON</span>)

      
        
        2062
        +      </span></h3> <div class="sense-body dsense_b"><div class="def-block ddef_block " data-wl-senseid="ID_00029719_10">

      
        
        2063
        +                        <div class="dwl hax">

      
        
        2064
        +                            

      
        
        2065
        +         

      
        
        2066
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        2067
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'ID_00029719_10', wotd: '    skip

      
        
        2068
        +' } }), sidebarWordList.open">

      
        
        2069
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        2070
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        2071
        +        </a>

      
        
        2072
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        2073
        +                on="tap:amp-access.login-sign-in">

      
        
        2074
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        2075
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        2076
        +        </a>

      
        
        2077
        +        </div>

      
        
        2078
        +                <div class="ddef_h"><span class="def-info ddef-info">  <span class="lab dlab"><span class="region dregion">US</span> <span class="usage dusage">informal</span></span></span> <div class="def ddef_d db">a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/person" title="person" rel="">person</a> who has <a class="query" href="https://dictionary.cambridge.org/dictionary/english/disappear" title="disappeared" rel="">disappeared</a>, <a class="query" href="https://dictionary.cambridge.org/dictionary/english/especially" title="especially" rel="">especially</a> someone who <a class="query" href="https://dictionary.cambridge.org/dictionary/english/owe" title="owes" rel="">owes</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/money" title="money" rel="">money</a>: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="eg deg">In this <a class="query" href="https://dictionary.cambridge.org/dictionary/english/case" title="case" rel="">case</a>, the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/bounty" title="bounty" rel="">bounty</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/hunter" title="hunters" rel="">hunters</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/claim" title="claimed" rel="">claimed</a> that they were <a class="query" href="https://dictionary.cambridge.org/dictionary/english/pursue" title="pursuing" rel="">pursuing</a> a skip but had <a class="query" href="https://dictionary.cambridge.org/dictionary/english/accidentally" title="accidentally" rel="">accidentally</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/raid" title="raided" rel="">raided</a> the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/wrong" title="wrong" rel="">wrong</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/address" title="address" rel="">address</a>.</span></div> </div></div><div class="def-block ddef_block " data-wl-senseid="ID_00029719_11">

      
        
        2079
        +                        <div class="dwl hax">

      
        
        2080
        +                            

      
        
        2081
        +         

      
        
        2082
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        2083
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'ID_00029719_11', wotd: '    skip

      
        
        2084
        +' } }), sidebarWordList.open">

      
        
        2085
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        2086
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        2087
        +        </a>

      
        
        2088
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        2089
        +                on="tap:amp-access.login-sign-in">

      
        
        2090
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        2091
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        2092
        +        </a>

      
        
        2093
        +        </div>

      
        
        2094
        +                <div class="ddef_h"><span class="def-info ddef-info">  <span class="lab dlab"><span class="usage dusage">informal</span></span></span> <div class="def ddef_d db">the <span class="nondv-xref dnondv-xref"><a class="query" href="https://dictionary.cambridge.org/dictionary/english/captain" title="captain" rel="">captain</a></span> <span class="gloss dgloss">(= <a class="query" href="https://dictionary.cambridge.org/dictionary/english/head" title="head" rel="">head</a>)</span> of a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/sports" title="sports" rel="">sports</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/team" title="team" rel="">team</a>, <a class="query" href="https://dictionary.cambridge.org/dictionary/english/especially" title="especially" rel="">especially</a> in <span class="nondv-xref dnondv-xref"><a class="query" href="https://dictionary.cambridge.org/dictionary/english/curling" title="curling" rel="">curling</a></span><span class="gloss dgloss"> (= a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/game" title="game" rel="">game</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/play" title="played" rel="">played</a> on <a class="query" href="https://dictionary.cambridge.org/dictionary/english/ice" title="ice" rel="">ice</a>)</span> and <span class="nondv-xref dnondv-xref"><a class="query" href="https://dictionary.cambridge.org/dictionary/english/bowl" title="bowls" rel="">bowls</a></span><span class="gloss dgloss"> (= a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/game" title="game" rel="">game</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/play" title="played" rel="">played</a> on <a class="query" href="https://dictionary.cambridge.org/dictionary/english/grass" title="grass" rel="">grass</a>)</span>: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="eg deg">Her <a class="query" href="https://dictionary.cambridge.org/dictionary/english/selection" title="selection" rel="">selection</a> as skip of the women's <a class="query" href="https://dictionary.cambridge.org/dictionary/english/team" title="team" rel="">team</a> came as no <a class="query" href="https://dictionary.cambridge.org/dictionary/english/surprise" title="surprise" rel="">surprise</a> to those in the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/sport" title="sport" rel="">sport</a>. </span></div><div class="examp dexamp"><span class="eg deg">She was <a class="query" href="https://dictionary.cambridge.org/dictionary/english/name" title="named" rel="">named</a> skip of the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/bowling" title="bowling" rel="">bowling</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/four" title="fours" rel="">fours</a>.</span></div><div class="examp dexamp"> <span class="eg deg">Skip, are you <a class="query" href="https://dictionary.cambridge.org/dictionary/english/sure" title="sure" rel="">sure</a> this is the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/right" title="right" rel="">right</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/decision" title="decision" rel="">decision</a>?</span></div> <div class="xref synonym hax dxref-w lmt-25"><strong class="xref-title dxref-t">Synonym</strong><div class="lcs lmt-10 lmb-20">

      
        
        2095
        +

      
        
        2096
        +                <div class="item lc lc1 lpb-10 lpr-10" data-position="1"><a href="/dictionary/english/skipper" title="meaning of skipper" rel=""><span class="x-h dx-h">skipper</span></a></div></div></div> </div></div></div>         

      
        
        2097
        +        <div class="smartt daccord">

      
        
        2098
        +            <amp-accordion disable-session-states>

      
        
        2099
        +                    <section  >

      
        
        2100
        +                    <header class="ca_h daccord_h">

      
        
        2101
        +                        <i class="i i-plus ca_hi" aria-hidden="true"></i>

      
        
        2102
        +                        SMART Vocabulary: related words and phrases                    </header>

      
        
        2103
        +                    <div class="ca_b had daccord_b daccord_l">

      
        
        2104
        +                        <div class="daccord_lt">

      
        
        2105
        +                            <a href="https://dictionary.cambridge.org/topics/arriving-and-departing/runaways-and-refugees/" title="Words and phrases related to skip in the topic Runaways and refugees">Runaways and refugees</a>

      
        
        2106
        +                        </div>

      
        
        2107
        +

      
        
        2108
        +                        <div class="daccord_lb">

      
        
        2109
        +                            

      
        
        2110
        +                            <ul class="hul-u hul-u0 hax lmb-10 lcs">

      
        
        2111
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2112
        +                                        <a title="absconder" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/absconder?topic=runaways-and-refugees ">

      
        
        2113
        +                                            <span class="results"><span class="base"><span class="hw haf">absconder</span></span></span>

      
        
        2114
        +                                        </a>

      
        
        2115
        +                                    </li>

      
        
        2116
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2117
        +                                        <a title="boat people" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/boat-people?topic=runaways-and-refugees ">

      
        
        2118
        +                                            <span class="results"><span class="base"><span class="hw haf">boat people</span></span></span>

      
        
        2119
        +                                        </a>

      
        
        2120
        +                                    </li>

      
        
        2121
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2122
        +                                        <a title="coyote" class="topic_0  odd " href=" https://dictionary.cambridge.org/dictionary/english/coyote?topic=runaways-and-refugees ">

      
        
        2123
        +                                            <span class="results"><span class="base"><span class="hw haf">coyote</span></span></span>

      
        
        2124
        +                                        </a>

      
        
        2125
        +                                    </li>

      
        
        2126
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2127
        +                                        <a title="defector" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/defector?topic=runaways-and-refugees ">

      
        
        2128
        +                                            <span class="results"><span class="base"><span class="hw haf">defector</span></span></span>

      
        
        2129
        +                                        </a>

      
        
        2130
        +                                    </li>

      
        
        2131
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2132
        +                                        <a title="deserter" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/deserter?topic=runaways-and-refugees ">

      
        
        2133
        +                                            <span class="results"><span class="base"><span class="hw haf">deserter</span></span></span>

      
        
        2134
        +                                        </a>

      
        
        2135
        +                                    </li>

      
        
        2136
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2137
        +                                        <a title="displace" class="topic_0  even " href=" https://dictionary.cambridge.org/dictionary/english/displace?topic=runaways-and-refugees ">

      
        
        2138
        +                                            <span class="results"><span class="base"><span class="hw haf">displace</span></span></span>

      
        
        2139
        +                                        </a>

      
        
        2140
        +                                    </li>

      
        
        2141
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2142
        +                                        <a title="displaced person" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/displaced-person?topic=runaways-and-refugees ">

      
        
        2143
        +                                            <span class="results"><span class="base"><span class="hw haf">displaced person</span></span></span>

      
        
        2144
        +                                        </a>

      
        
        2145
        +                                    </li>

      
        
        2146
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2147
        +                                        <a title="escapee" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/escapee?topic=runaways-and-refugees ">

      
        
        2148
        +                                            <span class="results"><span class="base"><span class="hw haf">escapee</span></span></span>

      
        
        2149
        +                                        </a>

      
        
        2150
        +                                    </li>

      
        
        2151
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2152
        +                                        <a title="evacuee" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/evacuee?topic=runaways-and-refugees ">

      
        
        2153
        +                                            <span class="results"><span class="base"><span class="hw haf">evacuee</span></span></span>

      
        
        2154
        +                                        </a>

      
        
        2155
        +                                    </li>

      
        
        2156
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2157
        +                                        <a title="evader" class="topic_1  even " href=" https://dictionary.cambridge.org/dictionary/english/evader?topic=runaways-and-refugees ">

      
        
        2158
        +                                            <span class="results"><span class="base"><span class="hw haf">evader</span></span></span>

      
        
        2159
        +                                        </a>

      
        
        2160
        +                                    </li>

      
        
        2161
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2162
        +                                        <a title="fugitive" class="topic_1  odd " href=" https://dictionary.cambridge.org/dictionary/english/fugitive?topic=runaways-and-refugees ">

      
        
        2163
        +                                            <span class="results"><span class="base"><span class="hw haf">fugitive</span></span></span>

      
        
        2164
        +                                        </a>

      
        
        2165
        +                                    </li>

      
        
        2166
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2167
        +                                        <a title="non-refoulement" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/non-refoulement?topic=runaways-and-refugees ">

      
        
        2168
        +                                            <span class="results"><span class="base"><span class="hw haf">non-refoulement</span></span></span>

      
        
        2169
        +                                        </a>

      
        
        2170
        +                                    </li>

      
        
        2171
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2172
        +                                        <a title="political asylum" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/political-asylum?topic=runaways-and-refugees ">

      
        
        2173
        +                                            <span class="results"><span class="base"><span class="hw haf">political asylum</span></span></span>

      
        
        2174
        +                                        </a>

      
        
        2175
        +                                    </li>

      
        
        2176
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2177
        +                                        <a title="refoul" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/refoul?topic=runaways-and-refugees ">

      
        
        2178
        +                                            <span class="results"><span class="base"><span class="hw haf">refoul</span></span></span>

      
        
        2179
        +                                        </a>

      
        
        2180
        +                                    </li>

      
        
        2181
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2182
        +                                        <a title="refoulement" class="topic_2  odd " href=" https://dictionary.cambridge.org/dictionary/english/refoulement?topic=runaways-and-refugees ">

      
        
        2183
        +                                            <span class="results"><span class="base"><span class="hw haf">refoulement</span></span></span>

      
        
        2184
        +                                        </a>

      
        
        2185
        +                                    </li>

      
        
        2186
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2187
        +                                        <a title="refugee" class="topic_2  even " href=" https://dictionary.cambridge.org/dictionary/english/refugee?topic=runaways-and-refugees ">

      
        
        2188
        +                                            <span class="results"><span class="base"><span class="hw haf">refugee</span></span></span>

      
        
        2189
        +                                        </a>

      
        
        2190
        +                                    </li>

      
        
        2191
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2192
        +                                        <a title="runaway" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/runaway?topic=runaways-and-refugees ">

      
        
        2193
        +                                            <span class="results"><span class="base"><span class="hw haf">runaway</span></span></span>

      
        
        2194
        +                                        </a>

      
        
        2195
        +                                    </li>

      
        
        2196
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2197
        +                                        <a title="transit camp" class="topic_3  even " href=" https://dictionary.cambridge.org/dictionary/english/transit-camp?topic=runaways-and-refugees ">

      
        
        2198
        +                                            <span class="results"><span class="base"><span class="hw haf">transit camp</span></span></span>

      
        
        2199
        +                                        </a>

      
        
        2200
        +                                    </li>

      
        
        2201
        +                                                                    <li class="lc lc1 lc-xs6-12 lpb-5 lpr-10">

      
        
        2202
        +                                        <a title="UNHCR" class="topic_3  odd " href=" https://dictionary.cambridge.org/dictionary/english/unhcr?topic=runaways-and-refugees ">

      
        
        2203
        +                                            <span class="results"><span class="base"><span class="hw haf">UNHCR</span></span></span>

      
        
        2204
        +                                        </a>

      
        
        2205
        +                                    </li>

      
        
        2206
        +                                                            </ul>

      
        
        2207
        +

      
        
        2208
        +                                                            <a href="https://dictionary.cambridge.org/topics/arriving-and-departing/runaways-and-refugees/" class="had tb" title="Words and phrases related to skip in the topic Runaways and refugees">See more results »</a>

      
        
        2209
        +                                                    </div>

      
        
        2210
        +

      
        
        2211
        +                                                <div class="lmt-20">

      
        
        2212
        +                            <p>You can also find related words, phrases, and synonyms in the topics:</p>

      
        
        2213
        +                            <div>

      
        
        2214
        +                                                                                                <div class="lmb-5">

      
        
        2215
        +                                        <a href="https://dictionary.cambridge.org/topics/sports/competitors-and-participants-in-sports-and-games/" class="tb" title="Words and phrases related to skip in the topic Competitors &amp; participants in sports &amp; games">Competitors & participants in sports & games</a>

      
        
        2216
        +                                    </div>

      
        
        2217
        +                                                                                                                                <div class="lmb-5">

      
        
        2218
        +                                        <a href="https://dictionary.cambridge.org/topics/sports/bowls-bowling-and-croquet/" class="tb" title="Words and phrases related to skip in the topic Bowls, bowling &amp; croquet">Bowls, bowling & croquet</a>

      
        
        2219
        +                                    </div>

      
        
        2220
        +                                                                                        </div>

      
        
        2221
        +                        </div>

      
        
        2222
        +                                            </div>

      
        
        2223
        +                    </section>

      
        
        2224
        +            </amp-accordion>

      
        
        2225
        +        </div>

      
        
        2226
        +          <div class="pb-inline-sense"></div>

      
        
        2227
        +                                                            <div id='ad_contentslot_3' class='am-default_moreslots contentslot'>

      
        
        2228
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_contentslot_3'); });</script>

      
        
        2229
        +        </div>

      
        
        2230
        +                                   </div></div></div></div></div></div>

      
        
        2231
        +            </div></div><small class="lbt lb-cm lpb-10 lpt-10 lpb-25 lmb-10 ddef had hdb">

      
        
        2232
        +                                     (Definition of <b>skip</b> from the <a href="https://dictionary.cambridge.org/dictionary/english/" title="Cambridge Advanced Learner&apos;s Dictionary & Thesaurus" class="a--rev"><b>Cambridge Advanced Learner&apos;s Dictionary & Thesaurus</b></a> © Cambridge University Press)

      
        
        2233
        +                          </small></div><div class="pr dictionary" data-type="sorted" data-id="cacd" data-tab="ds-cacd" role="tabpanel"><div class="cid" id="dataset_cacd"></div><div class="link"><div class="pr di superentry" itemprop="text"><div class="cid" id="dataset_cacd"></div>                <div class="di-head c_h di_h"><div class="di-title di_t"><h2 class="c_hh"><b  class='tb ttn'>skip</b> | American Dictionary</h2></div></div>

      
        
        2234
        +                            <div class="di-body"><div class="entry"><div class="entry-body"> <div class="pr entry-body__el"><div class="cid" id="cacd-1"></div><div class="pos-header dpos-h"><div class="di-title"><span class="headword hdb tw-bw dhw dpos-h_hw "><span class="hw dhw">skip</span></span></div><div class="posgram dpos-g hdib lmr-5"><span class="pos dpos" title="A word that describes an action, condition or experience.">verb</span></div> <div  ></div><span class="us dpron-i "><span class="region dreg">us</span><span class="daud">                    

      
        
        2235
        +    <audio class="hdn" preload="none" id="audio5" controlsList="nodownload">

      
        
        2236
        +        <div class="hdib" fallback>

      
        
        2237
        +            <p>Your browser doesn't support HTML5 audio</p>

      
        
        2238
        +        </div>

      
        
        2239
        +        <source type="audio/mpeg" src="/media/english/us_pron/s/ski/skip_/skip.mp3"/>

      
        
        2240
        +        <source type="audio/ogg" src="/media/english/us_pron_ogg/s/ski/skip_/skip.ogg"/>

      
        
        2241
        +    </audio>

      
        
        2242
        +        <div title="Listen to the American English pronunciation" class="i i-volume-up c_aud htc hdib hp hv-1 fon tcu tc-bd lmr-10 lpt-3 fs20 hv-3" onclick="audio5.load(); audio5.play();" role="button" tabindex="0"></div>

      
        
        2243
        +</span><span class="pron dpron">/<span class="ipa dipa lpr-2 lpl-1">skɪp</span>/</span></span></div><div class="pos-body">

      
        
        2244
        +

      
        
        2245
        +                        <div class="pr dsense "><div class="cid" id="cacd-1-1"></div> <h3 class="dsense_h"><span class="hw dsense_hw">skip</span> <span class="pos dsense_pos" title="A word that describes an action, condition or experience.">verb</span> <span class="guideword dsense_gw" title="Guide word: helps you find the right meaning when a word has more than one meaning">

      
        
        2246
        +            (<span>MOVE</span>)

      
        
        2247
        +      </span></h3> <div class="sense-body dsense_b"><div class="def-block ddef_block " data-wl-senseid="CACD_00016455_01">

      
        
        2248
        +                        <div class="dwl hax">

      
        
        2249
        +                            

      
        
        2250
        +         

      
        
        2251
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        2252
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'CACD_00016455_01', wotd: '    skip

      
        
        2253
        +' } }), sidebarWordList.open">

      
        
        2254
        +            <span class='tb fs10 hvm'>Add to word list</span>

      
        
        2255
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        2256
        +        </a>

      
        
        2257
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        2258
        +                on="tap:amp-access.login-sign-in">

      
        
        2259
        +            <span class='tb fs10 hvm'>Add to word list</span>

      
        
        2260
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        2261
        +        </a>

      
        
        2262
        +        </div>

      
        
        2263
        +                <div class="ddef_h"><span class="def-info ddef-info">  <span class="gram dgram"><a href="/help/codes.html">[ <span class="gc dgc">I</span> ]</a></span> <span class="irreg-infls dinfls "><span class="inf-group dinfg "><b class="inf dinf">-pp-</b></span></span></span> <div class="def ddef_d db">to <a class="query" href="https://dictionary.cambridge.org/dictionary/english/move" title="move" rel="">move</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/lightly" title="lightly" rel="">lightly</a> and <a class="query" href="https://dictionary.cambridge.org/dictionary/english/quick" title="quickly" rel="">quickly</a>, <a class="query" href="https://dictionary.cambridge.org/dictionary/english/esp" title="esp" rel="">esp</a>. with <a class="query" href="https://dictionary.cambridge.org/dictionary/english/small" title="small" rel="">small</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/dancing" title="dancing" rel="">dancing</a> or <a class="query" href="https://dictionary.cambridge.org/dictionary/english/jump" title="jumping" rel="">jumping</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/step" title="steps" rel="">steps</a>: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="eg deg">He skipped off to <a class="query" href="https://dictionary.cambridge.org/dictionary/english/school" title="school" rel="">school</a>.</span></div> </div></div></div>           <div class="pb-inline-sense"></div>

      
        
        2264
        +       </div>

      
        
        2265
        +

      
        
        2266
        +                        <div class="pr dsense "><div class="cid" id="cacd-1-2"></div> <h3 class="dsense_h"><span class="hw dsense_hw">skip</span> <span class="pos dsense_pos" title="A word that describes an action, condition or experience.">verb</span> <span class="guideword dsense_gw" title="Guide word: helps you find the right meaning when a word has more than one meaning">

      
        
        2267
        +            (<span>LEAVE</span>)

      
        
        2268
        +      </span></h3> <div class="sense-body dsense_b"><div class="def-block ddef_block " data-wl-senseid="CACD_00016455_02">

      
        
        2269
        +                        <div class="dwl hax">

      
        
        2270
        +                            

      
        
        2271
        +         

      
        
        2272
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        2273
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'CACD_00016455_02', wotd: '    skip

      
        
        2274
        +' } }), sidebarWordList.open">

      
        
        2275
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        2276
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        2277
        +        </a>

      
        
        2278
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        2279
        +                on="tap:amp-access.login-sign-in">

      
        
        2280
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        2281
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        2282
        +        </a>

      
        
        2283
        +        </div>

      
        
        2284
        +                <div class="ddef_h"><span class="def-info ddef-info">  <span class="gram dgram"><a href="/help/codes.html">[ <span class="gc dgc">I/T</span> ]</a></span> <span class="lab dlab"><span class="usage dusage">infml</span></span> <span class="irreg-infls dinfls "><span class="inf-group dinfg "><b class="inf dinf">-pp-</b></span></span></span> <div class="def ddef_d db">to <a class="query" href="https://dictionary.cambridge.org/dictionary/english/leave" title="leave" rel="">leave</a> a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/place" title="place" rel="">place</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/quick" title="quickly" rel="">quickly</a>: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="gram dgram"><a href="/help/codes.html">[ <span class="gc dgc">T</span> ]</a></span> <span class="eg deg"><a class="query" href="https://dictionary.cambridge.org/dictionary/english/mark" title="Mark" rel="">Mark</a> took the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/money" title="money" rel="">money</a> and then skipped <a class="query" href="https://dictionary.cambridge.org/dictionary/english/town" title="town" rel="">town</a>.</span></div> </div></div></div>           <div class="pb-inline-sense"></div>

      
        
        2285
        +       </div>

      
        
        2286
        +

      
        
        2287
        +                        <div class="pr dsense "><div class="cid" id="cacd-1-3"></div> <h3 class="dsense_h"><span class="hw dsense_hw">skip</span> <span class="pos dsense_pos" title="A word that describes an action, condition or experience.">verb</span> <span class="guideword dsense_gw" title="Guide word: helps you find the right meaning when a word has more than one meaning">

      
        
        2288
        +            (<span>AVOID</span>)

      
        
        2289
        +      </span></h3> <div class="sense-body dsense_b"><div class="def-block ddef_block " data-wl-senseid="CACD_00016455_03">

      
        
        2290
        +                        <div class="dwl hax">

      
        
        2291
        +                            

      
        
        2292
        +         

      
        
        2293
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        2294
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'CACD_00016455_03', wotd: '    skip

      
        
        2295
        +' } }), sidebarWordList.open">

      
        
        2296
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        2297
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        2298
        +        </a>

      
        
        2299
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        2300
        +                on="tap:amp-access.login-sign-in">

      
        
        2301
        +            <i class='i i-plus' aria-hidden='true'></i>

      
        
        2302
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        2303
        +        </a>

      
        
        2304
        +        </div>

      
        
        2305
        +                <div class="ddef_h"><span class="def-info ddef-info">  <span class="gram dgram"><a href="/help/codes.html">[ <span class="gc dgc">T</span> ]</a></span></span> <div class="def ddef_d db">to not do or have something; <a class="query" href="https://dictionary.cambridge.org/dictionary/english/avoid" title="avoid" rel="">avoid</a>: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="eg deg">Martin skipped fifth <a class="query" href="https://dictionary.cambridge.org/dictionary/english/grade" title="grade" rel="">grade</a>.</span></div><div class="examp dexamp"> <span class="eg deg">I skipped <a class="query" href="https://dictionary.cambridge.org/dictionary/english/lunch" title="lunch" rel="">lunch</a> today.</span></div> </div></div></div>           <div class="pb-inline-sense"></div>

      
        
        2306
        +                                                            <div id='ad_contentslot_4' class='am-default_moreslots contentslot'>

      
        
        2307
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_contentslot_4'); });</script>

      
        
        2308
        +        </div>

      
        
        2309
        +                                   </div><div class="xref phrasal_verbs hax dxref-w lmt-25 lmb-25"><h3 class="bb fs16 lp-10 lmb-0"><strong class="xref-title dxref-t">Phrasal verbs</strong></h3><div class="hax lp-10 lb lb-cm lbt0"><div class="lcs">

      
        
        2310
        +

      
        
        2311
        +                <div class="item lc lc1 lpb-10 lpr-10" data-position="1"><a href="/dictionary/english/skip-out-on" title="meaning of skip out (on something/someone)" rel=""><span class="x-h dx-h">skip out (on <span class="obj dobj">something/someone)</span></span></a></div>

      
        
        2312
        +

      
        
        2313
        +                <div class="item lc lc1 lpb-10 lpr-10" data-position="2"><a href="/dictionary/english/skip-over" title="meaning of skip over something" rel=""><span class="x-h dx-h">skip over <span class="obj dobj">something</span></span></a></div></div></div></div></div></div></div></div></div>

      
        
        2314
        +            </div></div><small class="lbt lb-cm lpb-10 lpt-10 lpb-25 lmb-10 ddef had hdb">

      
        
        2315
        +                                     (Definition of <b>skip</b> from the <a href="https://dictionary.cambridge.org/dictionary/english/" title="Cambridge Academic Content Dictionary" class="a--rev"><b>Cambridge Academic Content Dictionary</b></a> © Cambridge University Press)

      
        
        2316
        +                          </small></div><div class="pr dictionary" data-type="sorted" data-id="cbed" data-tab="ds-cbed" role="tabpanel"><div class="cid" id="dataset_cbed"></div><div class="link"><div class="pr di superentry" itemprop="text"><div class="cid" id="dataset_cbed"></div>                <div class="di-head c_h di_h"><div class="di-title di_t"><h2 class="c_hh"><b  class='tb ttn'>skip</b> | Business English</h2></div></div>

      
        
        2317
        +                            <div class="di-body"><div class="entry"><div class="entry-body"> <div class="pr entry-body__el"><div class="cid" id="cbed-1"></div><div class="pos-header dpos-h"><div class="di-title"><span class="headword hdb tw-bw dhw dpos-h_hw "><span class="hw dhw">skip</span></span></div><div class="posgram dpos-g hdib lmr-5"><span class="pos dpos" title="A word that refers to a person, place, idea, event or thing.">noun</span> <span class="gram dgram"><a href="/help/codes.html">[ <span class="gc dgc">C</span> ]</a></span></div> <span class="lml--5">

      
        
        2318
        +                <span class="ddivide ">&#160;</span>            </span><span class="domain ddomain">TRANSPORT</span>

      
        
        2319
        +            <span class="ddivide ">&#160;</span>         <span class="lab dlab"><span class="region dregion">UK</span></span> <div  ></div><span class="uk dpron-i "><span class="region dreg">uk</span><span class="daud">                    

      
        
        2320
        +    <audio class="hdn" preload="none" id="audio6" controlsList="nodownload">

      
        
        2321
        +        <div class="hdib" fallback>

      
        
        2322
        +            <p>Your browser doesn't support HTML5 audio</p>

      
        
        2323
        +        </div>

      
        
        2324
        +        <source type="audio/mpeg" src="/media/english/uk_pron/u/uks/ukski/ukskinl006.mp3"/>

      
        
        2325
        +        <source type="audio/ogg" src="/media/english/uk_pron_ogg/u/uks/ukski/ukskinl006.ogg"/>

      
        
        2326
        +    </audio>

      
        
        2327
        +        <div title="Listen to the British English pronunciation" class="i i-volume-up c_aud htc hdib hp hv-1 fon tcu tc-bd lmr-10 lpt-3 fs20 hv-3" onclick="audio6.load(); audio6.play();" role="button" tabindex="0"></div>

      
        
        2328
        +</span><span class="pron dpron">/<span class="ipa dipa lpr-2 lpl-1">skɪp</span>/</span></span> <span class="us dpron-i "><span class="region dreg">us</span><span class="daud">                    

      
        
        2329
        +    <audio class="hdn" preload="none" id="audio7" controlsList="nodownload">

      
        
        2330
        +        <div class="hdib" fallback>

      
        
        2331
        +            <p>Your browser doesn't support HTML5 audio</p>

      
        
        2332
        +        </div>

      
        
        2333
        +        <source type="audio/mpeg" src="/media/english/us_pron/s/ski/skip_/skip.mp3"/>

      
        
        2334
        +        <source type="audio/ogg" src="/media/english/us_pron_ogg/s/ski/skip_/skip.ogg"/>

      
        
        2335
        +    </audio>

      
        
        2336
        +        <div title="Listen to the American English pronunciation" class="i i-volume-up c_aud htc hdib hp hv-1 fon tcu tc-bd lmr-10 lpt-3 fs20 hv-3" onclick="audio7.load(); audio7.play();" role="button" tabindex="0"></div>

      
        
        2337
        +</span></span><div class="lmt--5" ></div><span class="var dvar">(<span class="lab dlab"><span class="region dregion">US</span></span> <span class="v dv lmr-0">Dumpster</span>)</span></div><div class="pos-body">

      
        
        2338
        +

      
        
        2339
        +                        <div class="pr dsense dsense-noh"><div class="cid" id="cbed-1-1"></div> <div class="sense-body dsense_b"><div class="def-block ddef_block " data-wl-senseid="CBED_00015922_01">

      
        
        2340
        +                        <div class="dwl hax">

      
        
        2341
        +                            

      
        
        2342
        +         

      
        
        2343
        +        <a amp-access="loggedIn" amp-access-hide class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        2344
        +                on="tap:AMP.setState({ stateGlobal: { wlSenseId: 'CBED_00015922_01', wotd: '    skip

      
        
        2345
        +' } }), sidebarWordList.open">

      
        
        2346
        +            <span class='tb fs10 hvm'>Add to word list</span>

      
        
        2347
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        2348
        +        </a>

      
        
        2349
        +        <a amp-access="NOT loggedIn" class="dwla wordlist-add-button" title="Add this meaning to a word list"

      
        
        2350
        +                on="tap:amp-access.login-sign-in">

      
        
        2351
        +            <span class='tb fs10 hvm'>Add to word list</span>

      
        
        2352
        +            <i class="i i-list-ul" aria-hidden="true"></i>

      
        
        2353
        +        </a>

      
        
        2354
        +        </div>

      
        
        2355
        +                <div class="ddef_h"><span class="def-info ddef-info">  </span><div class="def ddef_d db">a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/large" title="large" rel="">large</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/metal" title="metal" rel="">metal</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/container" title="container" rel="">container</a> used for getting <a class="query" href="https://dictionary.cambridge.org/dictionary/english/rid" title="rid" rel="">rid</a> of <a class="query" href="https://dictionary.cambridge.org/dictionary/english/rubbish" title="rubbish" rel="">rubbish</a>, <a class="query" href="https://dictionary.cambridge.org/dictionary/english/old" title="old" rel="">old</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/building" title="building" rel="">building</a> <a class="query" href="https://dictionary.cambridge.org/dictionary/english/material" title="materials" rel="">materials</a>, etc. Skips are <a class="query" href="https://dictionary.cambridge.org/dictionary/english/removed" title="removed" rel="">removed</a> using a <a class="query" href="https://dictionary.cambridge.org/dictionary/english/truck" title="truck" rel="">truck</a>: </div> </div><div class="def-body ddef_b"><div class="examp dexamp"><span class="eg deg">Most of the <a class="query" href="https://dictionary.cambridge.org/dictionary/english/waste" title="waste" rel="">waste</a> was <strong class="cl"><a class="query" href="https://dictionary.cambridge.org/dictionary/english/thrown" title="thrown" rel="">thrown</a> into a skip</strong>.</span></div> </div></div></div>           <div class="pb-inline-sense"></div>

      
        
        2356
        +             </div></div></div></div></div></div>

      
        
        2357
        +            </div></div><small class="lbt lb-cm lpb-10 lpt-10 lpb-25 lmb-10 ddef had hdb">

      
        
        2358
        +                                     (Definition of <b>skip</b> from the <a href="https://dictionary.cambridge.org/dictionary/english/" title="Cambridge Business English Dictionary" class="a--rev"><b>Cambridge Business English Dictionary</b></a> © Cambridge University Press)

      
        
        2359
        +                          </small></div>          

      
        
        2360
        +                  <div class="dataset dd pr lmb-20" data-type="sorted" data-id="examples" data-tab="ds-examples" role="tabpanel"><div class="cid" id="dataset_examples"></div>                         <div id="dataset-example" data-tab="ds-example" role="tabpanel">

      
        
        2361
        +                <div class="c_h">

      
        
        2362
        +              <h2 class="c_hh">Examples <span class="tcl">of </span><span class="tb tci">skip</span></h2></div>

      
        
        2363
        +

      
        
        2364
        +<div class="lp-10">

      
        
        2365
        +    <div class="h2 dhw dpos-h_hw  lpt-5 lpb-10">

      
        
        2366
        +        skip

      
        
        2367
        +    </div>

      
        
        2368
        +

      
        
        2369
        +    

      
        
        2370
        +    

      
        
        2371
        +    <div class="degs had lbt lb-cm">

      
        
        2372
        +        

      
        
        2373
        +                            <div class="lbb lb-cm lpt-10">

      
        
        2374
        +

      
        
        2375
        +                                            <span class="deg">

      
        
        2376
        +                            In our study, readers skipped 31% of predictable words compared with 22% of the unpredictable words.

      
        
        2377
        +                        </span>

      
        
        2378
        +                                        <div class="dsource lpr-20 pr">

      
        
        2379
        +                                    From the <a  href=https://www.cambridge.org/gb/cambridgeenglish/better-learning-insights/corpus  class='italic' target='_blank' rel='noopener'>Cambridge English Corpus</a>                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="11831998" data-dataset-id="11666238" role="button"

      
        
        2380
        +    aria-label="Tell us what you think"

      
        
        2381
        +    title="Tell us what you think"

      
        
        2382
        +    tabindex="0"

      
        
        2383
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '11831998', dataset_id: '11666238' } }),sidebarEntryTellUs.open"

      
        
        2384
        +>

      
        
        2385
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        2386
        +                        </a>

      
        
        2387
        +                    </div>

      
        
        2388
        +                </div>

      
        
        2389
        +                    

      
        
        2390
        +                            <div class="lbb lb-cm lpt-10">

      
        
        2391
        +

      
        
        2392
        +                                            <span class="deg">

      
        
        2393
        +                            Some readers may thus choose to <em>skip</em> the section on growth altogether.

      
        
        2394
        +                        </span>

      
        
        2395
        +                                        <div class="dsource lpr-20 pr">

      
        
        2396
        +                                    From the <a  href=https://www.cambridge.org/gb/cambridgeenglish/better-learning-insights/corpus  class='italic' target='_blank' rel='noopener'>Cambridge English Corpus</a>                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="11831999" data-dataset-id="11666238" role="button"

      
        
        2397
        +    aria-label="Tell us what you think"

      
        
        2398
        +    title="Tell us what you think"

      
        
        2399
        +    tabindex="0"

      
        
        2400
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '11831999', dataset_id: '11666238' } }),sidebarEntryTellUs.open"

      
        
        2401
        +>

      
        
        2402
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        2403
        +                        </a>

      
        
        2404
        +                    </div>

      
        
        2405
        +                </div>

      
        
        2406
        +                    

      
        
        2407
        +                            <div class="lbb lb-cm lpt-10">

      
        
        2408
        +

      
        
        2409
        +                                            <span class="deg">

      
        
        2410
        +                            Again we <em>skip</em> the details of the proof, which is straightforward but notationally heavy.

      
        
        2411
        +                        </span>

      
        
        2412
        +                                        <div class="dsource lpr-20 pr">

      
        
        2413
        +                                    From the <a  href=https://www.cambridge.org/gb/cambridgeenglish/better-learning-insights/corpus  class='italic' target='_blank' rel='noopener'>Cambridge English Corpus</a>                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="11832000" data-dataset-id="11666238" role="button"

      
        
        2414
        +    aria-label="Tell us what you think"

      
        
        2415
        +    title="Tell us what you think"

      
        
        2416
        +    tabindex="0"

      
        
        2417
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '11832000', dataset_id: '11666238' } }),sidebarEntryTellUs.open"

      
        
        2418
        +>

      
        
        2419
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        2420
        +                        </a>

      
        
        2421
        +                    </div>

      
        
        2422
        +                </div>

      
        
        2423
        +                    

      
        
        2424
        +                            <div class="lbb lb-cm lpt-10">

      
        
        2425
        +

      
        
        2426
        +                                            <span class="deg">

      
        
        2427
        +                            Methodologically, analyzing the data by age at assessment would help circumvent, at least in part, the limitation of skipping certain years in data collection.

      
        
        2428
        +                        </span>

      
        
        2429
        +                                        <div class="dsource lpr-20 pr">

      
        
        2430
        +                                    From the <a  href=https://www.cambridge.org/gb/cambridgeenglish/better-learning-insights/corpus  class='italic' target='_blank' rel='noopener'>Cambridge English Corpus</a>                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="11832001" data-dataset-id="11666238" role="button"

      
        
        2431
        +    aria-label="Tell us what you think"

      
        
        2432
        +    title="Tell us what you think"

      
        
        2433
        +    tabindex="0"

      
        
        2434
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '11832001', dataset_id: '11666238' } }),sidebarEntryTellUs.open"

      
        
        2435
        +>

      
        
        2436
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        2437
        +                        </a>

      
        
        2438
        +                    </div>

      
        
        2439
        +                </div>

      
        
        2440
        +                    

      
        
        2441
        +                            <div class="lbb lb-cm lpt-10">

      
        
        2442
        +

      
        
        2443
        +                                            <span class="deg">

      
        
        2444
        +                            We <em>skip</em> such technical considerations and concentrate on the economic reasons behind the dynamics.

      
        
        2445
        +                        </span>

      
        
        2446
        +                                        <div class="dsource lpr-20 pr">

      
        
        2447
        +                                    From the <a  href=https://www.cambridge.org/gb/cambridgeenglish/better-learning-insights/corpus  class='italic' target='_blank' rel='noopener'>Cambridge English Corpus</a>                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="11832002" data-dataset-id="11666238" role="button"

      
        
        2448
        +    aria-label="Tell us what you think"

      
        
        2449
        +    title="Tell us what you think"

      
        
        2450
        +    tabindex="0"

      
        
        2451
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '11832002', dataset_id: '11666238' } }),sidebarEntryTellUs.open"

      
        
        2452
        +>

      
        
        2453
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        2454
        +                        </a>

      
        
        2455
        +                    </div>

      
        
        2456
        +                </div>

      
        
        2457
        +                    

      
        
        2458
        +                            <div class="lbb lb-cm lpt-10">

      
        
        2459
        +

      
        
        2460
        +                                            <span class="deg">

      
        
        2461
        +                            Readers familiar with type theory may <em>skip</em> this section.

      
        
        2462
        +                        </span>

      
        
        2463
        +                                        <div class="dsource lpr-20 pr">

      
        
        2464
        +                                    From the <a  href=https://www.cambridge.org/gb/cambridgeenglish/better-learning-insights/corpus  class='italic' target='_blank' rel='noopener'>Cambridge English Corpus</a>                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="11832005" data-dataset-id="11666238" role="button"

      
        
        2465
        +    aria-label="Tell us what you think"

      
        
        2466
        +    title="Tell us what you think"

      
        
        2467
        +    tabindex="0"

      
        
        2468
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '11832005', dataset_id: '11666238' } }),sidebarEntryTellUs.open"

      
        
        2469
        +>

      
        
        2470
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        2471
        +                        </a>

      
        
        2472
        +                    </div>

      
        
        2473
        +                </div>

      
        
        2474
        +                    

      
        
        2475
        +                            <div class="lbb lb-cm lpt-10">

      
        
        2476
        +

      
        
        2477
        +                                            <span class="deg">

      
        
        2478
        +                            Of course, not everyone had access to such powerful patrons, so it is no surprise that only the most famous musicians could <em>skip</em> the broker.

      
        
        2479
        +                        </span>

      
        
        2480
        +                                        <div class="dsource lpr-20 pr">

      
        
        2481
        +                                    From the <a  href=https://www.cambridge.org/gb/cambridgeenglish/better-learning-insights/corpus  class='italic' target='_blank' rel='noopener'>Cambridge English Corpus</a>                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="11832006" data-dataset-id="11666238" role="button"

      
        
        2482
        +    aria-label="Tell us what you think"

      
        
        2483
        +    title="Tell us what you think"

      
        
        2484
        +    tabindex="0"

      
        
        2485
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '11832006', dataset_id: '11666238' } }),sidebarEntryTellUs.open"

      
        
        2486
        +>

      
        
        2487
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        2488
        +                        </a>

      
        
        2489
        +                    </div>

      
        
        2490
        +                </div>

      
        
        2491
        +                    

      
        
        2492
        +                            <div class="lbb lb-cm lpt-10">

      
        
        2493
        +

      
        
        2494
        +                                            <span class="deg">

      
        
        2495
        +                            We'll <em>skip</em> this for now, as two of the slub interfaces will be described in detail later in this section.

      
        
        2496
        +                        </span>

      
        
        2497
        +                                        <div class="dsource lpr-20 pr">

      
        
        2498
        +                                    From the <a  href=https://www.cambridge.org/gb/cambridgeenglish/better-learning-insights/corpus  class='italic' target='_blank' rel='noopener'>Cambridge English Corpus</a>                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="11832007" data-dataset-id="11666238" role="button"

      
        
        2499
        +    aria-label="Tell us what you think"

      
        
        2500
        +    title="Tell us what you think"

      
        
        2501
        +    tabindex="0"

      
        
        2502
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '11832007', dataset_id: '11666238' } }),sidebarEntryTellUs.open"

      
        
        2503
        +>

      
        
        2504
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        2505
        +                        </a>

      
        
        2506
        +                    </div>

      
        
        2507
        +                </div>

      
        
        2508
        +                    

      
        
        2509
        +                            <div class="lbb lb-cm lpt-10">

      
        
        2510
        +

      
        
        2511
        +                                            <span class="deg">

      
        
        2512
        +                            On first reading it is advisable to <em>skip</em> to section 6 which shows the rules in action.

      
        
        2513
        +                        </span>

      
        
        2514
        +                                        <div class="dsource lpr-20 pr">

      
        
        2515
        +                                    From the <a  href=https://www.cambridge.org/gb/cambridgeenglish/better-learning-insights/corpus  class='italic' target='_blank' rel='noopener'>Cambridge English Corpus</a>                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="11832008" data-dataset-id="11666238" role="button"

      
        
        2516
        +    aria-label="Tell us what you think"

      
        
        2517
        +    title="Tell us what you think"

      
        
        2518
        +    tabindex="0"

      
        
        2519
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '11832008', dataset_id: '11666238' } }),sidebarEntryTellUs.open"

      
        
        2520
        +>

      
        
        2521
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        2522
        +                        </a>

      
        
        2523
        +                    </div>

      
        
        2524
        +                </div>

      
        
        2525
        +                    

      
        
        2526
        +                            <div class="lbb lb-cm lpt-10">

      
        
        2527
        +

      
        
        2528
        +                                            <span class="deg">

      
        
        2529
        +                            Many readers may <em>skip</em> this chapter without loss of continuity.

      
        
        2530
        +                        </span>

      
        
        2531
        +                                        <div class="dsource lpr-20 pr">

      
        
        2532
        +                                    From the <a  href=https://www.cambridge.org/gb/cambridgeenglish/better-learning-insights/corpus  class='italic' target='_blank' rel='noopener'>Cambridge English Corpus</a>                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="11832009" data-dataset-id="11666238" role="button"

      
        
        2533
        +    aria-label="Tell us what you think"

      
        
        2534
        +    title="Tell us what you think"

      
        
        2535
        +    tabindex="0"

      
        
        2536
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '11832009', dataset_id: '11666238' } }),sidebarEntryTellUs.open"

      
        
        2537
        +>

      
        
        2538
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        2539
        +                        </a>

      
        
        2540
        +                    </div>

      
        
        2541
        +                </div>

      
        
        2542
        +                    

      
        
        2543
        +                            <div class="lbb lb-cm lpt-10">

      
        
        2544
        +

      
        
        2545
        +                                            <span class="deg">

      
        
        2546
        +                            Significantly, regressive nasalisation does not target or <em>skip</em> these vowels.

      
        
        2547
        +                        </span>

      
        
        2548
        +                                        <div class="dsource lpr-20 pr">

      
        
        2549
        +                                    From the <a  href=https://www.cambridge.org/gb/cambridgeenglish/better-learning-insights/corpus  class='italic' target='_blank' rel='noopener'>Cambridge English Corpus</a>                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="11832010" data-dataset-id="11666238" role="button"

      
        
        2550
        +    aria-label="Tell us what you think"

      
        
        2551
        +    title="Tell us what you think"

      
        
        2552
        +    tabindex="0"

      
        
        2553
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '11832010', dataset_id: '11666238' } }),sidebarEntryTellUs.open"

      
        
        2554
        +>

      
        
        2555
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        2556
        +                        </a>

      
        
        2557
        +                    </div>

      
        
        2558
        +                </div>

      
        
        2559
        +                    

      
        
        2560
        +                            <div class="lbb lb-cm lpt-10">

      
        
        2561
        +

      
        
        2562
        +                                            <span class="deg">

      
        
        2563
        +                            Newspapers can afford to offer stories with limited appeal, since uninterested consumers can simply <em>skip</em> them.

      
        
        2564
        +                        </span>

      
        
        2565
        +                                        <div class="dsource lpr-20 pr">

      
        
        2566
        +                                    From the <a  href=https://www.cambridge.org/gb/cambridgeenglish/better-learning-insights/corpus  class='italic' target='_blank' rel='noopener'>Cambridge English Corpus</a>                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="11832012" data-dataset-id="11666238" role="button"

      
        
        2567
        +    aria-label="Tell us what you think"

      
        
        2568
        +    title="Tell us what you think"

      
        
        2569
        +    tabindex="0"

      
        
        2570
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '11832012', dataset_id: '11666238' } }),sidebarEntryTellUs.open"

      
        
        2571
        +>

      
        
        2572
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        2573
        +                        </a>

      
        
        2574
        +                    </div>

      
        
        2575
        +                </div>

      
        
        2576
        +                    

      
        
        2577
        +                            <div class="lbb lb-cm lpt-10">

      
        
        2578
        +

      
        
        2579
        +                                            <span class="deg">

      
        
        2580
        +                            With categorical constraints, if the final foot is skipped, then stress appears on the initial foot instead.

      
        
        2581
        +                        </span>

      
        
        2582
        +                                        <div class="dsource lpr-20 pr">

      
        
        2583
        +                                    From the <a  href=https://www.cambridge.org/gb/cambridgeenglish/better-learning-insights/corpus  class='italic' target='_blank' rel='noopener'>Cambridge English Corpus</a>                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="11832013" data-dataset-id="11666238" role="button"

      
        
        2584
        +    aria-label="Tell us what you think"

      
        
        2585
        +    title="Tell us what you think"

      
        
        2586
        +    tabindex="0"

      
        
        2587
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '11832013', dataset_id: '11666238' } }),sidebarEntryTellUs.open"

      
        
        2588
        +>

      
        
        2589
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        2590
        +                        </a>

      
        
        2591
        +                    </div>

      
        
        2592
        +                </div>

      
        
        2593
        +                    

      
        
        2594
        +                            <div class="lbb lb-cm lpt-10">

      
        
        2595
        +

      
        
        2596
        +                                            <span class="deg">

      
        
        2597
        +                            We will <em>skip</em> the technical details of the solution and proceed to evaluate condition (28).

      
        
        2598
        +                        </span>

      
        
        2599
        +                                        <div class="dsource lpr-20 pr">

      
        
        2600
        +                                    From the <a  href=https://www.cambridge.org/gb/cambridgeenglish/better-learning-insights/corpus  class='italic' target='_blank' rel='noopener'>Cambridge English Corpus</a>                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="11832014" data-dataset-id="11666238" role="button"

      
        
        2601
        +    aria-label="Tell us what you think"

      
        
        2602
        +    title="Tell us what you think"

      
        
        2603
        +    tabindex="0"

      
        
        2604
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '11832014', dataset_id: '11666238' } }),sidebarEntryTellUs.open"

      
        
        2605
        +>

      
        
        2606
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        2607
        +                        </a>

      
        
        2608
        +                    </div>

      
        
        2609
        +                </div>

      
        
        2610
        +                    

      
        
        2611
        +                            <div class="lbb lb-cm lpt-10">

      
        
        2612
        +

      
        
        2613
        +                                            <span class="deg">

      
        
        2614
        +                            If the arguments are in the table, then the call is skipped and the result is returned.

      
        
        2615
        +                        </span>

      
        
        2616
        +                                        <div class="dsource lpr-20 pr">

      
        
        2617
        +                                    From the <a  href=https://www.cambridge.org/gb/cambridgeenglish/better-learning-insights/corpus  class='italic' target='_blank' rel='noopener'>Cambridge English Corpus</a>                            <a class="report-example-inappropriate pa pt0 pr0"     data-example-id="11832016" data-dataset-id="11666238" role="button"

      
        
        2618
        +    aria-label="Tell us what you think"

      
        
        2619
        +    title="Tell us what you think"

      
        
        2620
        +    tabindex="0"

      
        
        2621
        +    on="tap: formTellUs.clear,formTellUsDefinition.clear,AMP.setState({ stateSidebarEntryTellUs: { success: false, example_id: '11832016', dataset_id: '11666238' } }),sidebarEntryTellUs.open"

      
        
        2622
        +>

      
        
        2623
        +                            <i class="i i-comment fs14" aria-hidden="true"></i>

      
        
        2624
        +                        </a>

      
        
        2625
        +                    </div>

      
        
        2626
        +                </div>

      
        
        2627
        +                    

      
        
        2628
        +                    <div class="tc-w hax">

      
        
        2629
        +                <a href="https://dictionary.cambridge.org/example/english/skip" class="hao hbtn hbtn-tab bh tc-w tb lmt-20">

      
        
        2630
        +                    See all examples of <span class="bold">skip</span>                </a>

      
        
        2631
        +            </div>

      
        
        2632
        +        

      
        
        2633
        +        <div class="tc-bi fs12 lpt-10 lpb-10 break">

      
        
        2634
        +            These examples are from corpora and from sources on the web. Any opinions in the examples do not represent the opinion of the Cambridge Dictionary editors or of Cambridge University Press or its licensors.        </div>

      
        
        2635
        +

      
        
        2636
        +    </div>

      
        
        2637
        +</div>

      
        
        2638
        +

      
        
        2639
        +            </div></div>

      
        
        2640
        +                    <div class="lmt-10 hax">

      
        
        2641
        +        <a href="/pronunciation/english/skip" title="skip pronunciation in English"

      
        
        2642
        +           class="hao hbtn hbtn-tab hbtn-b hbtn-tl bh tc-w tb pr">

      
        
        2643
        +            <span class="hdib w95">What is the pronunciation of <em>skip</em>?</span>

      
        
        2644
        +            <i class="i i-angle-right iw tb pa pr0 pt0 lmt-5 lmr-20" aria-hidden="true"></i>

      
        
        2645
        +        </a>

      
        
        2646
        +    </div>

      
        
        2647
        +    <div class="lmb-25 lch0">&nbsp;</div>

      
        
        2648
        +</div>

      
        
        2649
        +

      
        
        2650
        +                

      
        
        2651
        +                                            <div class="pr lcs bh">

      
        
        2652
        +        <!-- translation -->

      
        
        2653
        +        <div class="cid" id="dataset_translations"></div>

      
        
        2654
        +        <div class="lc lc1 lc-m7-12 lp-20 lbb lbb0-m lbr-m lb-cn cdo-translations" id="translations">

      
        
        2655
        +          <h2 class="h3 fs19 tn tc-w">Translations of <span class="tb">skip</span></h2>

      
        
        2656
        +          <!-- market data set + localized data set -->

      
        
        2657
        +          <div class="lmb-10">

      
        
        2658
        +                                         <div class="pr bw lp-10 lmt-5">

      
        
        2659
        +                <div class="tc-bd fs14 lmb-10" tabindex="0">

      
        
        2660
        +                    in Chinese (Traditional)

      
        
        2661
        +                </div>

      
        
        2662
        +                <div class="tc-bb tb lpb-25 break-cj" lang="zh-Hant">

      
        
        2663
        +                    移動, 跳,跳躍, 跳&hellip;

      
        
        2664
        +                </div>

      
        
        2665
        +                <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2666
        +                    <a href="/dictionary/english-chinese-traditional/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        2667
        +                        title="skip: Chinese (Traditional) translation">

      
        
        2668
        +                        See more                    </a>

      
        
        2669
        +                </div>

      
        
        2670
        +              </div>

      
        
        2671
        +                                         <div class="pr bw lp-10 lmt-5">

      
        
        2672
        +                <div class="tc-bd fs14 lmb-10" tabindex="0">

      
        
        2673
        +                    in Chinese (Simplified)

      
        
        2674
        +                </div>

      
        
        2675
        +                <div class="tc-bb tb lpb-25 break-cj" lang="zh-Hans">

      
        
        2676
        +                    移动, 跳,跳跃, 跳&hellip;

      
        
        2677
        +                </div>

      
        
        2678
        +                <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2679
        +                    <a href="/dictionary/english-chinese-simplified/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        2680
        +                        title="skip: Chinese (Simplified) translation">

      
        
        2681
        +                        See more                    </a>

      
        
        2682
        +                </div>

      
        
        2683
        +              </div>

      
        
        2684
        +                                         <div class="pr bw lp-10 lmt-5">

      
        
        2685
        +                <div class="tc-bd fs14 lmb-10" tabindex="0">

      
        
        2686
        +                    in Spanish

      
        
        2687
        +                </div>

      
        
        2688
        +                <div class="tc-bb tb lpb-25" lang="es">

      
        
        2689
        +                    ir dando saltos, brincar, saltar a la cuerda&hellip;

      
        
        2690
        +                </div>

      
        
        2691
        +                <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2692
        +                    <a href="/dictionary/english-spanish/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        2693
        +                        title="skip Spanish translation">

      
        
        2694
        +                        See more                    </a>

      
        
        2695
        +                </div>

      
        
        2696
        +              </div>

      
        
        2697
        +                                         <div class="pr bw lp-10 lmt-5">

      
        
        2698
        +                <div class="tc-bd fs14 lmb-10" tabindex="0">

      
        
        2699
        +                    in Portuguese

      
        
        2700
        +                </div>

      
        
        2701
        +                <div class="tc-bb tb lpb-25" lang="pt">

      
        
        2702
        +                    ir dando saltos, brincar, pular corda&hellip;

      
        
        2703
        +                </div>

      
        
        2704
        +                <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2705
        +                    <a href="/dictionary/english-portuguese/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        2706
        +                        title="skip: Portuguese translation">

      
        
        2707
        +                        See more                    </a>

      
        
        2708
        +                </div>

      
        
        2709
        +              </div>

      
        
        2710
        +                      </div>

      
        
        2711
        +

      
        
        2712
        +                     <!-- other data set-->

      
        
        2713
        +           <div amp-access="1=1">

      
        
        2714
        +             <div class="lmb-5 pr">

      
        
        2715
        +                 <div class="cid" id="dataset_translations_down"></div>                 <template amp-access-template type="amp-mustache">

      
        
        2716
        +                     <amp-state id="stateDictTrans">

      
        
        2717
        +                         <script type="application/json">

      
        
        2718
        +                           {

      
        
        2719
        +                             "dataset": "",

      
        
        2720
        +                             "dataset_text": "in more languages"

      
        
        2721
        +                           }

      
        
        2722
        +                         </script>

      
        
        2723
        +                     </amp-state>

      
        
        2724
        +                 </template>

      
        
        2725
        +                 <amp-accordion id="accordEntryTrans" disable-session-states>

      
        
        2726
        +                     <section>

      
        
        2727
        +                         <header class="pr bt ca_h lpt-0 lpb-0 lpl-0 lpr-0">

      
        
        2728
        +                             <span class="hbtn hbtn-tab hbtn-b hbtn-tl bw tc-bd tn fs14">

      
        
        2729
        +                                 <span [text]="stateDictTrans.dataset_text">in more languages</span>

      
        
        2730
        +                                 <i class="i i-chevron-down il tn pa pr0 pt0 lpt-5 lpr-15" aria-hidden="true"></i>

      
        
        2731
        +                             </span>

      
        
        2732
        +                         </header>

      
        
        2733
        +                         <div class="bw lp-10 lpl-10 lmt-5">

      
        
        2734
        +                             <div class="lpl-2">

      
        
        2735
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2736
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-marathi', dataset_text: 'in Marathi' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2737
        +                                     in Marathi

      
        
        2738
        +                                 </div>

      
        
        2739
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2740
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-japanese', dataset_text: 'in Japanese' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2741
        +                                     in Japanese

      
        
        2742
        +                                 </div>

      
        
        2743
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2744
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-turkish', dataset_text: 'in Turkish' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2745
        +                                     in Turkish

      
        
        2746
        +                                 </div>

      
        
        2747
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2748
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-french', dataset_text: 'in French' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2749
        +                                     in French

      
        
        2750
        +                                 </div>

      
        
        2751
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2752
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-catalan', dataset_text: 'in Catalan' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2753
        +                                     in Catalan

      
        
        2754
        +                                 </div>

      
        
        2755
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2756
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-dutch', dataset_text: 'in Dutch' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2757
        +                                     in Dutch

      
        
        2758
        +                                 </div>

      
        
        2759
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2760
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-tamil', dataset_text: 'in Tamil' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2761
        +                                     in Tamil

      
        
        2762
        +                                 </div>

      
        
        2763
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2764
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-hindi', dataset_text: 'in Hindi' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2765
        +                                     in Hindi

      
        
        2766
        +                                 </div>

      
        
        2767
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2768
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-gujarati', dataset_text: 'in Gujarati' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2769
        +                                     in Gujarati

      
        
        2770
        +                                 </div>

      
        
        2771
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2772
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-danish', dataset_text: 'in Danish' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2773
        +                                     in Danish

      
        
        2774
        +                                 </div>

      
        
        2775
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2776
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-swedish', dataset_text: 'in Swedish' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2777
        +                                     in Swedish

      
        
        2778
        +                                 </div>

      
        
        2779
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2780
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-malaysian', dataset_text: 'in Malay' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2781
        +                                     in Malay

      
        
        2782
        +                                 </div>

      
        
        2783
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2784
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-german', dataset_text: 'in German' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2785
        +                                     in German

      
        
        2786
        +                                 </div>

      
        
        2787
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2788
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-norwegian', dataset_text: 'in Norwegian' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2789
        +                                     in Norwegian

      
        
        2790
        +                                 </div>

      
        
        2791
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2792
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-urdu', dataset_text: 'in Urdu' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2793
        +                                     in Urdu

      
        
        2794
        +                                 </div>

      
        
        2795
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2796
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-ukrainian', dataset_text: 'in Ukrainian' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2797
        +                                     in Ukrainian

      
        
        2798
        +                                 </div>

      
        
        2799
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2800
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-telugu', dataset_text: 'in Telugu' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2801
        +                                     in Telugu

      
        
        2802
        +                                 </div>

      
        
        2803
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2804
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-bengali', dataset_text: 'in Bengali' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2805
        +                                     in Bengali

      
        
        2806
        +                                 </div>

      
        
        2807
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2808
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-czech', dataset_text: 'in Czech' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2809
        +                                     in Czech

      
        
        2810
        +                                 </div>

      
        
        2811
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2812
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-indonesian', dataset_text: 'in Indonesian' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2813
        +                                     in Indonesian

      
        
        2814
        +                                 </div>

      
        
        2815
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2816
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-thai', dataset_text: 'in Thai' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2817
        +                                     in Thai

      
        
        2818
        +                                 </div>

      
        
        2819
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2820
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-vietnamese', dataset_text: 'in Vietnamese' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2821
        +                                     in Vietnamese

      
        
        2822
        +                                 </div>

      
        
        2823
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2824
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-polish', dataset_text: 'in Polish' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2825
        +                                     in Polish

      
        
        2826
        +                                 </div>

      
        
        2827
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2828
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-korean', dataset_text: 'in Korean' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2829
        +                                     in Korean

      
        
        2830
        +                                 </div>

      
        
        2831
        +                                                              <div class="hp tc-bd fs14 lp-5 lpl-10 lpr-10 lmb-5" role="button" tabindex="0"

      
        
        2832
        +                                     on="tap:AMP.setState({ stateDictTrans: { dataset: 'english-italian', dataset_text: 'in Italian' } }),accordEntryTrans.collapse,dataset_translations_down.scrollTo">

      
        
        2833
        +                                     in Italian

      
        
        2834
        +                                 </div>

      
        
        2835
        +                                                          </div>

      
        
        2836
        +                         </div>

      
        
        2837
        +                     </section>

      
        
        2838
        +                 </amp-accordion>

      
        
        2839
        + 

      
        
        2840
        +                 <div>

      
        
        2841
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-marathi' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2842
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2843
        +                         <span class="pa cs-tw"></span>

      
        
        2844
        +                         <div class="tc-bb tb lpb-25" lang="mr">

      
        
        2845
        +                             सोडणे, उड्या मारत पुढे जाणे, टाळणे&hellip;

      
        
        2846
        +                         </div>

      
        
        2847
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2848
        +                             <a href="/dictionary/english-marathi/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        2849
        +                                 title="skip: Marathi translation">

      
        
        2850
        +                                 See more                             </a>

      
        
        2851
        +                         </div>

      
        
        2852
        +                       </div>

      
        
        2853
        +                     </div>

      
        
        2854
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-japanese' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2855
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2856
        +                         <span class="pa cs-tw"></span>

      
        
        2857
        +                         <div class="tc-bb tb lpb-25" lang="ja">

      
        
        2858
        +                             ~を省略する, 抜かす, スキップする&hellip;

      
        
        2859
        +                         </div>

      
        
        2860
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2861
        +                             <a href="/dictionary/english-japanese/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        2862
        +                                 title="skip: Japanese translation">

      
        
        2863
        +                                 See more                             </a>

      
        
        2864
        +                         </div>

      
        
        2865
        +                       </div>

      
        
        2866
        +                     </div>

      
        
        2867
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-turkish' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2868
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2869
        +                         <span class="pa cs-tw"></span>

      
        
        2870
        +                         <div class="tc-bb tb lpb-25" lang="tr">

      
        
        2871
        +                             sekmek, seke seke gitmek, ip atlamak&hellip;

      
        
        2872
        +                         </div>

      
        
        2873
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2874
        +                             <a href="/dictionary/english-turkish/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        2875
        +                                 title="skip Turkish translation">

      
        
        2876
        +                                 See more                             </a>

      
        
        2877
        +                         </div>

      
        
        2878
        +                       </div>

      
        
        2879
        +                     </div>

      
        
        2880
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-french' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2881
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2882
        +                         <span class="pa cs-tw"></span>

      
        
        2883
        +                         <div class="tc-bb tb lpb-25" lang="fr">

      
        
        2884
        +                             sauter, s’éparpiller, sautiller&hellip;

      
        
        2885
        +                         </div>

      
        
        2886
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2887
        +                             <a href="/dictionary/english-french/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        2888
        +                                 title="skip: French translation">

      
        
        2889
        +                                 See more                             </a>

      
        
        2890
        +                         </div>

      
        
        2891
        +                       </div>

      
        
        2892
        +                     </div>

      
        
        2893
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-catalan' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2894
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2895
        +                         <span class="pa cs-tw"></span>

      
        
        2896
        +                         <div class="tc-bb tb lpb-25" lang="ca">

      
        
        2897
        +                             saltar-se, fer saltirons, saltar a corda&hellip;

      
        
        2898
        +                         </div>

      
        
        2899
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2900
        +                             <a href="/dictionary/english-catalan/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        2901
        +                                 title="skip: Catalan translation">

      
        
        2902
        +                                 See more                             </a>

      
        
        2903
        +                         </div>

      
        
        2904
        +                       </div>

      
        
        2905
        +                     </div>

      
        
        2906
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-dutch' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2907
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2908
        +                         <span class="pa cs-tw"></span>

      
        
        2909
        +                         <div class="tc-bb tb lpb-25" lang="nl">

      
        
        2910
        +                             huppelen, touwtjespringen, overslaan&hellip;

      
        
        2911
        +                         </div>

      
        
        2912
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2913
        +                             <a href="/dictionary/english-dutch/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        2914
        +                                 title="skip: Dutch translation">

      
        
        2915
        +                                 See more                             </a>

      
        
        2916
        +                         </div>

      
        
        2917
        +                       </div>

      
        
        2918
        +                     </div>

      
        
        2919
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-tamil' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2920
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2921
        +                         <span class="pa cs-tw"></span>

      
        
        2922
        +                         <div class="tc-bb tb lpb-25" lang="ta">

      
        
        2923
        +                             ஒரு பொருளை அல்லது இடத்தை விட்டு, குறிப்பாக விரைவாக, மற்றொரு இடத்திற்குச் செல்வது&hellip;

      
        
        2924
        +                         </div>

      
        
        2925
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2926
        +                             <a href="/dictionary/english-tamil/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        2927
        +                                 title="skip: Tamil translation">

      
        
        2928
        +                                 See more                             </a>

      
        
        2929
        +                         </div>

      
        
        2930
        +                       </div>

      
        
        2931
        +                     </div>

      
        
        2932
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-hindi' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2933
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2934
        +                         <span class="pa cs-tw"></span>

      
        
        2935
        +                         <div class="tc-bb tb lpb-25" lang="hi">

      
        
        2936
        +                             (किसी चीज़ या स्थान को) छोड़ना, (समान्यतः किए जाने वाला कार्य को) छोड़ देना&hellip;

      
        
        2937
        +                         </div>

      
        
        2938
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2939
        +                             <a href="/dictionary/english-hindi/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        2940
        +                                 title="skip: Hindi translation">

      
        
        2941
        +                                 See more                             </a>

      
        
        2942
        +                         </div>

      
        
        2943
        +                       </div>

      
        
        2944
        +                     </div>

      
        
        2945
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-gujarati' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2946
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2947
        +                         <span class="pa cs-tw"></span>

      
        
        2948
        +                         <div class="tc-bb tb lpb-25" lang="gu">

      
        
        2949
        +                             છોડી દેવું, કૂદવું, છોડી દેવું (સામાન્ય રીતે બનાવનાર કાર્યને)&hellip;

      
        
        2950
        +                         </div>

      
        
        2951
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2952
        +                             <a href="/dictionary/english-gujarati/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        2953
        +                                 title="skip: Gujarati translation">

      
        
        2954
        +                                 See more                             </a>

      
        
        2955
        +                         </div>

      
        
        2956
        +                       </div>

      
        
        2957
        +                     </div>

      
        
        2958
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-danish' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2959
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2960
        +                         <span class="pa cs-tw"></span>

      
        
        2961
        +                         <div class="tc-bb tb lpb-25" lang="da">

      
        
        2962
        +                             hoppe afsted, sjippe, springe over&hellip;

      
        
        2963
        +                         </div>

      
        
        2964
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2965
        +                             <a href="/dictionary/english-danish/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        2966
        +                                 title="skip: Danish translation">

      
        
        2967
        +                                 See more                             </a>

      
        
        2968
        +                         </div>

      
        
        2969
        +                       </div>

      
        
        2970
        +                     </div>

      
        
        2971
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-swedish' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2972
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2973
        +                         <span class="pa cs-tw"></span>

      
        
        2974
        +                         <div class="tc-bb tb lpb-25" lang="sv">

      
        
        2975
        +                             hoppa, skutta, hoppa rep&hellip;

      
        
        2976
        +                         </div>

      
        
        2977
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2978
        +                             <a href="/dictionary/english-swedish/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        2979
        +                                 title="skip: Swedish translation">

      
        
        2980
        +                                 See more                             </a>

      
        
        2981
        +                         </div>

      
        
        2982
        +                       </div>

      
        
        2983
        +                     </div>

      
        
        2984
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-malaysian' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2985
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2986
        +                         <span class="pa cs-tw"></span>

      
        
        2987
        +                         <div class="tc-bb tb lpb-25" lang="ms">

      
        
        2988
        +                             meloncat-loncat, melompat-lompat, tidak mahu makan&hellip;

      
        
        2989
        +                         </div>

      
        
        2990
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        2991
        +                             <a href="/dictionary/english-malaysian/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        2992
        +                                 title="skip: Malay translation">

      
        
        2993
        +                                 See more                             </a>

      
        
        2994
        +                         </div>

      
        
        2995
        +                       </div>

      
        
        2996
        +                     </div>

      
        
        2997
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-german' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        2998
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        2999
        +                         <span class="pa cs-tw"></span>

      
        
        3000
        +                         <div class="tc-bb tb lpb-25" lang="de">

      
        
        3001
        +                             hüpfen, seilhüpfen, auslassen&hellip;

      
        
        3002
        +                         </div>

      
        
        3003
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        3004
        +                             <a href="/dictionary/english-german/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        3005
        +                                 title="skip: German translation">

      
        
        3006
        +                                 See more                             </a>

      
        
        3007
        +                         </div>

      
        
        3008
        +                       </div>

      
        
        3009
        +                     </div>

      
        
        3010
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-norwegian' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        3011
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        3012
        +                         <span class="pa cs-tw"></span>

      
        
        3013
        +                         <div class="tc-bb tb lpb-25" lang="no">

      
        
        3014
        +                             hoppe over, rote rundt, hoppe&hellip;

      
        
        3015
        +                         </div>

      
        
        3016
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        3017
        +                             <a href="/dictionary/english-norwegian/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        3018
        +                                 title="skip: Norwegian translation">

      
        
        3019
        +                                 See more                             </a>

      
        
        3020
        +                         </div>

      
        
        3021
        +                       </div>

      
        
        3022
        +                     </div>

      
        
        3023
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-urdu' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        3024
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        3025
        +                         <span class="pa cs-tw"></span>

      
        
        3026
        +                         <div class="tc-bb tb lpb-25" lang="ur">

      
        
        3027
        +                             بیچ میں چھوڑ دینا, نظر انداز کرنا, کسی کام کو بیچ میں چھوڑ دینا&hellip;

      
        
        3028
        +                         </div>

      
        
        3029
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        3030
        +                             <a href="/dictionary/english-urdu/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        3031
        +                                 title="skip: Urdu translation">

      
        
        3032
        +                                 See more                             </a>

      
        
        3033
        +                         </div>

      
        
        3034
        +                       </div>

      
        
        3035
        +                     </div>

      
        
        3036
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-ukrainian' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        3037
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        3038
        +                         <span class="pa cs-tw"></span>

      
        
        3039
        +                         <div class="tc-bb tb lpb-25" lang="uk">

      
        
        3040
        +                             стрибати, скакати, стрибати через скакалку&hellip;

      
        
        3041
        +                         </div>

      
        
        3042
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        3043
        +                             <a href="/dictionary/english-ukrainian/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        3044
        +                                 title="skip: Ukrainian translation">

      
        
        3045
        +                                 See more                             </a>

      
        
        3046
        +                         </div>

      
        
        3047
        +                       </div>

      
        
        3048
        +                     </div>

      
        
        3049
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-telugu' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        3050
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        3051
        +                         <span class="pa cs-tw"></span>

      
        
        3052
        +                         <div class="tc-bb tb lpb-25" lang="te">

      
        
        3053
        +                             దాటవేయు / ఒక వస్తువు లేదా స్థలాన్ని విడిచిపెట్టు, ముఖ్యంగా త్వరగా, మరొకదానికి వెళ్లడానికి&hellip;

      
        
        3054
        +                         </div>

      
        
        3055
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        3056
        +                             <a href="/dictionary/english-telugu/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        3057
        +                                 title="skip: Telugu translation">

      
        
        3058
        +                                 See more                             </a>

      
        
        3059
        +                         </div>

      
        
        3060
        +                       </div>

      
        
        3061
        +                     </div>

      
        
        3062
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-bengali' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        3063
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        3064
        +                         <span class="pa cs-tw"></span>

      
        
        3065
        +                         <div class="tc-bb tb lpb-25" lang="bn">

      
        
        3066
        +                             বাদ দিয়ে যাওয়া, টপকে যাওয়া, বাদ দেওয়া&hellip;

      
        
        3067
        +                         </div>

      
        
        3068
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        3069
        +                             <a href="/dictionary/english-bengali/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        3070
        +                                 title="skip: Bengali translation">

      
        
        3071
        +                                 See more                             </a>

      
        
        3072
        +                         </div>

      
        
        3073
        +                       </div>

      
        
        3074
        +                     </div>

      
        
        3075
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-czech' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        3076
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        3077
        +                         <span class="pa cs-tw"></span>

      
        
        3078
        +                         <div class="tc-bb tb lpb-25" lang="cs">

      
        
        3079
        +                             poskakovat, skákat přes švihadlo, vynechat&hellip;

      
        
        3080
        +                         </div>

      
        
        3081
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        3082
        +                             <a href="/dictionary/english-czech/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        3083
        +                                 title="skip: Czech translation">

      
        
        3084
        +                                 See more                             </a>

      
        
        3085
        +                         </div>

      
        
        3086
        +                       </div>

      
        
        3087
        +                     </div>

      
        
        3088
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-indonesian' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        3089
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        3090
        +                         <span class="pa cs-tw"></span>

      
        
        3091
        +                         <div class="tc-bb tb lpb-25" lang="id">

      
        
        3092
        +                             melompat-lompat, bermain lompat tali, melewatkan&hellip;

      
        
        3093
        +                         </div>

      
        
        3094
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        3095
        +                             <a href="/dictionary/english-indonesian/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        3096
        +                                 title="skip: Indonesian translation">

      
        
        3097
        +                                 See more                             </a>

      
        
        3098
        +                         </div>

      
        
        3099
        +                       </div>

      
        
        3100
        +                     </div>

      
        
        3101
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-thai' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        3102
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        3103
        +                         <span class="pa cs-tw"></span>

      
        
        3104
        +                         <div class="tc-bb tb lpb-25" lang="th">

      
        
        3105
        +                             กระโดด, กระโดดเชือก, ข้ามไป&hellip;

      
        
        3106
        +                         </div>

      
        
        3107
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        3108
        +                             <a href="/dictionary/english-thai/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        3109
        +                                 title="skip: Thai translation">

      
        
        3110
        +                                 See more                             </a>

      
        
        3111
        +                         </div>

      
        
        3112
        +                       </div>

      
        
        3113
        +                     </div>

      
        
        3114
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-vietnamese' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        3115
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        3116
        +                         <span class="pa cs-tw"></span>

      
        
        3117
        +                         <div class="tc-bb tb lpb-25" lang="vi">

      
        
        3118
        +                             nhảy, nhảy dây, bỏ qua&hellip;

      
        
        3119
        +                         </div>

      
        
        3120
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        3121
        +                             <a href="/dictionary/english-vietnamese/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        3122
        +                                 title="skip: Vietnamese translation">

      
        
        3123
        +                                 See more                             </a>

      
        
        3124
        +                         </div>

      
        
        3125
        +                       </div>

      
        
        3126
        +                     </div>

      
        
        3127
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-polish' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        3128
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        3129
        +                         <span class="pa cs-tw"></span>

      
        
        3130
        +                         <div class="tc-bb tb lpb-25" lang="pl">

      
        
        3131
        +                             skakać, podskakiwać, skakać na skakance&hellip;

      
        
        3132
        +                         </div>

      
        
        3133
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        3134
        +                             <a href="/dictionary/english-polish/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        3135
        +                                 title="skip: Polish translation">

      
        
        3136
        +                                 See more                             </a>

      
        
        3137
        +                         </div>

      
        
        3138
        +                       </div>

      
        
        3139
        +                     </div>

      
        
        3140
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-korean' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        3141
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        3142
        +                         <span class="pa cs-tw"></span>

      
        
        3143
        +                         <div class="tc-bb tb lpb-25" lang="ko">

      
        
        3144
        +                             건너 뛰다, 뛰어 다니다, 줄넘기 하다&hellip;

      
        
        3145
        +                         </div>

      
        
        3146
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        3147
        +                             <a href="/dictionary/english-korean/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        3148
        +                                 title="skip: Korean translation">

      
        
        3149
        +                                 See more                             </a>

      
        
        3150
        +                         </div>

      
        
        3151
        +                       </div>

      
        
        3152
        +                     </div>

      
        
        3153
        +                                                            <div class="pr lmt-10 nojs" [class]="stateDictTrans.dataset == 'english-italian' ? 'pr lmt-10' : 'pr lmt-10 nojs'">

      
        
        3154
        +                       <div class="pr bw lp-10 lmt-5">

      
        
        3155
        +                         <span class="pa cs-tw"></span>

      
        
        3156
        +                         <div class="tc-bb tb lpb-25" lang="it">

      
        
        3157
        +                             saltare, salterellare, saltare con la corda&hellip;

      
        
        3158
        +                         </div>

      
        
        3159
        +                         <div class="pa pr0 pb0 lp-5 fs13">

      
        
        3160
        +                             <a href="/dictionary/english-italian/skip" class="hbtn hbtn-tab bh tc-w"

      
        
        3161
        +                                 title="skip: Italian translation">

      
        
        3162
        +                                 See more                             </a>

      
        
        3163
        +                         </div>

      
        
        3164
        +                       </div>

      
        
        3165
        +                     </div>

      
        
        3166
        +                                  </div>

      
        
        3167
        + 

      
        
        3168
        +             </div>

      
        
        3169
        +           </div>

      
        
        3170
        +                  </div>

      
        
        3171
        +

      
        
        3172
        +        <!-- need a translator -->

      
        
        3173
        +        <div class="hax lc lc1 lc-m5-12">

      
        
        3174
        +            <div class="lp-20">

      
        
        3175
        +                <div class="h3 fs19 tn tc-w lmb-10">Need a translator?</div>

      
        
        3176
        +

      
        
        3177
        +                <p>Get a quick, free translation!</p>

      
        
        3178
        +

      
        
        3179
        +                <div class="lp-s_t-25">

      
        
        3180
        +                    <a href="https://dictionary.cambridge.org/translate/" class="hao hbtn hbtn-tab hbtn-b bo lpl-25">

      
        
        3181
        +                        <div class="tc-bd pr lpl-10">

      
        
        3182
        +                            <i class="i i-language pa pl-15" aria-hidden="true"></i>

      
        
        3183
        +                            <span class="tb">Translator tool</span>

      
        
        3184
        +                        </div>

      
        
        3185
        +                    </a>

      
        
        3186
        +                </div>

      
        
        3187
        +            </div>

      
        
        3188
        +        </div>

      
        
        3189
        +

      
        
        3190
        +    </div>

      
        
        3191
        +

      
        
        3192
        +                                    

      
        
        3193
        +                <div class="lmb-25 lch0">&nbsp;</div>

      
        
        3194
        +

      
        
        3195
        +

      
        
        3196
        +                    <div class="lmb-20">

      
        
        3197
        +        <h2 class="bb fs16 lp-10 lmb-0">

      
        
        3198
        +            <strong class="tb">Browse</strong>

      
        
        3199
        +        </h2>

      
        
        3200
        +

      
        
        3201
        +        <div class="hax lp-10 lb lb-cm lbt0 dbrowse">

      
        
        3202
        +                            <div class="lmb-12">

      
        
        3203
        +                                    <a href="/dictionary/english/skinny-rib" title="skinny-rib" >

      
        
        3204
        +                        <span class="entry_title"><span class="results"><span class="base"><span class="hw haf">skinny-rib</span></span></span></span>

      
        
        3205
        +                    </a>

      
        
        3206
        +                                                </div>

      
        
        3207
        +                            <div class="lmb-12">

      
        
        3208
        +                                    <a href="/dictionary/english/skinsuit" title="skinsuit" >

      
        
        3209
        +                        <span class="entry_title"><span class="results"><span class="base"><span class="hw haf">skinsuit</span></span></span></span>

      
        
        3210
        +                    </a>

      
        
        3211
        +                                                </div>

      
        
        3212
        +                            <div class="lmb-12">

      
        
        3213
        +                                    <a href="/dictionary/english/skint" title="skint" >

      
        
        3214
        +                        <span class="entry_title"><span class="results"><span class="base"><span class="hw haf">skint</span></span></span></span>

      
        
        3215
        +                    </a>

      
        
        3216
        +                                                </div>

      
        
        3217
        +                            <div class="lmb-12">

      
        
        3218
        +                                    <a href="/dictionary/english/skintight" title="skintight" >

      
        
        3219
        +                        <span class="entry_title"><span class="results"><span class="base"><span class="hw haf">skintight</span></span></span></span>

      
        
        3220
        +                    </a>

      
        
        3221
        +                                                </div>

      
        
        3222
        +                            <div class="lmb-12">

      
        
        3223
        +                                    <span class="entry_title"><span class="results"><span class="base"><span class="hw haf">skip</span></span></span></span>

      
        
        3224
        +                                                </div>

      
        
        3225
        +                            <div class="lmb-12">

      
        
        3226
        +                                    <a href="/dictionary/english/skip-about" title="skip about" >

      
        
        3227
        +                        <span class="entry_title"><span class="results"><span class="base"><span class="hw haf">skip about</span></span></span></span>

      
        
        3228
        +                    </a>

      
        
        3229
        +                                                </div>

      
        
        3230
        +                            <div class="lmb-12">

      
        
        3231
        +                                    <a href="/dictionary/english/skip-diving" title="skip diving" >

      
        
        3232
        +                        <span class="entry_title"><span class="results"><span class="base"><span class="hw haf">skip diving</span></span></span></span>

      
        
        3233
        +                    </a>

      
        
        3234
        +                                                </div>

      
        
        3235
        +                            <div class="lmb-12">

      
        
        3236
        +                                    <a href="/dictionary/english/skip-out-on" title="skip out on someone/something phrasal verb" >

      
        
        3237
        +                        <span class="entry_title"><span class="results"><span class="base"><span class="phrase haf">skip out on <span class="obj">someone/something</span></span></span> <span class="pos">phrasal verb</span></span></span>

      
        
        3238
        +                    </a>

      
        
        3239
        +                                                </div>

      
        
        3240
        +                            <div class="lmb-12">

      
        
        3241
        +                                    <a href="/dictionary/english/skip-over" title="skip over something phrasal verb" >

      
        
        3242
        +                        <span class="entry_title"><span class="results"><span class="base"><span class="phrase haf">skip over <span class="obj">something</span></span></span> <span class="pos">phrasal verb</span></span></span>

      
        
        3243
        +                    </a>

      
        
        3244
        +                                                </div>

      
        
        3245
        +                    </div>

      
        
        3246
        +    </div>

      
        
        3247
        +

      
        
        3248
        +                

      
        
        3249
        +                                <div id='ad_btmslot' class='am-default_moreslots '>

      
        
        3250
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_btmslot'); });</script>

      
        
        3251
        +        </div>

      
        
        3252
        +    

      
        
        3253
        +                                <div id='ad_houseslot_b' class='am-default_moreslots '>

      
        
        3254
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_houseslot_b'); });</script>

      
        
        3255
        +        </div>

      
        
        3256
        +    

      
        
        3257
        +            </article>

      
        
        3258
        +

      
        
        3259
        +            <div class="hfr-s lt2s lmt-10">

      
        
        3260
        +                

      
        
        3261
        +    

      
        
        3262
        +<div amp-access="1=1">

      
        
        3263
        +  <template amp-access-template type="amp-mustache">

      
        
        3264
        +  {{#randomImageQuizHook.filename}}

      
        
        3265
        +    {{#randomImageQuizHook.isQuiz}}

      
        
        3266
        +    <div class="bw hbss lp-10 lmb-25 pr">

      
        
        3267
        +        <div class="fs18 fs20-m hlh1_3 lmb-5 break">Test your vocabulary with our fun image quizzes</div>

      
        
        3268
        +

      
        
        3269
        +        <div class="pr wl-fc-c lmb-15">

      
        
        3270
        +            <div class="pa pr-5 pb-5 lc1 lch1 bo"></div>

      
        
        3271
        +            <a href="/plus/quiz/image/{{randomImageQuizHook.quizId}}"

      
        
        3272
        +                class="pr bw hdb lcs lp-5 lb"

      
        
        3273
        +                title="Test your vocabulary with our fun image quizzes"

      
        
        3274
        +                rel="nofollow">

      
        
        3275
        +                <div class="pr wl-fc-2">

      
        
        3276
        +                    <amp-img src="/external/images/quiz/hook/{{randomImageQuizHook.filename}}?version=6.0.78" layout="fill"

      
        
        3277
        +                            alt="{{randomImageQuizHook.quizId}}">

      
        
        3278
        +                        <noscript>

      
        
        3279
        +                            <img src="/external/images/quiz/hook/{{randomImageQuizHook.filename}}?version=6.0.78"

      
        
        3280
        +                                alt="{{randomImageQuizHook.quizId}}" />

      
        
        3281
        +                        </noscript>

      
        
        3282
        +                    </amp-img>

      
        
        3283
        +                </div>

      
        
        3284
        +            </a>

      
        
        3285
        +        </div>

      
        
        3286
        +

      
        
        3287
        +        <a href="/plus/quiz/image/{{randomImageQuizHook.quizId}}"

      
        
        3288
        +            class="bh hao hbtn hbtn-tab tb mw260"

      
        
        3289
        +            rel="nofollow">Try a quiz now</a>

      
        
        3290
        +

      
        
        3291
        +        <span class="lpt-40 lpb-10 lpr-10 lpl-15 pa pr0 pb0 r2-hidden">

      
        
        3292
        +            <span class="bod lpt-20 lpb-10 lpr-10 lpl-15 pa pr0 pb20"></span>

      
        
        3293
        +            <span class="bsb lpt-15 lpb-10 lpr-10 lpl-15 pa pr0 pb0"></span>

      
        
        3294
        +        </span>

      
        
        3295
        +    </div>

      
        
        3296
        +    {{/randomImageQuizHook.isQuiz}}

      
        
        3297
        +    {{^randomImageQuizHook.isQuiz}}

      
        
        3298
        +    <div class="bw lmb-25 pr htc">

      
        
        3299
        +        <a href="/plus{{randomImageQuizHook.quizId}}" class="pr hdib" style="height:252px;width:300px;" rel="nofollow">

      
        
        3300
        +            <amp-img src="/external/images/games/{{randomImageQuizHook.filename}}?version=6.0.78" height="252" width="300" layout="fill"

      
        
        3301
        +                    alt="{{randomImageQuizHook.quizId}}">

      
        
        3302
        +                <noscript>

      
        
        3303
        +                    <img src="/external/images/games/{{randomImageQuizHook.filename}}?version=6.0.78"

      
        
        3304
        +                        alt="{{randomImageQuizHook.quizId}}" />

      
        
        3305
        +                </noscript>

      
        
        3306
        +            </amp-img>

      
        
        3307
        +        </a>

      
        
        3308
        +    </div>

      
        
        3309
        +    {{/randomImageQuizHook.isQuiz}}

      
        
        3310
        +  {{/randomImageQuizHook.filename}}

      
        
        3311
        +  </template>

      
        
        3312
        +</div>

      
        
        3313
        +

      
        
        3314
        +

      
        
        3315
        +                <div id='ad_rightslot' class='am-default_moreslots '>

      
        
        3316
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_rightslot'); });</script>

      
        
        3317
        +        </div>

      
        
        3318
        +    

      
        
        3319
        +    

      
        
        3320
        +    

      
        
        3321
        +    <aside class="lmb-20 lmt-10 cdo-more-results">

      
        
        3322
        +        <h2 class="bb fs16 tb lp-10 lmb-5">

      
        
        3323
        +                        

      
        
        3324
        +                                    More meanings of <em>skip</em>

      
        
        3325
        +        </h2>

      
        
        3326
        +

      
        
        3327
        +        <div class="lpl-10">

      
        
        3328
        +            <amp-accordion disable-session-states>

      
        
        3329
        +                <section expanded>

      
        
        3330
        +                    <header class="ca_h lpl-0" title="All &ldquo;skip&rdquo; meanings in English">

      
        
        3331
        +                        <i class="i i-plus ca_hi" aria-hidden="true"></i>

      
        
        3332
        +                        All

      
        
        3333
        +                    </header>

      
        
        3334
        +                    <div class="ca_b lpl-20 lpr-10 lpb-20">

      
        
        3335
        +                        <ul class="hax hul-u hul-u0 lmb-10">

      
        
        3336
        +                                                                                                    <li>

      
        
        3337
        +                                <a href="/dictionary/english/skip-town" title="skip town"

      
        
        3338
        +                                    class="moreResult"                                      onclick="sendGAEvent('more-result', 'more-result-link')" >

      
        
        3339
        +                                    <span class='arl3'><span class="base"><span class="hw haf">skip town</span></span></span>

      
        
        3340
        +                                </a>

      
        
        3341
        +                            </li>

      
        
        3342
        +                                                    <li>

      
        
        3343
        +                                <a href="/dictionary/english/skip-about" title="skip about"

      
        
        3344
        +                                    class="moreResult"                                      onclick="sendGAEvent('more-result', 'more-result-link')" >

      
        
        3345
        +                                    <span class='arl3'><span class="base"><span class="hw haf">skip about</span></span></span>

      
        
        3346
        +                                </a>

      
        
        3347
        +                            </li>

      
        
        3348
        +                                                    <li>

      
        
        3349
        +                                <a href="/dictionary/english/skip-diving" title="skip diving"

      
        
        3350
        +                                    class="moreResult"                                      onclick="sendGAEvent('more-result', 'more-result-link')" >

      
        
        3351
        +                                    <span class='arl3'><span class="base"><span class="hw haf">skip diving</span></span></span>

      
        
        3352
        +                                </a>

      
        
        3353
        +                            </li>

      
        
        3354
        +                                                    <li>

      
        
        3355
        +                                <a href="/dictionary/english/skip-level" title="skip-level"

      
        
        3356
        +                                    class="moreResult"                                      onclick="sendGAEvent('more-result', 'more-result-link')" >

      
        
        3357
        +                                    <span class='arl3'><span class="base"><span class="hw haf">skip-level</span></span></span>

      
        
        3358
        +                                </a>

      
        
        3359
        +                            </li>

      
        
        3360
        +                                                    <li>

      
        
        3361
        +                                <a href="/dictionary/english/skip-tracer" title="skip tracer"

      
        
        3362
        +                                    class="moreResult"                                      onclick="sendGAEvent('more-result', 'more-result-link')" >

      
        
        3363
        +                                    <span class='arl3'><span class="base"><span class="hw haf">skip tracer</span></span></span>

      
        
        3364
        +                                </a>

      
        
        3365
        +                            </li>

      
        
        3366
        +                                                    <li>

      
        
        3367
        +                                <a href="/dictionary/english/jump-rope" title="skip, at jump rope"

      
        
        3368
        +                                    class="moreResult"                                      onclick="sendGAEvent('more-result', 'more-result-link')" >

      
        
        3369
        +                                    <span class='arl4'><span class="base">skip</span>, at <span class="base"><span class="hw haf">jump rope</span></span></span>

      
        
        3370
        +                                </a>

      
        
        3371
        +                            </li>

      
        
        3372
        +                                                    <li>

      
        
        3373
        +                                <a href="/dictionary/english/skim" title="skip, at skim"

      
        
        3374
        +                                    class="moreResult"                                      onclick="sendGAEvent('more-result', 'more-result-link')" >

      
        
        3375
        +                                    <span class='arl4'><span class="base">skip</span>, at <span class="base"><span class="hw haf">skim</span></span></span>

      
        
        3376
        +                                </a>

      
        
        3377
        +                            </li>

      
        
        3378
        +                                                </ul>

      
        
        3379
        +

      
        
        3380
        +                        <a href="https://dictionary.cambridge.org/search/english/?q=skip" class="tb"

      
        
        3381
        +                                 onclick="sendGAEvent('more-result', 'see-all-meaning')"                                 title="All meanings for skip in English" rel="nofollow">

      
        
        3382
        +                            See all meanings                        </a>

      
        
        3383
        +                    </div>

      
        
        3384
        +                </section>

      
        
        3385
        +

      
        
        3386
        +                                    <section>

      
        
        3387
        +                        <header class="ca_h lpl-0" title="Meanings for &ldquo;skip&rdquo; in phrasal verbs in English">

      
        
        3388
        +                            <i class="i i-plus ca_hi" aria-hidden="true"></i>

      
        
        3389
        +                            Phrasal Verbs

      
        
        3390
        +                        </header>

      
        
        3391
        +                        <div class="ca_b lpl-20 lpr-10 lpb-20">

      
        
        3392
        +                            <ul class="hax hul-u hul-u0 lmb-10">

      
        
        3393
        +                                                                                                <li><a href="/dictionary/english/skip-out-on" title="skip out (on something/someone) phrasal verb"><span class='arl5'><span class="base"><span class="phrase haf">skip out (on <span class="obj">something/someone)</span></span></span> <span class="pos">phrasal verb</span></span></a></li>

      
        
        3394
        +                                                                                                                                <li><a href="/dictionary/english/skip-over" title="skip over something phrasal verb"><span class='arl5'><span class="base"><span class="phrase haf">skip over <span class="obj">something</span></span></span> <span class="pos">phrasal verb</span></span></a></li>

      
        
        3395
        +                                                                                                                                <li><a href="/dictionary/english/skip-out-on" title="skip out on someone/something phrasal verb"><span class='arl5'><span class="base"><span class="phrase haf">skip out on <span class="obj">someone/something</span></span></span> <span class="pos">phrasal verb</span></span></a></li>

      
        
        3396
        +                                                                                        </ul>

      
        
        3397
        +                            <a href="https://dictionary.cambridge.org/search/english/?q=skip&type=pv" class="tb" 

      
        
        3398
        +                                    title="All phrasal verb meanings for skip in English"

      
        
        3399
        +                                    rel="nofollow">

      
        
        3400
        +                                See all phrasal verb meanings                            </a>

      
        
        3401
        +                        </div>

      
        
        3402
        +                    </section>

      
        
        3403
        +                

      
        
        3404
        +                                    <section>

      
        
        3405
        +                        <header class="ca_h lpl-0" title="Meanings for &ldquo;skip&rdquo; in idioms in English">

      
        
        3406
        +                            <i class="i i-plus ca_hi" aria-hidden="true"></i>

      
        
        3407
        +                            Idioms and phrases

      
        
        3408
        +                        </header>

      
        
        3409
        +                        <div class="ca_b lpl-20 lpr-10 lpb-20">

      
        
        3410
        +                            <ul class="hax hul-u hul-u0 lmb-10">

      
        
        3411
        +                                                                                                                            <li><a href="/dictionary/english/not-miss-skip-a-beat" title="not miss/skip a beat idiom"><span class='arl6'><span class="base"><span class="phrase haf">not miss/skip a beat</span></span> <span class="pos">idiom</span></span></a></li>

      
        
        3412
        +                                                                                                                                <li><a href="/dictionary/english/hop-skip-and-a-jump" title="a hop, skip, and a jump idiom"><span class='arl6'><span class="base"><span class="phrase haf">a hop, skip, and a jump</span></span> <span class="pos">idiom</span></span></a></li>

      
        
        3413
        +                                                                                        </ul>

      
        
        3414
        +                                                            <a href="https://dictionary.cambridge.org/search/english/?q=skip&type=idiom" class="tb" 

      
        
        3415
        +                                        title="All idiom meanings of skip in English"

      
        
        3416
        +                                        rel="nofollow">

      
        
        3417
        +                                    See all idioms and phrases                                </a>

      
        
        3418
        +                                                    </div>

      
        
        3419
        +                    </section>

      
        
        3420
        +                            </amp-accordion>

      
        
        3421
        +

      
        
        3422
        +        </div>

      
        
        3423
        +    </aside>

      
        
        3424
        +

      
        
        3425
        +                <div id='ad_houseslot_a' class='am-default_moreslots '>

      
        
        3426
        +            <script type="text/javascript">iaw.cmd.push(function() { iaw.display('ad_houseslot_a'); });</script>

      
        
        3427
        +        </div>

      
        
        3428
        +    

      
        
        3429
        +    

      
        
        3430
        +        <div class="pr bw hbss x lmb-25">

      
        
        3431
        +    

      
        
        3432
        +    <div class="pr boa lp-5 lpl-10 lpr-10 lc1">

      
        
        3433
        +                    <div class="pr hdib i i-facebook lp-5 lmr-10">

      
        
        3434
        +            <a class="pa p0" onclick="sendGAEvent('share_this_entry', 'facebook')" target="_blank" rel="noopener" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fdictionary.cambridge.org%2Fdictionary%2Fenglish%2Ffish-for%23cald4-1&t=" title="Share on Facebook"></a>

      
        
        3435
        +        </div>

      
        
        3436
        +        <div class="pr hdib i i-x lp-5 lmr-10">

      
        
        3437
        +            <a class="pa p0" onclick="sendGAEvent('share_this_entry', 'twitter')" target="_blank" rel="noopener" href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fdictionary.cambridge.org%2Fdictionary%2Fenglish%2Ffish-for%23cald4-1&text=" title="Share on X"></a>

      
        
        3438
        +        </div>

      
        
        3439
        +    

      
        
        3440
        +        <div class="htc hax lmt-20 lmb-25">

      
        
        3441
        +            <p class="fs12 tcu lmb-0">Word of the Day</p>

      
        
        3442
        +            <p class="fs36 lmt-5 feature-w-big wotd-hw">

      
        
        3443
        +                <a href="/dictionary/english/fish-for#cald4-1">fish for something</a>

      
        
        3444
        +            </p>

      
        
        3445
        +                                </div>

      
        
        3446
        +    </div>

      
        
        3447
        +

      
        
        3448
        +    <div class="hoh lp-20">

      
        
        3449
        +        <p class="lmt-0 lmb-20">to try to catch a particular kind of fish from a river, sea, lake, etc.</p>

      
        
        3450
        +

      
        
        3451
        +        <a href="/dictionary/english/fish-for#cald4-1" class="bh hao hbtn hbtn-tab tb">About this</a>

      
        
        3452
        +    </div>

      
        
        3453
        +</div>

      
        
        3454
        +

      
        
        3455
        +

      
        
        3456
        +    

      
        
        3457
        +        <div class="bw hbss x lmb-25">

      
        
        3458
        +    

      
        
        3459
        +    <div class="hoh lp-20">

      
        
        3460
        +        <p class="h6 lm-0 lmb-15">Blog</p>

      
        
        3461
        +        <p class="fs19 hlh1_5 lmb-15">

      
        
        3462
        +            <a href="https://dictionaryblog.cambridge.org/2026/05/27/reuniting-and-reminiscing-talking-about-meeting-old-friends/" class="ha" target="_blank" rel="noopener noreferrer">Reuniting and reminiscing: talking about meeting old friends</a>

      
        
        3463
        +        </p>

      
        
        3464
        +        <div class="fs14 tc-bl lmb-20">

      
        
        3465
        +                        <time datetime="2026-05-27">May 27, 2026</time>

      
        
        3466
        +        </div>

      
        
        3467
        +        <div>

      
        
        3468
        +            <a href="https://dictionaryblog.cambridge.org/2026/05/27/reuniting-and-reminiscing-talking-about-meeting-old-friends/" target="_blank" rel="noopener noreferrer" class="bh hao hbtn hbtn-tab tb">

      
        
        3469
        +                Read More            </a>

      
        
        3470
        +        </div>

      
        
        3471
        +    </div>

      
        
        3472
        +</div>

      
        
        3473
        +

      
        
        3474
        +    

      
        
        3475
        +<div class="bw hbss x lmb-25">

      
        
        3476
        +                    

      
        
        3477
        +                

      
        
        3478
        +                <a href="https://dictionaryblog.cambridge.org/2026/05/25/new-words-25-may-2026/" target="_blank" rel="noopener noreferrer" class="hdb hao lc1">

      
        
        3479
        +            <amp-img src="/rss/images/tool-sprawl.jpg" height="180" width="300" alt="<p>tool sprawl" layout="responsive">

      
        
        3480
        +                <noscript>

      
        
        3481
        +                    <img src="/rss/images/tool-sprawl.jpg" height="180" width="300" alt="<p>tool sprawl" class="lc1" />

      
        
        3482
        +                </noscript>

      
        
        3483
        +            </amp-img>

      
        
        3484
        +        </a>

      
        
        3485
        +                <div class="hoh lp-20">

      
        
        3486
        +        <p class="h6 lm-0 lmb-5">New Words</p>

      
        
        3487
        +

      
        
        3488
        +        <div class="lmb-15  fs36 ">

      
        
        3489
        +            <a href="https://dictionaryblog.cambridge.org/2026/05/25/new-words-25-may-2026/" class="ha" target="_blank" rel="noopener noreferrer"><p>tool sprawl</a>

      
        
        3490
        +        </div>

      
        
        3491
        +

      
        
        3492
        +        <div class="fs14 tc-bl lmb-20">

      
        
        3493
        +                        <time datetime="2026-05-25">May 25, 2026</time>

      
        
        3494
        +        </div>

      
        
        3495
        +

      
        
        3496
        +        <a href="https://dictionaryblog.cambridge.org/2026/05/25/new-words-25-may-2026/" target="_blank" rel="noopener noreferrer" class="bh hao hbtn hbtn-tab tb">

      
        
        3497
        +            More new words        </a>

      
        
        3498
        +    </div>

      
        
        3499
        +</div>

      
        
        3500
        +            </div>

      
        
        3501
        +

      
        
        3502
        +        </div>

      
        
        3503
        +

      
        
        3504
        +    </div>

      
        
        3505
        +

      
        
        3506
        +            

      
        
        3507
        +

      
        
        3508
        +

      
        
        3509
        +<div class="pf py pb0 pl0 pr0">

      
        
        3510
        +            <div id="stickyslot_placeholder"></div>

      
        
        3511
        +    

      
        
        3512
        +    <div amp-access="loggedIn" amp-access-hide>

      
        
        3513
        +    <div class="q250 pa pl0 pt100 lmt-25 lml-20 lmr-20 lmax100 z5" 

      
        
        3514
        +            [class]="stateSidebarWordList.word != '' && stateSidebarWordList.word != null ? 'q250 pa pl0 pb0 lmb-25 lml-20 lmr-20 lmax100 z5' : 'q250 pa pl0 pt100 lmt-25 lml-20 lmr-20 lmax100 z5'">

      
        
        3515
        +        <div class="hdn" [class]="stateSidebarWordList.word != '' && stateSidebarWordList.word != null ? 'bpb tc-bd hbs-br lmb-25' : 'hdn'">

      
        
        3516
        +            <span on="tap:AMP.setState({ stateSidebarWordList: { wordlist_id: '', word: '', wordlist: '', url: '' } })" class="pa pt-10 pr-10 cx hbr50 bh hp">

      
        
        3517
        +                <i class="i i-close iw" aria-hidden="true"></i>

      
        
        3518
        +            </span>

      
        
        3519
        +            <div class="fs14 lpt-15 lpl-20 lpr-25 lpb-20">

      
        
        3520
        +                              <strong class="tb" [text]="stateSidebarWordList.word"></strong> has been added to <span [class]="stateSidebarWordList.url == '' || stateSidebarWordList.wordlist == ''  ? '' : 'hdn'">list</span><a class="hdn" [class]="stateSidebarWordList.url == '' || stateSidebarWordList.wordlist == '' ? 'hdn' : 'dipa'" [href]="stateSidebarWordList.url" [text]="stateSidebarWordList.wordlist"></a>

      
        
        3521
        +            </div>

      
        
        3522
        +        </div>

      
        
        3523
        +    </div>

      
        
        3524
        +    </div>

      
        
        3525
        +

      
        
        3526
        +    <div class="ccn bh hax lpt-5 lpb-5 lp-m_l-15 lp-m_r-15" id="ContentsMenu">

      
        
        3527
        +        <div class="x fs15 lpt-3 lpb-3">

      
        
        3528
        +

      
        
        3529
        +            <div class="hfr lmt--2">

      
        
        3530
        +                <span class="hao hdib lpt-5 lpb-5 lpl-15 lpr-15 hp" on="tap:top.scrollTo">

      
        
        3531
        +                    <span class="hdi">To top</span>

      
        
        3532
        +                    <span class="lml-10 hv2"><i class="i arrow-circle-o-up iw" aria-hidden="true"></i></span>

      
        
        3533
        +                </span>

      
        
        3534
        +            </div>

      
        
        3535
        +                        <a href="/assistant" onclick="window.assistantTracker?.eventMobileStickyBtnClick()">

      
        
        3536
        +                <button class="ai-bar-button">

      
        
        3537
        +                    <img src="/external/images/assistant/icon-ai-primary-md.svg?version=6.0.78" width="24" height="24" alt="AI icon" />

      
        
        3538
        +                    <span class="ai-button-text">AI Assistant</span>

      
        
        3539
        +                </button>

      
        
        3540
        +            </a>

      
        
        3541
        +            

      
        
        3542
        +    <div class="hoh">

      
        
        3543
        +        <div class="hfl">

      
        
        3544
        +            <span class="hao hdib lpt-5 lpb-5 lpl-15 lpr-15 fon hp" on="tap:sidebarContentNav.open">

      
        
        3545
        +                <span class="cb hv-2 lmr-10"><i></i></span>

      
        
        3546
        +                <span class="hv2">Contents</span>

      
        
        3547
        +            </span>

      
        
        3548
        +        </div>

      
        
        3549
        +

      
        
        3550
        +        

      
        
        3551
        +                                        

      
        
        3552
        +                

      
        
        3553
        +        <div class="ccnl hoh fs10 tb tcu tcu hdn hdb-l hls1 lpt-3">

      
        
        3554
        +            <a href="#dataset_cald4" class="hao hdib lpt-5 lpb-5 lpl-15 lpr-15 lbl lb-cn">English</a><a href="#dataset_cacd" class="hao hdib lpt-5 lpb-5 lpl-15 lpr-15 lbl lb-cn">American</a><a href="#dataset_cbed" class="hao hdib lpt-5 lpb-5 lpl-15 lpr-15 lbl lb-cn">Business</a><a href="#dataset_examples" class="hao hdib lpt-5 lpb-5 lpl-15 lpr-15 lbl lb-cn">Examples</a><a href="#dataset_translations" class="hao hdib lpt-5 lpb-5 lpl-15 lpr-15 lbl lb-cn">Translations</a>        </div>

      
        
        3555
        +    </div>

      
        
        3556
        +

      
        
        3557
        +

      
        
        3558
        +        </div>

      
        
        3559
        +    </div>

      
        
        3560
        +</div>

      
        
        3561
        +    </div>

      
        
        3562
        +

      
        
        3563
        +    <amp-image-lightbox id="lightbox-entry" layout="nodisplay" data-close-button-aria-label="Close"></amp-image-lightbox>

      
        
        3564
        +

      
        
        3565
        +

      
        
        3566
        +                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

      
        
        3567
        +<script type="text/javascript">

      
        
        3568
        +    JSON.parse("{&quot;business_financial_industrial_technology/including-and-excluding&quot;:&quot;excluding&quot;,&quot;sports_sporting_goods/moving-quickly-and-slowly&quot;:&quot;moving-quickly&quot;,&quot;sports_sporting_goods/sports&quot;:&quot;bowls-bowling-and-croquet&quot;,&quot;sports_sporting_goods/sports&quot;:&quot;competitors-and-participants-in-sports-and-games&quot;,&quot;shopping_consumer_resources/containers-and-vessels&quot;:&quot;containers-for-waste&quot;,&quot;leisure_food_travel/arriving-and-departing&quot;:&quot;runaways-and-refugees&quot;,&quot;leisure_food_travel/arriving-and-departing&quot;:&quot;movement-through-the-air&quot;,&quot;leisure_food_travel/games-and-activities&quot;:&quot;miscellaneous-games-and-activities&quot;,&quot;NONE/moving-up-or-down&quot;:&quot;jumping&quot;,&quot;jobs_education_resumes/doing-and-achieving&quot;:&quot;avoiding-action&quot;}".replace(/(&quot\;)/g,"\""), (chanel, topic) => {

      
        
        3569
        +        if(typeof topic === 'string') {

      
        
        3570
        +            sendGAEvent('Channelization', chanel, topic, {'nonInteraction':1});

      
        
        3571
        +            // alert(chanel +','+ topic);

      
        
        3572
        +        }

      
        
        3573
        +    });

      
        
        3574
        +</script>

      
        
        3575
        +

      
        
        3576
        +  

      
        
        3577
        +    </div>

      
        
        3578
        +

      
        
        3579
        +    

      
        
        3580
        +    <script>

      
        
        3581
        +        var gigyaAuthEnabled = true;

      
        
        3582
        +        var thresholdPublic = 5;

      
        
        3583
        +    </script>

      
        
        3584
        +

      
        
        3585
        +<amp-state id="stateFtr">

      
        
        3586
        +    <script type="application/json">

      
        
        3587
        +        {

      
        
        3588
        +        "learn": false,

      
        
        3589
        +        "develop": false,

      
        
        3590
        +        "about": false

      
        
        3591
        +        }

      
        
        3592
        +    </script>

      
        
        3593
        +</amp-state>

      
        
        3594
        +

      
        
        3595
        +<script type="text/plain" class="optanon-category-C0004">

      
        
        3596
        +!function(f,b,e,v,n,t,s)

      
        
        3597
        +{if(f.fbq)return;n=f.fbq=function(){n.callMethod?

      
        
        3598
        +n.callMethod.apply(n,arguments):n.queue.push(arguments)};

      
        
        3599
        +if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';

      
        
        3600
        +n.queue=[];t=b.createElement(e);t.async=!0;

      
        
        3601
        +t.src=v;s=b.getElementsByTagName(e)[0];

      
        
        3602
        +s.parentNode.insertBefore(t,s)}(window,document,'script',

      
        
        3603
        +'https://connect.facebook.net/en_US/fbevents.js');

      
        
        3604
        +fbq('init', '3409493515968429');

      
        
        3605
        +fbq('track', 'PageView');

      
        
        3606
        +</script>

      
        
        3607
        +<noscript>

      
        
        3608
        +<img height="1" width="1"

      
        
        3609
        +src="https://www.facebook.com/tr?id=3409493515968429&ev=PageView

      
        
        3610
        +&noscript=1"/>

      
        
        3611
        +</noscript>

      
        
        3612
        +  <script type="text/javascript">

      
        
        3613
        +	var polarbyteConfig = {

      
        
        3614
        +		appId: "cdo",

      
        
        3615
        +        anonymousTrackingMode: "full"

      
        
        3616
        +        	}

      
        
        3617
        +            	polarbyteConfig.pageContext = {

      
        
        3618
        +    	locale:   "en" ,

      
        
        3619
        +        section:  "dictionary" ,

      
        
        3620
        +        subsection:  "english" ,

      
        
        3621
        +        type:  "english_entry"         }

      
        
        3622
        +    

      
        
        3623
        +              polarbyteConfig.productContext = {"id":"english/skip","type":"MonoEngEntry"};

      
        
        3624
        +    

      
        
        3625
        +    		polarbyteConfig.entryContext = {"entry_id":"skip","name":"skip","datasets":["english"],"domain":"D1D","language":["en"],"levels":null,"pos":["verb"],"region":null,"usage":null}

      
        
        3626
        +    

      
        
        3627
        +    		polarbyteConfig.searchMetadata = {"dataset":"English","datasetType":"english","searchFormId":"searchForm","searchFieldId":"searchword"}

      
        
        3628
        +    

      
        
        3629
        +    

      
        
        3630
        +                polarbyteConfig.survey = {"apiHost":"https://cloud.polarbyte.com/webapps-api","enabled":true,"projectName":"CDO","userAttributes":{"country":"UA"},"contexts":{"page":{"locale":true,"section":true,"subsection":true,"type":true,"scenario":false}}}

      
        
        3631
        +    

      
        
        3632
        +    

      
        
        3633
        +    window.assistantTracker = {

      
        
        3634
        +        sendEvent: function(event, metadata) {

      
        
        3635
        +            if (!window || !window.polarbytereach || !window.polarbytereach.trackPublisherCustomEvent) {

      
        
        3636
        +                console.error('Failed to call polarbytereach.trackPublisherCustomEvent, tracker is not available:', { event, metadata});

      
        
        3637
        +                return;

      
        
        3638
        +            }

      
        
        3639
        +

      
        
        3640
        +            try {

      
        
        3641
        +                window.polarbytereach.trackPublisherCustomEvent(event, metadata);

      
        
        3642
        +            } catch (error) {

      
        
        3643
        +                console.error('Failed to call polarbytereach.trackPublisherCustomEvent:', { error, event, metadata });

      
        
        3644
        +            }

      
        
        3645
        +        },

      
        
        3646
        +

      
        
        3647
        +        getEvent: function(action, label, property, value) {

      
        
        3648
        +            return {category: 'AI_ASSISTANT', action: action, label: label, property: property, value: value};

      
        
        3649
        +        },

      
        
        3650
        +

      
        
        3651
        +        eventHeaderBtnClick: function() {

      
        
        3652
        +            var event = this.getEvent('HEADER_BTN_CLICK');

      
        
        3653
        +            this.sendEvent(event, undefined);

      
        
        3654
        +        },

      
        
        3655
        +

      
        
        3656
        +        eventBurgerMenuItemClick: function() {

      
        
        3657
        +            var event = this.getEvent('BURGER_MENU_ITEM_CLICK');

      
        
        3658
        +            this.sendEvent(event, undefined);

      
        
        3659
        +        },

      
        
        3660
        +

      
        
        3661
        +        eventMobileStickyBtnClick: function() {

      
        
        3662
        +            var event = this.getEvent('MOBILE_STICKY_BTN_CLICK');

      
        
        3663
        +            this.sendEvent(event, undefined);

      
        
        3664
        +        }

      
        
        3665
        +    };

      
        
        3666
        +  </script>

      
        
        3667
        +

      
        
        3668
        +      <script type="text/javascript" src="https://assets.polarbyte.com/scripts/latest/reach/pb-reach.iife.min.js" async></script>

      
        
        3669
        +              <script type="text/javascript" src="https://assets.polarbyte.com/scripts/latest/survey/pb-survey.iife.min.js" async></script>

      
        
        3670
        +        

      
        
        3671
        +

      
        
        3672
        +<div class="ai-bar">

      
        
        3673
        +    <a href="/assistant" onclick="window.assistantTracker?.eventMobileStickyBtnClick()">

      
        
        3674
        +        <button class="ai-bar-button">

      
        
        3675
        +            <img src="/external/images/assistant/icon-ai-primary-md.svg?version=6.0.78" width="24" height="24" alt="AI icon" />

      
        
        3676
        +            <span class="ai-button-text">AI Assistant</span>

      
        
        3677
        +        </button>

      
        
        3678
        +    </a>

      
        
        3679
        +</div>

      
        
        3680
        +

      
        
        3681
        +<footer id="footer" class="pr bh han cf lp-s_25 lp-s_t-15">

      
        
        3682
        +    <div class="lcs lp-l_l-25 lp-l_r-25 lmax">

      
        
        3683
        +

      
        
        3684
        +        

      
        
        3685
        +        <div class="lpt-10 lpb-20 lpr-10 hdn hdb-xs hdn-s hfr-xs">

      
        
        3686
        +            <div class="hfl hax htc tc-w lc1 lc-xsa lb-ch lbb0-xs lpt-10 lp-xs_t-0">

      
        
        3687
        +    <div class="r2-flex-sm r2-flex-col r2-text-black r2-gap-25 r2-items-end">

      
        
        3688
        +        <div class="r2-flex-sm r2-gap-10">

      
        
        3689
        +            <a href="https://www.facebook.com/CUPCambridgeDictionary/" target="_blank" rel="noopener noreferrer external" title="Become our fan!">

      
        
        3690
        +                <svg color="#000" class="" role="img" viewBox="0 0 602 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;">

      
        
        3691
        +                    <path d="M548 34.286v150.857h-89.714q-49.143 0-66.286 20.571t-17.143 61.714v108h167.429l-22.286 169.143h-145.143v433.714h-174.857v-433.714h-145.714v-169.143h145.714v-124.571q0-106.286 59.429-164.857t158.286-58.571q84 0 130.286 6.857z"/>

      
        
        3692
        +                    <title>Facebook</title>

      
        
        3693
        +                </svg>

      
        
        3694
        +            </a>

      
        
        3695
        +            <a href="https://www.instagram.com/cambridgewords" target="_blank" rel="noopener noreferrer external" title="Follow our Instagram!">

      
        
        3696
        +                <svg color="#000" role="img" viewBox="0 0 1024 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;">

      
        
        3697
        +                    <path d="M512 92.2c136.8 0 153 0.6 206.8 3 50 2.2 77 10.6 95 17.6 23.8 9.2 41 20.4 58.8 38.2 18 18 29 35 38.4 58.8 7 18 15.4 45.2 17.6 95 2.4 54 3 70.2 3 206.8s-0.6 153-3 206.8c-2.2 50-10.6 77-17.6 95-9.2 23.8-20.4 41-38.2 58.8-18 18-35 29-58.8 38.4-18 7-45.2 15.4-95 17.6-54 2.4-70.2 3-206.8 3s-153-0.6-206.8-3c-50-2.2-77-10.6-95-17.6-23.8-9.2-41-20.4-58.8-38.2-18-18-29-35-38.4-58.8-7-18-15.4-45.2-17.6-95-2.4-54-3-70.2-3-206.8s0.6-153 3-206.8c2.2-50 10.6-77 17.6-95 9.2-23.8 20.4-41 38.2-58.8 18-18 35-29 58.8-38.4 18-7 45.2-15.4 95-17.6 53.8-2.4 70-3 206.8-3zM512 0c-139 0-156.4 0.6-211 3-54.4 2.4-91.8 11.2-124.2 23.8-33.8 13.2-62.4 30.6-90.8 59.2-28.6 28.4-46 57-59.2 90.6-12.6 32.6-21.4 69.8-23.8 124.2-2.4 54.8-3 72.2-3 211.2s0.6 156.4 3 211c2.4 54.4 11.2 91.8 23.8 124.2 13.2 33.8 30.6 62.4 59.2 90.8 28.4 28.4 57 46 90.6 59 32.6 12.6 69.8 21.4 124.2 23.8 54.6 2.4 72 3 211 3s156.4-0.6 211-3c54.4-2.4 91.8-11.2 124.2-23.8 33.6-13 62.2-30.6 90.6-59s46-57 59-90.6c12.6-32.6 21.4-69.8 23.8-124.2 2.4-54.6 3-72 3-211s-0.6-156.4-3-211c-2.4-54.4-11.2-91.8-23.8-124.2-12.6-34-30-62.6-58.6-91-28.4-28.4-57-46-90.6-59-32.6-12.6-69.8-21.4-124.2-23.8-54.8-2.6-72.2-3.2-211.2-3.2v0zM512 249c-145.2 0-263 117.8-263 263s117.8 263 263 263 263-117.8 263-263c0-145.2-117.8-263-263-263zM512 682.6c-94.2 0-170.6-76.4-170.6-170.6s76.4-170.6 170.6-170.6c94.2 0 170.6 76.4 170.6 170.6s-76.4 170.6-170.6 170.6zM846.8 238.6c0 33.91-27.49 61.4-61.4 61.4s-61.4-27.49-61.4-61.4c0-33.91 27.49-61.4 61.4-61.4s61.4 27.49 61.4 61.4z"/>

      
        
        3698
        +                    <title>Instagram</title>

      
        
        3699
        +                </svg>

      
        
        3700
        +            </a>

      
        
        3701
        +            <a href="https://twitter.com/CambridgeWords" target="_blank" rel="noopener noreferrer external" title="Follow us!">

      
        
        3702
        +                <svg color="#000" role="img" viewBox="0 0 1024 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;" >

      
        
        3703
        +                    <path d="M778.411 96h141.141l-308.352 352.427 362.752 479.573h-284.032l-222.464-290.859-254.549 290.859h-141.227l329.813-376.96-347.989-455.040h291.243l201.088 265.856zM728.875 843.52h78.208l-504.832-667.477h-83.925z"/>

      
        
        3704
        +                    <title>X</title>

      
        
        3705
        +                </svg>

      
        
        3706
        +            </a>

      
        
        3707
        +        </div>

      
        
        3708
        +        <div><a href="https://www.cambridge.org/" title="Cambridge University Press &amp; Assessment"><img src="/external/images/rv2-design/cup&a-logo-black-@1x.png?version=6.0.78" alt="cdo logo" rel="external" width="190" height="30"/></a></div>

      
        
        3709
        +        <div><img src="/external/images/rv2-design/where-your-world-grows.png?version=6.0.78" alt="cdo logo" width="305" height="35" /></div>

      
        
        3710
        +        <div class="fs12">© Cambridge University Press & Assessment 2026</div>

      
        
        3711
        +    </div>

      
        
        3712
        +</div>        </div>

      
        
        3713
        +

      
        
        3714
        +        <div class="cfn hfl-s lc1 lc-xsa hul-u hul-un hul-u0 lmb-0 lcs">

      
        
        3715
        +            <div class="cfnl hfl-s lp-s_r-20 lbb lb-ch lbb0-s">

      
        
        3716
        +    <div class="r2-text-black tc-w fs18 hax hdn-s">

      
        
        3717
        +        <span class="pr hdb fs12 tcu lp-15 lpt-5 lpb-5 hlh24 hp" on="tap:AMP.setState({ stateFtr: { learn: ! stateFtr.learn } })">

      
        
        3718
        +            Learn

      
        
        3719
        +            <span class="hdn-m"><i class="i i-plus ibw pa cfni" [class]="stateFtr.learn ? 'i i-minus ibw pa cfni' : 'i i-plus ibw pa cfni'" aria-hidden="true"></i></span>

      
        
        3720
        +        </span>

      
        
        3721
        +    </div>

      
        
        3722
        +    <div class="lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s" [class]="stateFtr.learn ? 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 r2-text-black' : 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s r2-text-black'">

      
        
        3723
        +        <a href="/learn.html" class="hdn hdb-s tc-w lpb-5 fs12 tcu hlh22">Learn</a>

      
        
        3724
        +        <a href="/learn.html" class="hdn-s">Learn</a>

      
        
        3725
        +        <a href="https://dictionaryblog.cambridge.org/category/new-words/" class="hdb">New Words</a>

      
        
        3726
        +        <a href="/help/" class=" hdb ">Help</a>

      
        
        3727
        +        <a href="https://www.cambridge.org/gb/cambridgeenglish/catalog/dictionaries" target="_blank" rel="noopener noreferrer" class="hdb">In Print</a>

      
        
        3728
        +                                    <a href="/editorial/word-of-the-year/2021" class="hdb">Word of the Year 2021</a>

      
        
        3729
        +                            <a href="/editorial/word-of-the-year/2022" class="hdb">Word of the Year 2022</a>

      
        
        3730
        +                            <a href="/editorial/word-of-the-year/2023" class="hdb">Word of the Year 2023</a>

      
        
        3731
        +                            <a href="/editorial/word-of-the-year/2024" class="hdb">Word of the Year 2024</a>

      
        
        3732
        +                            <a href="/editorial/word-of-the-year" class="hdb">Word of the Year 2025</a>

      
        
        3733
        +                        </div>

      
        
        3734
        +</div>

      
        
        3735
        +<div class="cfnl hfl-s lp-s_r-20 lp-s_l-20 lbb lb-ch lbb0-s">

      
        
        3736
        +    <div class="r2-text-black tc-w fs18 hax hdn-s">

      
        
        3737
        +        <span class="pr hdb fs12 tcu lp-15 lpt-5 lpb-5 hlh24 hp" on="tap:AMP.setState({ stateFtr: { develop: ! stateFtr.develop } })">

      
        
        3738
        +            Develop

      
        
        3739
        +            <span class="hdn-m"><i class="i i-plus ibw pa cfni" [class]="stateFtr.develop ? 'i i-minus ibw pa cfni' : 'i i-plus ibw pa cfni'" aria-hidden="true"></i></span>

      
        
        3740
        +        </span>

      
        
        3741
        +    </div>

      
        
        3742
        +    <div class="lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s" [class]="stateFtr.develop ? 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 r2-text-black' : 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s r2-text-black'">

      
        
        3743
        +        <a href="/develop.html" class="hdn hdb-s tc-w lpb-5 fs12 tcu hlh22">Develop</a>

      
        
        3744
        +        <a href="/develop.html" class="hdn-s">Develop</a>

      
        
        3745
        +        <a href="http://dictionary-api.cambridge.org" target="_blank" rel="noopener noreferrer" class="hdb">Dictionary API</a>

      
        
        3746
        +        <a href="/doubleclick.html" class="hdb">Double-Click Lookup</a>

      
        
        3747
        +        <a href="/freesearch.html" class="hdb">Search Widgets</a>

      
        
        3748
        +        <a href="/license.html" class="hdb">License Data</a>

      
        
        3749
        +                                </div>

      
        
        3750
        +</div>

      
        
        3751
        +<div class="cfnl hfl-s lp-s_r-20 lp-s_l-20 lbb lb-ch lbb0-s">

      
        
        3752
        +    <div class="r2-text-black tc-w fs18 hax hdn-s">

      
        
        3753
        +        <span class="pr hdb fs12 tcu lp-15 lpt-5 lpb-5 hlh24 hp" on="tap:AMP.setState({ stateFtr: { about: ! stateFtr.about } })">

      
        
        3754
        +            About

      
        
        3755
        +            <span class="hdn-m"><i class="i i-plus ibw pa cfni" [class]="stateFtr.about ? 'i i-minus ibw pa cfni' : 'i i-plus ibw pa cfni'" aria-hidden="true"></i></span>

      
        
        3756
        +        </span>

      
        
        3757
        +    </div>

      
        
        3758
        +    <div class="lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s" [class]="stateFtr.about ? 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 r2-text-black' : 'lpl-15 lp-s_l-0 fs14 hlh21 lmb-20 hdn hdb-s r2-text-black'">

      
        
        3759
        +        <a href="/about.html" class="hdn hdb-s tc-w lpb-5 fs12 tcu hlh22">About</a>

      
        
        3760
        +        <a href="/about.html" class="hdn-s">About</a>

      
        
        3761
        +        <a href="https://www.cambridge.org/accessibility/" target="_blank" rel="noopener noreferrer" class="hdb">Accessibility</a>

      
        
        3762
        +        <a href="https://www.cambridge.org/us/cambridgeenglish" target="_blank" rel="noopener noreferrer" class="hdb">Cambridge English</a>

      
        
        3763
        +        <a href="https://www.cambridge.org/" target="_blank" rel="noopener noreferrer" class="hdb">Cambridge University Press & Assessment</a>

      
        
        3764
        +                    <span id="ot-sdk-btn" class="ot-sdk-show-settings hdb ha">Consent Management</span>

      
        
        3765
        +                <a href="https://www.cambridge.org/about-us/legal-notices/privacy-notice" target="_blank" rel="noopener noreferrer" class="hdb">Cookies and Privacy</a>

      
        
        3766
        +        <a href="https://www.cambridge.org/elt/corpus/" target="_blank" rel="noopener noreferrer" class="hdb">Corpus</a>

      
        
        3767
        +        <a href="https://www.cambridge.org/about-us/terms-use/" target="_blank" rel="noopener noreferrer" class="hdb">Terms of Use</a>

      
        
        3768
        +

      
        
        3769
        +                    <a href="https://www.cambridge.org/legal/ai-tool-terms-of-use" target="_blank" rel="noopener noreferrer" class="hdb">AI Terms of Use</a>

      
        
        3770
        +        

      
        
        3771
        +                                        </div>

      
        
        3772
        +</div>        </div>

      
        
        3773
        +

      
        
        3774
        +        <div class="cfd lpb-20 hdn-xs hdb-s hfr-s">

      
        
        3775
        +            <div class="hfl hax htc tc-w lc1 lc-xsa lb-ch lbb0-xs lpt-10 lp-xs_t-0">

      
        
        3776
        +    <div class="r2-flex-sm r2-flex-col r2-text-black r2-gap-25 r2-items-end">

      
        
        3777
        +        <div class="r2-flex-sm r2-gap-10">

      
        
        3778
        +            <a href="https://www.facebook.com/CUPCambridgeDictionary/" target="_blank" rel="noopener noreferrer external" title="Become our fan!">

      
        
        3779
        +                <svg color="#000" class="" role="img" viewBox="0 0 602 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;">

      
        
        3780
        +                    <path d="M548 34.286v150.857h-89.714q-49.143 0-66.286 20.571t-17.143 61.714v108h167.429l-22.286 169.143h-145.143v433.714h-174.857v-433.714h-145.714v-169.143h145.714v-124.571q0-106.286 59.429-164.857t158.286-58.571q84 0 130.286 6.857z"/>

      
        
        3781
        +                    <title>Facebook</title>

      
        
        3782
        +                </svg>

      
        
        3783
        +            </a>

      
        
        3784
        +            <a href="https://www.instagram.com/cambridgewords" target="_blank" rel="noopener noreferrer external" title="Follow our Instagram!">

      
        
        3785
        +                <svg color="#000" role="img" viewBox="0 0 1024 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;">

      
        
        3786
        +                    <path d="M512 92.2c136.8 0 153 0.6 206.8 3 50 2.2 77 10.6 95 17.6 23.8 9.2 41 20.4 58.8 38.2 18 18 29 35 38.4 58.8 7 18 15.4 45.2 17.6 95 2.4 54 3 70.2 3 206.8s-0.6 153-3 206.8c-2.2 50-10.6 77-17.6 95-9.2 23.8-20.4 41-38.2 58.8-18 18-35 29-58.8 38.4-18 7-45.2 15.4-95 17.6-54 2.4-70.2 3-206.8 3s-153-0.6-206.8-3c-50-2.2-77-10.6-95-17.6-23.8-9.2-41-20.4-58.8-38.2-18-18-29-35-38.4-58.8-7-18-15.4-45.2-17.6-95-2.4-54-3-70.2-3-206.8s0.6-153 3-206.8c2.2-50 10.6-77 17.6-95 9.2-23.8 20.4-41 38.2-58.8 18-18 35-29 58.8-38.4 18-7 45.2-15.4 95-17.6 53.8-2.4 70-3 206.8-3zM512 0c-139 0-156.4 0.6-211 3-54.4 2.4-91.8 11.2-124.2 23.8-33.8 13.2-62.4 30.6-90.8 59.2-28.6 28.4-46 57-59.2 90.6-12.6 32.6-21.4 69.8-23.8 124.2-2.4 54.8-3 72.2-3 211.2s0.6 156.4 3 211c2.4 54.4 11.2 91.8 23.8 124.2 13.2 33.8 30.6 62.4 59.2 90.8 28.4 28.4 57 46 90.6 59 32.6 12.6 69.8 21.4 124.2 23.8 54.6 2.4 72 3 211 3s156.4-0.6 211-3c54.4-2.4 91.8-11.2 124.2-23.8 33.6-13 62.2-30.6 90.6-59s46-57 59-90.6c12.6-32.6 21.4-69.8 23.8-124.2 2.4-54.6 3-72 3-211s-0.6-156.4-3-211c-2.4-54.4-11.2-91.8-23.8-124.2-12.6-34-30-62.6-58.6-91-28.4-28.4-57-46-90.6-59-32.6-12.6-69.8-21.4-124.2-23.8-54.8-2.6-72.2-3.2-211.2-3.2v0zM512 249c-145.2 0-263 117.8-263 263s117.8 263 263 263 263-117.8 263-263c0-145.2-117.8-263-263-263zM512 682.6c-94.2 0-170.6-76.4-170.6-170.6s76.4-170.6 170.6-170.6c94.2 0 170.6 76.4 170.6 170.6s-76.4 170.6-170.6 170.6zM846.8 238.6c0 33.91-27.49 61.4-61.4 61.4s-61.4-27.49-61.4-61.4c0-33.91 27.49-61.4 61.4-61.4s61.4 27.49 61.4 61.4z"/>

      
        
        3787
        +                    <title>Instagram</title>

      
        
        3788
        +                </svg>

      
        
        3789
        +            </a>

      
        
        3790
        +            <a href="https://twitter.com/CambridgeWords" target="_blank" rel="noopener noreferrer external" title="Follow us!">

      
        
        3791
        +                <svg color="#000" role="img" viewBox="0 0 1024 1024" style="display: inline-block; stroke: currentcolor; fill: currentcolor; width: 16px; height: 16px;" >

      
        
        3792
        +                    <path d="M778.411 96h141.141l-308.352 352.427 362.752 479.573h-284.032l-222.464-290.859-254.549 290.859h-141.227l329.813-376.96-347.989-455.040h291.243l201.088 265.856zM728.875 843.52h78.208l-504.832-667.477h-83.925z"/>

      
        
        3793
        +                    <title>X</title>

      
        
        3794
        +                </svg>

      
        
        3795
        +            </a>

      
        
        3796
        +        </div>

      
        
        3797
        +        <div><a href="https://www.cambridge.org/" title="Cambridge University Press &amp; Assessment"><img src="/external/images/rv2-design/cup&a-logo-black-@1x.png?version=6.0.78" alt="cdo logo" rel="external" width="190" height="30"/></a></div>

      
        
        3798
        +        <div><img src="/external/images/rv2-design/where-your-world-grows.png?version=6.0.78" alt="cdo logo" width="305" height="35" /></div>

      
        
        3799
        +        <div class="fs12">© Cambridge University Press & Assessment 2026</div>

      
        
        3800
        +    </div>

      
        
        3801
        +</div>        </div>

      
        
        3802
        +    </div>

      
        
        3803
        +</footer>

      
        
        3804
        +

      
        
        3805
        +<span class="iwc bhb pf ctop hp" on="tap:top.scrollTo"><i class="i i-chevron-up iw" aria-hidden="true"></i></span>

      
        
        3806
        +

      
        
        3807
        +<div amp-access="1=1">

      
        
        3808
        +    <template amp-access-template type="amp-mustache">

      
        
        3809
        +        {{#displayLoginPopup}}

      
        
        3810
        +            <amp-user-notification data-persist-dismissal="false" id="loginPopup" class="loginPopupContainer"

      
        
        3811
        +                layout="nodisplay" tabindex="0">

      
        
        3812
        +                <div class="fon loginPopup" role="button" tabindex="0">

      
        
        3813
        +                    <!-- desktop -->

      
        
        3814
        +<div class="hdn hdb-xs ibd tb pr loginPopupContent">

      
        
        3815
        +    <amp-img class=""

      
        
        3816
        +        src="/external/images/login/login_desktop.svg"

      
        
        3817
        +        width="920" height="420" layout="responsive" alt="Login popup"> </amp-img>

      
        
        3818
        +

      
        
        3819
        +    <div class="pa loginPopupPanel">

      
        
        3820
        +        <!-- Cambridge banner -->

      
        
        3821
        +        <div class="hdf">

      
        
        3822
        +            <span class="hdb tc-w flx-g_4 lpBanner">

      
        
        3823
        +                <span class="hdib bh lp-15 lpt-2 lpb-2">Cambridge</span>

      
        
        3824
        +                <span class="hdb">

      
        
        3825
        +                    <span class="hdib bod lp-15 lpt-2 lpb-2">Dictionary +Plus</span>

      
        
        3826
        +                </span>

      
        
        3827
        +            </span>

      
        
        3828
        +            <span class="hdib">

      
        
        3829
        +                <span class="iwc bh hdib hao fon hp" on="tap:loginPopup.dismiss" role="button"

      
        
        3830
        +                    aria-label="Close login panel" tabindex="0">

      
        
        3831
        +                    <i class="i i-close iw" aria-hidden="true"></i>

      
        
        3832
        +                </span>

      
        
        3833
        +            </span>

      
        
        3834
        +        </div>

      
        
        3835
        +        <!-- Content -->

      
        
        3836
        +        <div class="hdf hflxy lpContentDsk">

      
        
        3837
        +            <div>

      
        
        3838
        +                <h2 class="tb htc">

      
        
        3839
        +                    <span class="">Learn more with</span>

      
        
        3840
        +                    <span class="bod tc-w lp-5">+Plus</span>

      
        
        3841
        +                </h2>

      
        
        3842
        +            </div>

      
        
        3843
        +            <div class="hdf flx-g_2">

      
        
        3844
        +                <div class="lpContentDskContentLeft">

      
        
        3845
        +                    <span class="bsb tc-w lp-4">Sign up</span>

      
        
        3846
        +                    for free and get access to exclusive content:                </div>

      
        
        3847
        +                <div class="hdf hflxy flx-g_2 lpContentDskContentRight">

      
        
        3848
        +                    <div class="flx-g_1">

      
        
        3849
        +                        <span class="bpl tc-w lp-4">Free</span>

      
        
        3850
        +                        word lists and quizzes from Cambridge                    </div>

      
        
        3851
        +                    <div class="flx-g_1">

      
        
        3852
        +                        <span class="bpl tc-w lp-4">Tools</span>

      
        
        3853
        +                        to create your own word lists and quizzes                    </div>

      
        
        3854
        +                    <div class="flx-g_1">

      
        
        3855
        +                        <span class="bpl tc-w lp-4">Word lists</span>

      
        
        3856
        +                        shared by our community of dictionary fans                    </div>

      
        
        3857
        +                    <div class="lpContentDskSign">

      
        
        3858
        +                        <span on="tap:amp-access.login-sign-up" class="bh hao hbtn hbtn-tab">Sign up now</span> or <span on="tap:amp-access.login-sign-in" class="bsb hao hbtn hbtn-tab tb tc-bd">Log in</span>

      
        
        3859
        +                    </div>

      
        
        3860
        +                </div>

      
        
        3861
        +            </div>

      
        
        3862
        +        </div>

      
        
        3863
        +    </div>

      
        
        3864
        +</div>

      
        
        3865
        +

      
        
        3866
        +<!-- mobile -->

      
        
        3867
        +<div class="hdb hdn-xs ibd tb pr loginPopupContent">

      
        
        3868
        +    <amp-img

      
        
        3869
        +        src="/external/images/login/login_mobile.svg"

      
        
        3870
        +        width="300" height="250" layout="responsive" alt="Login popup"> </amp-img>

      
        
        3871
        +

      
        
        3872
        +    <div class="pa loginPopupPanel">

      
        
        3873
        +        <!-- Cambridge banner -->

      
        
        3874
        +        <div class="hdf">

      
        
        3875
        +            <span class="hdb tc-w flx-g_4">

      
        
        3876
        +                <span class="hdib bh lp-15 lpt-2 lpb-2">Cambridge</span>

      
        
        3877
        +                <span class="hdb">

      
        
        3878
        +                    <span class="hdib bod lp-15 lpt-2 lpb-2">Dictionary +Plus</span>

      
        
        3879
        +                </span>

      
        
        3880
        +            </span>

      
        
        3881
        +            <span class="hdib">

      
        
        3882
        +                <span class="iwc bh hdib hao fon hp" on="tap:loginPopup.dismiss" role="button"

      
        
        3883
        +                    aria-label="Close login panel" tabindex="0">

      
        
        3884
        +                    <i class="i i-close iw" aria-hidden="true"></i>

      
        
        3885
        +                </span>

      
        
        3886
        +            </span>

      
        
        3887
        +        </div>

      
        
        3888
        +        <!-- Content -->

      
        
        3889
        +        <div class="hdf hflxy htc lpContentMob">

      
        
        3890
        +            <div class="flx-g_1 lpContentMobTitle">

      
        
        3891
        +                <h2 class="tb">

      
        
        3892
        +                    <span class="">Learn more with</span>

      
        
        3893
        +                    <span class="bod tc-w lp-5">+Plus</span>

      
        
        3894
        +                </h2>

      
        
        3895
        +            </div>

      
        
        3896
        +            <div class="flx-g_2 lpContentMobContent">Create word lists and quizzes for free</div>

      
        
        3897
        +            <div class="flx-g_1 lpContentMobSign">

      
        
        3898
        +                <span on="tap:amp-access.login-sign-up" class="bh hao hbtn hbtn-tab">Sign up now</span> or <span on="tap:amp-access.login-sign-in" class="bsb hao hbtn hbtn-tab tb tc-bd">Log in</span>

      
        
        3899
        +            </div>

      
        
        3900
        +        </div>

      
        
        3901
        +    </div>

      
        
        3902
        +</div>

      
        
        3903
        +

      
        
        3904
        +                </div>

      
        
        3905
        +            </amp-user-notification>

      
        
        3906
        +        {{/displayLoginPopup}}

      
        
        3907
        +

      
        
        3908
        +        {{#displayClassicSurvey}}

      
        
        3909
        +                        {{/displayClassicSurvey}}

      
        
        3910
        +    </template>

      
        
        3911
        +</div>

      
        
        3912
        +

      
        
        3913
        +

      
        
        3914
        +  <script type='text/javascript'>

      
        
        3915
        +    var aBk = true;

      
        
        3916
        +  </script>

      
        
        3917
        +  <script type='text/javascript' src="/external/scripts/ads.min.js?version=6.0.78" ></script>

      
        
        3918
        +                                                                                                                                                                                                                                                                                <script type='text/javascript'>

      
        
        3919
        +  var aData = {"aBk":aBk};

      
        
        3920
        +  </script>

      
        
        3921
        +

      
        
        3922
        +  <script type='text/javascript'>

      
        
        3923
        +    sendGAEvent('aBk', 'aBk', ''+aBk,{'nonInteraction':1});

      
        
        3924
        +    (function() {

      
        
        3925
        +      if(!(typeof evtCall=="undefined"))

      
        
        3926
        +        for(var i=0,l=evtCall.length;i!==l;i++)

      
        
        3927
        +          evtCall[i].call();

      
        
        3928
        +    })();

      
        
        3929
        +  </script>

      
        
        3930
        +

      
        
        3931
        +    

      
        
        3932
        +<amp-state id="stateSidebarNav">

      
        
        3933
        +    <script type="application/json">

      
        
        3934
        +        {

      
        
        3935
        +        "lang": false,

      
        
        3936
        +        "dict": false,

      
        
        3937
        +        "def": false,

      
        
        3938
        +        "trans": false,

      
        
        3939
        +        "userOptions": false,

      
        
        3940
        +        "login": false

      
        
        3941
        +        }

      
        
        3942
        +    </script>

      
        
        3943
        +</amp-state>

      
        
        3944
        +

      
        
        3945
        +<amp-sidebar id="sidebarNav" layout="nodisplay" side="left" class="bw cm-f">

      
        
        3946
        +    <div class="hdn-s">

      
        
        3947
        +

      
        
        3948
        +        <div class="bh">

      
        
        3949
        +            <div>

      
        
        3950
        +                <div class="r2-display-none hdib hv-3 lpt-10 lpl-15 lpr-15">

      
        
        3951
        +                    <span class="iwc bhb hdib hao fs18 fon hp" on="tap:sidebarNav.close" role="button" aria-label='Close'

      
        
        3952
        +                        title='Close' tabindex="0">

      
        
        3953
        +                        <i class="i i-close iw" aria-hidden="true"></i>

      
        
        3954
        +                    </span>

      
        
        3955
        +                </div>

      
        
        3956
        +

      
        
        3957
        +                <div class="hdib hvt hao lpt-10 lpb-1 lpr-15">

      
        
        3958
        +                    <a class="hdib lpt-1 lpb-5" href="/" title="Cambridge Dictionary">

      
        
        3959
        +                        <div class="r2-header-logo-container-sm">

      
        
        3960
        +                            <amp-img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="44" width="116"

      
        
        3961
        +                                alt="Cambridge Dictionary" style="margin-top:-8px; margin-top:-8px;"></amp-img>

      
        
        3962
        +                            <noscript>

      
        
        3963
        +                                <img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="44" width="116"

      
        
        3964
        +                                    class="lpb-5" alt="Cambridge Dictionary" style="margin-top:-8px;"/>

      
        
        3965
        +                            </noscript>

      
        
        3966
        +                        </div>

      
        
        3967
        +                    </a>

      
        
        3968
        +                </div>

      
        
        3969
        +

      
        
        3970
        +                <div class="hfr htr fs14 lpr-15 lpt-2">

      
        
        3971
        +                    <div class="hdib lmt-5 lpt-2">

      
        
        3972
        +                        <div class="pr hdib z2" amp-access="loggedIn">

      
        
        3973
        +                            <span class="iwc iwc-f15 hp" role="button" id="sidebarNavLogButton"

      
        
        3974
        +                                    on="tap:AMP.setState({ stateSidebarNav: { userOptions: ! stateSidebarNav.userOptions } })"

      
        
        3975
        +                                    onblur="stopBlur();"

      
        
        3976
        +                                    aria-label="View user options" tabindex="0">

      
        
        3977
        +                                <i class="i i-user iw hv-2" aria-hidden="true"></i>

      
        
        3978
        +                            </span>

      
        
        3979
        +                                <div class="hdn" [class]="stateSidebarNav.userOptions ? 'pa pr0 pt100 lmt-1 tc-bd' : 'hdn'">

      
        
        3980
        +        <div class="bw htl hbs lp-20 lpt-15 lpb-15 lmt-10 lmin-150">

      
        
        3981
        +            <ul class="hul-u tw-nw lmb-0 han">

      
        
        3982
        +                <li><a href="/plus/">Cambridge Dictionary +Plus</a></li>

      
        
        3983
        +                <li><a href="/auth/profile">My profile</a></li>

      
        
        3984
        +                <li><a href="/howto.html">+Plus help</a></li>

      
        
        3985
        +                <li><span on="tap:amp-access.login-sign-out" class="logOutBtn hp ha">Log out</span></li>

      
        
        3986
        +            </ul>

      
        
        3987
        +        </div>

      
        
        3988
        +    </div>

      
        
        3989
        +                        </div>

      
        
        3990
        +                        <div class="pr hdib" amp-access="NOT loggedIn">

      
        
        3991
        +                            <span on="tap:amp-access.login-sign-in" class="iwc iwc-f15 hp">

      
        
        3992
        +                                <i class="i i-user iw hv-2" aria-hidden="true"></i>

      
        
        3993
        +                            </span>

      
        
        3994
        +                        </div>

      
        
        3995
        +

      
        
        3996
        +                        <div class="r2-display-none hdib lpl-15 lp-xs_l-10">

      
        
        3997
        +                            <span href="#top" class="iwc bo hdib hao fs18 hp" on="tap:AMP.setState({ stateHdr: { search: true, searchDesk: true } }),sidebarNav.close,searchword.focus">

      
        
        3998
        +                                <i class="i i-search" aria-hidden="true"></i>

      
        
        3999
        +                            </span>

      
        
        4000
        +                        </div>

      
        
        4001
        +                        <div class="hdib lpl-15 lp-xs_l-10">

      
        
        4002
        +                            <span class="r2-no-bg iwc bhb hdib hao fs18 fon hp" on="tap:sidebarNav.close" role="button" aria-label='Close'

      
        
        4003
        +                                  title='Close' tabindex="0">

      
        
        4004
        +                                <i class="i i-close iw" aria-hidden="true"></i>

      
        
        4005
        +                            </span>

      
        
        4006
        +                        </div>

      
        
        4007
        +                    </div>

      
        
        4008
        +                </div>

      
        
        4009
        +            </div>

      
        
        4010
        +        </div>

      
        
        4011
        +

      
        
        4012
        +    </div>

      
        
        4013
        +

      
        
        4014
        +

      
        
        4015
        +    <div class="cm-fc cms fs14 lm-auto">

      
        
        4016
        +

      
        
        4017
        +        <span class="pa pt0 pr0 hdn hdb-s lmt-5 lmr-15 lpt-15 hp fon"

      
        
        4018
        +                on="tap:sidebarNav.close" role="button" aria-label='Close' title='Close' tabindex="0">

      
        
        4019
        +            <i class="i i-close ibd" aria-hidden="true"></i>

      
        
        4020
        +        </span>

      
        
        4021
        +

      
        
        4022
        +        <nav class="lp-s_t-5">

      
        
        4023
        +

      
        
        4024
        +            <div class="hdn hdb-s lp-15 lpb-20 lbb lb-cm">

      
        
        4025
        +                <a href="/" title="Cambridge Dictionary">

      
        
        4026
        +                    <amp-img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="68" width="168"

      
        
        4027
        +                        alt="Cambridge Dictionary" style="margin-left:-10px;" noloading></amp-img>

      
        
        4028
        +                    <noscript>

      
        
        4029
        +                        <img src="/external/images/rv2-design/CDO-logo-horizontal-positive.svg?version=6.0.78" height="68" width="168"

      
        
        4030
        +                            alt="Cambridge Dictionary" style="margin-left:-10px;" />

      
        
        4031
        +                    </noscript>

      
        
        4032
        +                </a>

      
        
        4033
        +            </div>

      
        
        4034
        +                        <div class="lbb lb-cm hlh21">

      
        
        4035
        +                <a href="/assistant" class="hdb tb hax lp-10 lpl-15 lpr-15" onclick="window.assistantTracker?.eventBurgerMenuItemClick()">

      
        
        4036
        +                    AI Assistant                    <img src="/external/images/assistant/beta.svg?version=6.0.78" class="ai-beta-icon">

      
        
        4037
        +                </a>

      
        
        4038
        +            </div>

      
        
        4039
        +                        <div class="pr hul-u tc-bd lmb-0 z1 lbb hlh21">

      
        
        4040
        +                <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        4041
        +                        [class]="stateSidebarNav.dict ? 'hdb hax lp-10 lpl-15 lpr-15 hp on' : 'hdb hax lp-10 lpl-15 lpr-15 hp'"

      
        
        4042
        +                        on="tap: AMP.setState({ stateSidebarNav: { dict: !stateSidebarNav.dict } })">

      
        
        4043
        +                    <span class="pr hdb tb">

      
        
        4044
        +                        Dictionary                        <i class="i i-plus ibd pa pr0 lpt-2" [class]="stateSidebarNav.dict ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'" aria-hidden="true"></i>

      
        
        4045
        +                    </span>

      
        
        4046
        +                </span>

      
        
        4047
        +

      
        
        4048
        +                <div class="hdn" [class]="stateSidebarNav.dict ? '' : 'hdn'">

      
        
        4049
        +                                                            <div class="lmb-0 lbt lb-cm">

      
        
        4050
        +                        <span class="hdb hax lp-10 lpl-0 lpr-15 hp"

      
        
        4051
        +                                [class]="stateSidebarNav.def ? 'pr hdb hax lp-10 lpl-15 lpr-15 hp on' : 'hdb hax lp-10 lpl-15 lpr-15 hp'"

      
        
        4052
        +                                on="tap: AMP.setState({ stateSidebarNav: { def: ! stateSidebarNav.def } })">

      
        
        4053
        +                            <span class="pr hdb">

      
        
        4054
        +                                <span class="fs12 tb tcu">Definitions</span>

      
        
        4055
        +                                <i class="i i-plus ibd pa pr0 lpt-2" [class]="stateSidebarNav.def ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'" aria-hidden="true"></i>

      
        
        4056
        +                            </span>

      
        
        4057
        +                        </span>

      
        
        4058
        +                        <div class="hdn" [class]="stateSidebarNav.def ? '' : 'hdn'">

      
        
        4059
        +                            <div class="han lpl-15 lpr-15 lmb-15">

      
        
        4060
        +                                <div class="tc-bl lmb-5 lmt--3 break">Clear explanations of natural written and spoken English</div>

      
        
        4061
        +                                                                <div class="fs16 lpt-5 lpb-3"><a href='/dictionary/english/'>English</a></div>

      
        
        4062
        +                                                                <div class="fs16 lpt-5 lpb-3"><a href='/dictionary/learner-english/'>Learner’s Dictionary</a></div>

      
        
        4063
        +                                                                <div class="fs16 lpt-5 lpb-3"><a href='/dictionary/essential-british-english/'>Essential British English</a></div>

      
        
        4064
        +                                                                <div class="fs16 lpt-5 lpb-3"><a href='/dictionary/essential-american-english/'>Essential American English</a></div>

      
        
        4065
        +                                                            </div>

      
        
        4066
        +                        </div>

      
        
        4067
        +                    </div>

      
        
        4068
        +                    

      
        
        4069
        +                    <div class="lmb-0 lbt lb-cm">

      
        
        4070
        +                        <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        4071
        +                                [class]="stateSidebarNav.trans ? 'hdb hax lp-10 lpl-15 lpr-15 hp on' : 'hdb hax lp-10 lpl-15 lpr-15 hp'"

      
        
        4072
        +                                on="tap: AMP.setState({ stateSidebarNav: { trans: ! stateSidebarNav.trans } })">

      
        
        4073
        +                            <span class="pr hdb">

      
        
        4074
        +                                <span class="fs12 tb tcu">Translations</span>

      
        
        4075
        +                                <i class="i i-plus ibd pa pr0 lpt-2" [class]="stateSidebarNav.trans ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'" aria-hidden="true"></i>

      
        
        4076
        +                            </span>

      
        
        4077
        +                        </span>

      
        
        4078
        +                        <div class="hdn" [class]="stateSidebarNav.trans ? '' : 'hdn'">

      
        
        4079
        +                                                                                    <div class="han lpl-15 lpr-15 lmb-15">

      
        
        4080
        +                                <div class="tc-bl lmb-5 lmt--3 break">

      
        
        4081
        +                                    Click on the arrows to change the translation direction.                                </div>

      
        
        4082
        +                                <div class="tb fs14 lpt-5 lpb-5 lmb-5">

      
        
        4083
        +                                    <amp-state id="stateSidebarNavBi">

      
        
        4084
        +                                        <script type="application/json">

      
        
        4085
        +                                                        {

      
        
        4086
        +                                                                                                                    "english_chinese_simplified": false,

      
        
        4087
        +                                                                                                                    "english_chinese_traditional": false,

      
        
        4088
        +                                                                                                                    "english_danish": false,

      
        
        4089
        +                                                                                                                    "english_dutch": false,

      
        
        4090
        +                                                                                                                    "english_french": false,

      
        
        4091
        +                                                                                                                    "english_german": false,

      
        
        4092
        +                                                                                                                    "english_indonesian": false,

      
        
        4093
        +                                                                                                                    "english_italian": false,

      
        
        4094
        +                                                                                                                    "english_japanese": false,

      
        
        4095
        +                                                                                                                    "english_norwegian": false,

      
        
        4096
        +                                                                                                                    "english_polish": false,

      
        
        4097
        +                                                                                                                    "english_portuguese": false,

      
        
        4098
        +                                                                                                                    "english_spanish": false,

      
        
        4099
        +                                                                                                                    "english_swedish": false,

      
        
        4100
        +                                                                                                                "erroneous_extra_item": false

      
        
        4101
        +                                                        }

      
        
        4102
        +                                            </script>

      
        
        4103
        +                                    </amp-state>

      
        
        4104
        +                                    Bilingual Dictionaries                                </div>

      
        
        4105
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        4106
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        4107
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_chinese_simplified: ! stateSidebarNavBi.english_chinese_simplified } })"

      
        
        4108
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        4109
        +                                        <a href='/dictionary/english-chinese-simplified/'

      
        
        4110
        +                                            [class]="stateSidebarNavBi.english_chinese_simplified ? 'hdn' : ''"

      
        
        4111
        +                                            data-dictCode="english-chinese-simplified"

      
        
        4112
        +                                            title="Cambridge English-Chinese (Simplified) Dictionary">English–Chinese (Simplified)</a>

      
        
        4113
        +                                                                                <a href='/dictionary/chinese-simplified-english/'

      
        
        4114
        +                                            class="hdn" [class]="stateSidebarNavBi.english_chinese_simplified ? '' : 'hdn'"

      
        
        4115
        +                                            data-dictCode="chinese-simplified-english"

      
        
        4116
        +                                            title="Cambridge Chinese (Simplified)-English Dictionary">Chinese (Simplified)–English</a>

      
        
        4117
        +                                    </div>

      
        
        4118
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        4119
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        4120
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_chinese_traditional: ! stateSidebarNavBi.english_chinese_traditional } })"

      
        
        4121
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        4122
        +                                        <a href='/dictionary/english-chinese-traditional/'

      
        
        4123
        +                                            [class]="stateSidebarNavBi.english_chinese_traditional ? 'hdn' : ''"

      
        
        4124
        +                                            data-dictCode="english-chinese-traditional"

      
        
        4125
        +                                            title="Cambridge English-Chinese (Traditional) Dictionary">English–Chinese (Traditional)</a>

      
        
        4126
        +                                                                                <a href='/dictionary/chinese-traditional-english/'

      
        
        4127
        +                                            class="hdn" [class]="stateSidebarNavBi.english_chinese_traditional ? '' : 'hdn'"

      
        
        4128
        +                                            data-dictCode="chinese-traditional-english"

      
        
        4129
        +                                            title="Cambridge Chinese (Traditional)-English Dictionary">Chinese (Traditional)–English</a>

      
        
        4130
        +                                    </div>

      
        
        4131
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        4132
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        4133
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_danish: ! stateSidebarNavBi.english_danish } })"

      
        
        4134
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        4135
        +                                        <a href='/dictionary/english-danish/'

      
        
        4136
        +                                            [class]="stateSidebarNavBi.english_danish ? 'hdn' : ''"

      
        
        4137
        +                                            data-dictCode="english-danish"

      
        
        4138
        +                                            title="English-Danish Dictionary">English–Danish</a>

      
        
        4139
        +                                                                                <a href='/dictionary/danish-english/'

      
        
        4140
        +                                            class="hdn" [class]="stateSidebarNavBi.english_danish ? '' : 'hdn'"

      
        
        4141
        +                                            data-dictCode="danish-english"

      
        
        4142
        +                                            title="Danish-English Dictionary">Danish–English</a>

      
        
        4143
        +                                    </div>

      
        
        4144
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        4145
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        4146
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_dutch: ! stateSidebarNavBi.english_dutch } })"

      
        
        4147
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        4148
        +                                        <a href='/dictionary/english-dutch/'

      
        
        4149
        +                                            [class]="stateSidebarNavBi.english_dutch ? 'hdn' : ''"

      
        
        4150
        +                                            data-dictCode="english-dutch"

      
        
        4151
        +                                            title="English-Dutch Dictionary">English–Dutch</a>

      
        
        4152
        +                                                                                <a href='/dictionary/dutch-english/'

      
        
        4153
        +                                            class="hdn" [class]="stateSidebarNavBi.english_dutch ? '' : 'hdn'"

      
        
        4154
        +                                            data-dictCode="dutch-english"

      
        
        4155
        +                                            title="Dutch-English Dictionary">Dutch–English</a>

      
        
        4156
        +                                    </div>

      
        
        4157
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        4158
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        4159
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_french: ! stateSidebarNavBi.english_french } })"

      
        
        4160
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        4161
        +                                        <a href='/dictionary/english-french/'

      
        
        4162
        +                                            [class]="stateSidebarNavBi.english_french ? 'hdn' : ''"

      
        
        4163
        +                                            data-dictCode="english-french"

      
        
        4164
        +                                            title="English-French Dictionary">English–French</a>

      
        
        4165
        +                                                                                <a href='/dictionary/french-english/'

      
        
        4166
        +                                            class="hdn" [class]="stateSidebarNavBi.english_french ? '' : 'hdn'"

      
        
        4167
        +                                            data-dictCode="french-english"

      
        
        4168
        +                                            title="French-English Dictionary">French–English</a>

      
        
        4169
        +                                    </div>

      
        
        4170
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        4171
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        4172
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_german: ! stateSidebarNavBi.english_german } })"

      
        
        4173
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        4174
        +                                        <a href='/dictionary/english-german/'

      
        
        4175
        +                                            [class]="stateSidebarNavBi.english_german ? 'hdn' : ''"

      
        
        4176
        +                                            data-dictCode="english-german"

      
        
        4177
        +                                            title="English-German Dictionary">English–German</a>

      
        
        4178
        +                                                                                <a href='/dictionary/german-english/'

      
        
        4179
        +                                            class="hdn" [class]="stateSidebarNavBi.english_german ? '' : 'hdn'"

      
        
        4180
        +                                            data-dictCode="german-english"

      
        
        4181
        +                                            title="German-English Dictionary">German–English</a>

      
        
        4182
        +                                    </div>

      
        
        4183
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        4184
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        4185
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_indonesian: ! stateSidebarNavBi.english_indonesian } })"

      
        
        4186
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        4187
        +                                        <a href='/dictionary/english-indonesian/'

      
        
        4188
        +                                            [class]="stateSidebarNavBi.english_indonesian ? 'hdn' : ''"

      
        
        4189
        +                                            data-dictCode="english-indonesian"

      
        
        4190
        +                                            title="English-Indonesian Dictionary">English–Indonesian</a>

      
        
        4191
        +                                                                                <a href='/dictionary/indonesian-english/'

      
        
        4192
        +                                            class="hdn" [class]="stateSidebarNavBi.english_indonesian ? '' : 'hdn'"

      
        
        4193
        +                                            data-dictCode="indonesian-english"

      
        
        4194
        +                                            title="Indonesian-English Dictionary">Indonesian–English</a>

      
        
        4195
        +                                    </div>

      
        
        4196
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        4197
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        4198
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_italian: ! stateSidebarNavBi.english_italian } })"

      
        
        4199
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        4200
        +                                        <a href='/dictionary/english-italian/'

      
        
        4201
        +                                            [class]="stateSidebarNavBi.english_italian ? 'hdn' : ''"

      
        
        4202
        +                                            data-dictCode="english-italian"

      
        
        4203
        +                                            title="Cambridge English-Italian Dictionary">English–Italian</a>

      
        
        4204
        +                                                                                <a href='/dictionary/italian-english/'

      
        
        4205
        +                                            class="hdn" [class]="stateSidebarNavBi.english_italian ? '' : 'hdn'"

      
        
        4206
        +                                            data-dictCode="italian-english"

      
        
        4207
        +                                            title="Italian-English Dictionary">Italian–English</a>

      
        
        4208
        +                                    </div>

      
        
        4209
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        4210
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        4211
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_japanese: ! stateSidebarNavBi.english_japanese } })"

      
        
        4212
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        4213
        +                                        <a href='/dictionary/english-japanese/'

      
        
        4214
        +                                            [class]="stateSidebarNavBi.english_japanese ? 'hdn' : ''"

      
        
        4215
        +                                            data-dictCode="english-japanese"

      
        
        4216
        +                                            title="Cambridge English-Japanese Dictionary">English–Japanese</a>

      
        
        4217
        +                                                                                <a href='/dictionary/japanese-english/'

      
        
        4218
        +                                            class="hdn" [class]="stateSidebarNavBi.english_japanese ? '' : 'hdn'"

      
        
        4219
        +                                            data-dictCode="japanese-english"

      
        
        4220
        +                                            title="Japanese-English Dictionary">Japanese–English</a>

      
        
        4221
        +                                    </div>

      
        
        4222
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        4223
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        4224
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_norwegian: ! stateSidebarNavBi.english_norwegian } })"

      
        
        4225
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        4226
        +                                        <a href='/dictionary/english-norwegian/'

      
        
        4227
        +                                            [class]="stateSidebarNavBi.english_norwegian ? 'hdn' : ''"

      
        
        4228
        +                                            data-dictCode="english-norwegian"

      
        
        4229
        +                                            title="English-Norwegian Dictionary">English–Norwegian</a>

      
        
        4230
        +                                                                                <a href='/dictionary/norwegian-english/'

      
        
        4231
        +                                            class="hdn" [class]="stateSidebarNavBi.english_norwegian ? '' : 'hdn'"

      
        
        4232
        +                                            data-dictCode="norwegian-english"

      
        
        4233
        +                                            title="Norwegian-English Dictionary">Norwegian–English</a>

      
        
        4234
        +                                    </div>

      
        
        4235
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        4236
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        4237
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_polish: ! stateSidebarNavBi.english_polish } })"

      
        
        4238
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        4239
        +                                        <a href='/dictionary/english-polish/'

      
        
        4240
        +                                            [class]="stateSidebarNavBi.english_polish ? 'hdn' : ''"

      
        
        4241
        +                                            data-dictCode="english-polish"

      
        
        4242
        +                                            title="Cambridge English-Polish Dictionary">English–Polish</a>

      
        
        4243
        +                                                                                <a href='/dictionary/polish-english/'

      
        
        4244
        +                                            class="hdn" [class]="stateSidebarNavBi.english_polish ? '' : 'hdn'"

      
        
        4245
        +                                            data-dictCode="polish-english"

      
        
        4246
        +                                            title="Polish-English Dictionary">Polish–English</a>

      
        
        4247
        +                                    </div>

      
        
        4248
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        4249
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        4250
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_portuguese: ! stateSidebarNavBi.english_portuguese } })"

      
        
        4251
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        4252
        +                                        <a href='/dictionary/english-portuguese/'

      
        
        4253
        +                                            [class]="stateSidebarNavBi.english_portuguese ? 'hdn' : ''"

      
        
        4254
        +                                            data-dictCode="english-portuguese"

      
        
        4255
        +                                            title="Cambridge English-Portuguese Dictionary">English–Portuguese</a>

      
        
        4256
        +                                                                                <a href='/dictionary/portuguese-english/'

      
        
        4257
        +                                            class="hdn" [class]="stateSidebarNavBi.english_portuguese ? '' : 'hdn'"

      
        
        4258
        +                                            data-dictCode="portuguese-english"

      
        
        4259
        +                                            title="Portuguese-English Dictionary">Portuguese–English</a>

      
        
        4260
        +                                    </div>

      
        
        4261
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        4262
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        4263
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_spanish: ! stateSidebarNavBi.english_spanish } })"

      
        
        4264
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        4265
        +                                        <a href='/dictionary/english-spanish/'

      
        
        4266
        +                                            [class]="stateSidebarNavBi.english_spanish ? 'hdn' : ''"

      
        
        4267
        +                                            data-dictCode="english-spanish"

      
        
        4268
        +                                            title="English-Spanish Dictionary">English–Spanish</a>

      
        
        4269
        +                                                                                <a href='/dictionary/spanish-english/'

      
        
        4270
        +                                            class="hdn" [class]="stateSidebarNavBi.english_spanish ? '' : 'hdn'"

      
        
        4271
        +                                            data-dictCode="spanish-english"

      
        
        4272
        +                                            title="Diccionario Espa&ntilde;ol-ingl&eacute;s">Spanish–English</a>

      
        
        4273
        +                                    </div>

      
        
        4274
        +                                                                    <div class="fs16 lpt-3 lmb-5">

      
        
        4275
        +                                        <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-5" aria-hidden="true" role="button"

      
        
        4276
        +                                            on="tap: AMP.setState({ stateSidebarNavBi: { english_swedish: ! stateSidebarNavBi.english_swedish } })"

      
        
        4277
        +                                            title="Change language direction" tabindex="0"></i>

      
        
        4278
        +                                        <a href='/dictionary/english-swedish/'

      
        
        4279
        +                                            [class]="stateSidebarNavBi.english_swedish ? 'hdn' : ''"

      
        
        4280
        +                                            data-dictCode="english-swedish"

      
        
        4281
        +                                            title="English-Swedish Dictionary">English–Swedish</a>

      
        
        4282
        +                                                                                <a href='/dictionary/swedish-english/'

      
        
        4283
        +                                            class="hdn" [class]="stateSidebarNavBi.english_swedish ? '' : 'hdn'"

      
        
        4284
        +                                            data-dictCode="swedish-english"

      
        
        4285
        +                                            title="Swedish-English Dictionary">Swedish–English</a>

      
        
        4286
        +                                    </div>

      
        
        4287
        +                                                                                        </div>

      
        
        4288
        +

      
        
        4289
        +                                                                                    <div class="han lpl-15 lpr-15 lmb-15">

      
        
        4290
        +                                <div class="tb fs14 lpt-5 lpb-5 lmb-5">Semi-bilingual Dictionaries</div>

      
        
        4291
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        4292
        +                                    <a href='/dictionary/english-arabic/'

      
        
        4293
        +                                        title="Cambridge English-Arabic Dictionary">English–Arabic                                    </a>

      
        
        4294
        +                                </div>

      
        
        4295
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        4296
        +                                    <a href='/dictionary/english-bengali/'

      
        
        4297
        +                                        title="Cambridge English-Bengali Dictionary">English–Bengali                                    </a>

      
        
        4298
        +                                </div>

      
        
        4299
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        4300
        +                                    <a href='/dictionary/english-catalan/'

      
        
        4301
        +                                        title="Cambridge English-Catalan Dictionary">English–Catalan                                    </a>

      
        
        4302
        +                                </div>

      
        
        4303
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        4304
        +                                    <a href='/dictionary/english-czech/'

      
        
        4305
        +                                        title="English-Czech Dictionary">English–Czech                                    </a>

      
        
        4306
        +                                </div>

      
        
        4307
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        4308
        +                                    <a href='/dictionary/english-gujarati/'

      
        
        4309
        +                                        title="English-Gujarati Dictionary">English–Gujarati                                    </a>

      
        
        4310
        +                                </div>

      
        
        4311
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        4312
        +                                    <a href='/dictionary/english-hindi/'

      
        
        4313
        +                                        title="English-Hindi Dictionary">English–Hindi                                    </a>

      
        
        4314
        +                                </div>

      
        
        4315
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        4316
        +                                    <a href='/dictionary/english-korean/'

      
        
        4317
        +                                        title="Cambridge English-Korean Dictionary">English–Korean                                    </a>

      
        
        4318
        +                                </div>

      
        
        4319
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        4320
        +                                    <a href='/dictionary/english-malaysian/'

      
        
        4321
        +                                        title="English-Malay Dictionary">English–Malay                                    </a>

      
        
        4322
        +                                </div>

      
        
        4323
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        4324
        +                                    <a href='/dictionary/english-marathi/'

      
        
        4325
        +                                        title="English-Marathi Dictionary">English–Marathi                                    </a>

      
        
        4326
        +                                </div>

      
        
        4327
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        4328
        +                                    <a href='/dictionary/english-russian/'

      
        
        4329
        +                                        title="Cambridge English-Russian Dictionary">English–Russian                                    </a>

      
        
        4330
        +                                </div>

      
        
        4331
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        4332
        +                                    <a href='/dictionary/english-tamil/'

      
        
        4333
        +                                        title="English-Tamil Dictionary">English–Tamil                                    </a>

      
        
        4334
        +                                </div>

      
        
        4335
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        4336
        +                                    <a href='/dictionary/english-telugu/'

      
        
        4337
        +                                        title="English-Telugu Dictionary">English–Telugu                                    </a>

      
        
        4338
        +                                </div>

      
        
        4339
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        4340
        +                                    <a href='/dictionary/english-thai/'

      
        
        4341
        +                                        title="English-Thai Dictionary">English–Thai                                    </a>

      
        
        4342
        +                                </div>

      
        
        4343
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        4344
        +                                    <a href='/dictionary/english-turkish/'

      
        
        4345
        +                                        title="English-Turkish Dictionary, &#304;ngilizce-T&uuml;rk&ccedil;e &Ccedil;eviri">English–Turkish                                    </a>

      
        
        4346
        +                                </div>

      
        
        4347
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        4348
        +                                    <a href='/dictionary/english-ukrainian/'

      
        
        4349
        +                                        title="English-Ukrainian Dictionary">English–Ukrainian                                    </a>

      
        
        4350
        +                                </div>

      
        
        4351
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        4352
        +                                    <a href='/dictionary/english-urdu/'

      
        
        4353
        +                                        title="English-Urdu Dictionary">English–Urdu                                    </a>

      
        
        4354
        +                                </div>

      
        
        4355
        +                                                                <div class="fs16 lpt-3 lmb-5">

      
        
        4356
        +                                    <a href='/dictionary/english-vietnamese/'

      
        
        4357
        +                                        title="English-Vietnamese Dictionary">English–Vietnamese                                    </a>

      
        
        4358
        +                                </div>

      
        
        4359
        +                                                                                        </div>

      
        
        4360
        +                        </div>

      
        
        4361
        +                    </div>

      
        
        4362
        +                </div>

      
        
        4363
        +            </div>

      
        
        4364
        +            <div class="lbb lb-cm hlh21"><a href="/translate/" class="hdb tb hax lp-10 lpl-15 lpr-15">Translate</a></div>

      
        
        4365
        +                        <div class="lbb lb-cm hlh21"><a href="/grammar/british-grammar/" class="hdb tb hax lp-10 lpl-15 lpr-15">Grammar</a></div>

      
        
        4366
        +                        <div class="lbb lb-cm hlh21"><a href="/thesaurus/" class="hdb tb hax lp-10 lpl-15 lpr-15">Thesaurus</a></div>

      
        
        4367
        +            <div class="lbb lb-cm hlh21"><a href="/pronunciation/" class="hdb tb hax lp-10 lpl-15 lpr-15">Pronunciation</a></div>

      
        
        4368
        +            <div class="lbb lb-cm hlh21"><a href="/plus/" class="hdb tb hax lp-10 lpl-15 lpr-15">Cambridge Dictionary +Plus</a></div>

      
        
        4369
        +                        <div class="lbb lb-cm hlh21"><a href="/games/?utm_source=CDO&utm_medium=nav-bar&utm_campaign=gameshub-CDO-1&utm_id=games-nav&utm_content=games-nav" class="hdb tb hax lp-10 lpl-15 lpr-15">Games</a></div>

      
        
        4370
        +            <div class="hdn hdb-s lbb lb-cm hlh21 tc-bd">

      
        
        4371
        +                <section amp-access="loggedIn">

      
        
        4372
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        4373
        +                            [class]="stateSidebarNav.login ? 'hdb hax lp-10 lpl-15 lpr-15 hp on' : 'hdb hax lp-10 lpl-15 lpr-15 hp'"

      
        
        4374
        +                            on="tap: AMP.setState({ stateSidebarNav: { login: !stateSidebarNav.login } })">

      
        
        4375
        +                        <span class="pr hdb tb">

      
        
        4376
        +                            <template amp-access-template type="amp-mustache">

      
        
        4377
        +                                <i class="i i-user ibd fs16 hv-2 lpr-2" aria-hidden="true"></i> {{userName}}

      
        
        4378
        +                            </template>

      
        
        4379
        +                            <i class="i i-plus ibd pa pr0 lpt-2" [class]="stateSidebarNav.login ? 'i i-minus ibd pa pr0 lmt--19' : 'i i-plus ibd pa pr0 lmt--19'" aria-hidden="true"></i>

      
        
        4380
        +                        </span>

      
        
        4381
        +                    </span>

      
        
        4382
        +                    <div class="hdn" [class]="stateSidebarNav.login ? '' : 'hdn'">

      
        
        4383
        +                        <div class="han lpl-15 lpr-15">

      
        
        4384
        +                            <ul class="fs16 lmb-15">

      
        
        4385
        +                                <li class="lpt-5"><a href="/mydictionary/">Cambridge Dictionary +Plus</a></li>

      
        
        4386
        +                                <li class="lpt-5"><a href="/auth/profile">My profile</a></li>

      
        
        4387
        +                                <li class="lpt-5"><a href="/howto.html">+Plus help</a></li>

      
        
        4388
        +                                <li class="lpt-5"><span class="hp ha" on="tap:amp-access.login-sign-out">Log out</span></li>

      
        
        4389
        +                            </ul>

      
        
        4390
        +                        </div>

      
        
        4391
        +                    </div>

      
        
        4392
        +                </section>

      
        
        4393
        +                <section amp-access="NOT loggedIn">

      
        
        4394
        +                    <span on="tap:amp-access.login-sign-in" class="hdib tb hax lpb-10 lpt-10 lpl-15 hp">

      
        
        4395
        +                        <i class="i i-user ibd fs16 hv-2 lpr-2" aria-hidden="true"></i> Log in                    </span> /

      
        
        4396
        +                    <span on="tap:amp-access.login-sign-up" class="hdib tb hax lpb-10 lpt-10 lpr-15 hp"> Sign up</span>

      
        
        4397
        +                </section>

      
        
        4398
        +            </div>

      
        
        4399
        +        </nav>

      
        
        4400
        +

      
        
        4401
        +        <div class="lp-15 lbb lb-cm tc-bd">

      
        
        4402
        +            <div>

      
        
        4403
        +                <span class="hax hdb pr hp" on="tap: AMP.setState({ stateSidebarNav: { lang: ! stateSidebarNav.lang } })">

      
        
        4404
        +                    <i class="i i-globe ibd fs16 hv-2" aria-hidden="true"></i>

      
        
        4405
        +                    <span class="lpl-2">English (UK) <span class="tb">&nbsp;</span></span>

      
        
        4406
        +

      
        
        4407
        +                    <span class="pa pt0 pr0" [class]="stateSidebarNav.lang ? 'hdn' : 'pa pt0 pr0'">Change</span>

      
        
        4408
        +                    <i class="hdn" [class]="stateSidebarNav.lang ? 'i i-minus ibd pa pr5' : 'hdn'" aria-hidden="true"></i>

      
        
        4409
        +                </span>

      
        
        4410
        +

      
        
        4411
        +                <div class="hdn" [class]="stateSidebarNav.lang ? 'han' : 'hdn'">

      
        
        4412
        +                    <div class="hul-u lmt-10 lmb-0 lpl-20 cdo-locale-selector hlh1_5">

      
        
        4413
        +                                            <a href="/dictionary/english/skip"

      
        
        4414
        +                            hreflang="en" lang="en"

      
        
        4415
        +                            class="hdb lmb-5">English (UK)</a>

      
        
        4416
        +                                            <a href="/us/dictionary/english/skip"

      
        
        4417
        +                            hreflang="en-US" lang="en-US"

      
        
        4418
        +                            class="hdb lmb-5">English (US)</a>

      
        
        4419
        +                                            <a href="/es/diccionario/ingles/skip"

      
        
        4420
        +                            hreflang="es" lang="es"

      
        
        4421
        +                            class="hdb lmb-5">Español</a>

      
        
        4422
        +                                            <a href="/pt/dicionario/ingles/skip"

      
        
        4423
        +                            hreflang="pt" lang="pt"

      
        
        4424
        +                            class="hdb lmb-5">Português</a>

      
        
        4425
        +                                            <a href="/zhs/%E8%AF%8D%E5%85%B8/%E8%8B%B1%E8%AF%AD/skip"

      
        
        4426
        +                            hreflang="zh-Hans" lang="zh-Hans"

      
        
        4427
        +                            class="hdb lmb-5">中文 (简体)</a>

      
        
        4428
        +                                            <a href="/zht/%E8%A9%9E%E5%85%B8/%E8%8B%B1%E8%AA%9E/skip"

      
        
        4429
        +                            hreflang="zh-Hant" lang="zh-Hant"

      
        
        4430
        +                            class="hdb lmb-5">正體中文 (繁體)</a>

      
        
        4431
        +                                            <a href="/da/ordbog/engelsk/skip"

      
        
        4432
        +                            hreflang="da" lang="da"

      
        
        4433
        +                            class="hdb lmb-5">Dansk</a>

      
        
        4434
        +                                            <a href="/de/worterbuch/englisch/skip"

      
        
        4435
        +                            hreflang="de" lang="de"

      
        
        4436
        +                            class="hdb lmb-5">Deutsch</a>

      
        
        4437
        +                                            <a href="/fr/dictionnaire/anglais/skip"

      
        
        4438
        +                            hreflang="fr" lang="fr"

      
        
        4439
        +                            class="hdb lmb-5">Français</a>

      
        
        4440
        +                                            <a href="/it/dizionario/inglese/skip"

      
        
        4441
        +                            hreflang="it" lang="it"

      
        
        4442
        +                            class="hdb lmb-5">Italiano</a>

      
        
        4443
        +                                            <a href="/nl/woordenboek/engels/skip"

      
        
        4444
        +                            hreflang="nl" lang="nl"

      
        
        4445
        +                            class="hdb lmb-5">Nederlands</a>

      
        
        4446
        +                                            <a href="/no/ordbok/engelsk/skip"

      
        
        4447
        +                            hreflang="no" lang="no"

      
        
        4448
        +                            class="hdb lmb-5">Norsk</a>

      
        
        4449
        +                                            <a href="/pl/dictionary/english/skip"

      
        
        4450
        +                            hreflang="pl" lang="pl"

      
        
        4451
        +                            class="hdb lmb-5">Polski</a>

      
        
        4452
        +                                            <a href="/ru/%D1%81%D0%BB%D0%BE%D0%B2%D0%B0%D1%80%D1%8C/%D0%B0%D0%BD%D0%B3%D0%BB%D0%B8%D0%B9%D1%81%D0%BA%D0%B8%D0%B9/skip"

      
        
        4453
        +                            hreflang="ru" lang="ru"

      
        
        4454
        +                            class="hdb lmb-5">Русский</a>

      
        
        4455
        +                                            <a href="/tr/s%C3%B6zl%C3%BCk/ingilizce/skip"

      
        
        4456
        +                            hreflang="tr" lang="tr"

      
        
        4457
        +                            class="hdb lmb-5">Türkçe</a>

      
        
        4458
        +                                            <a href="/vi/dictionary/english/skip"

      
        
        4459
        +                            hreflang="vi" lang="vi"

      
        
        4460
        +                            class="hdb lmb-5">Tiếng Việt</a>

      
        
        4461
        +                                            <a href="/sv/ordbok/engelska/skip"

      
        
        4462
        +                            hreflang="sv" lang="sv"

      
        
        4463
        +                            class="hdb lmb-5">Svenska</a>

      
        
        4464
        +                                            <a href="/uk/dictionary/english/skip"

      
        
        4465
        +                            hreflang="uk" lang="uk"

      
        
        4466
        +                            class="hdb lmb-5">Українська</a>

      
        
        4467
        +                                            <a href="/ja/dictionary/english/skip"

      
        
        4468
        +                            hreflang="ja" lang="ja"

      
        
        4469
        +                            class="hdb lmb-5">日本語</a>

      
        
        4470
        +                                            <a href="/ko/%EC%82%AC%EC%A0%84/%EC%98%81%EC%96%B4/skip"

      
        
        4471
        +                            hreflang="ko" lang="ko"

      
        
        4472
        +                            class="hdb lmb-5">한국어</a>

      
        
        4473
        +                                            <a href="/gu/dictionary/english/skip"

      
        
        4474
        +                            hreflang="gu" lang="gu"

      
        
        4475
        +                            class="hdb lmb-5">ગુજરાતી</a>

      
        
        4476
        +                                            <a href="/ta/dictionary/english/skip"

      
        
        4477
        +                            hreflang="ta" lang="ta"

      
        
        4478
        +                            class="hdb lmb-5">தமிழ்</a>

      
        
        4479
        +                                            <a href="/te/dictionary/english/skip"

      
        
        4480
        +                            hreflang="te" lang="te"

      
        
        4481
        +                            class="hdb lmb-5">తెలుగు</a>

      
        
        4482
        +                                            <a href="/bn/dictionary/english/skip"

      
        
        4483
        +                            hreflang="bn" lang="bn"

      
        
        4484
        +                            class="hdb lmb-5">বাঙ্গালি</a>

      
        
        4485
        +                                            <a href="/mr/dictionary/english/skip"

      
        
        4486
        +                            hreflang="mr" lang="mr"

      
        
        4487
        +                            class="hdb lmb-5">मराठी</a>

      
        
        4488
        +                                            <a href="/hi/%E0%A4%B6%E0%A4%AC%E0%A5%8D%E0%A4%A6%E0%A4%95%E0%A5%8B%E0%A4%B6/%E0%A4%85%E0%A4%82%E0%A4%97%E0%A5%8D%E0%A4%B0%E0%A5%87%E0%A4%9C%E0%A4%BC%E0%A5%80/skip"

      
        
        4489
        +                            hreflang="hi" lang="hi"

      
        
        4490
        +                            class="hdb lmb-5">हिंदी</a>

      
        
        4491
        +                                        </div>

      
        
        4492
        +                </div>

      
        
        4493
        +            </div>

      
        
        4494
        +        </div>

      
        
        4495
        +

      
        
        4496
        +        <div class="lp-15 lbb lb-cm tc-bd">

      
        
        4497
        +            <div class="hdb pr">

      
        
        4498
        +                <span class="tb">Follow us</span>

      
        
        4499
        +                <div class="pa pt0 pr0">

      
        
        4500
        +                    <div class="hdib lpr-2"><a href='https://www.facebook.com/CUPCambridgeDictionary/' target="_blank" rel="noopener noreferrer" title="Likes" class="hao lpl-10 lpr-10"><i class="i i-facebook fs16" aria-hidden="true"></i></a></div>

      
        
        4501
        +                    <div class="hdib lpr-2"><a href='https://www.instagram.com/cambridgewords' target="_blank" rel="noopener noreferrer" title="Followers" class="hao lpl-10 lpr-10"><i class="i i-instagram fs16" aria-hidden="true"></i></a></div>

      
        
        4502
        +                    <div class="hdib"><a href='https://twitter.com/CambridgeWords' target="_blank" rel="noopener noreferrer" title="Followers" class="hao lpl-10"><i class="i i-x fs16" aria-hidden="true"></i></a></div>

      
        
        4503
        +                </div>

      
        
        4504
        +            </div>

      
        
        4505
        +        </div>

      
        
        4506
        +

      
        
        4507
        +        <div class="htc lmt-20 lmb-20">

      
        
        4508
        +            <div class="a a-hook lm-auto"></div>

      
        
        4509
        +        </div>

      
        
        4510
        +            </div>

      
        
        4511
        +</amp-sidebar>

      
        
        4512
        +

      
        
        4513
        +<amp-state id="stateSidebarDict">

      
        
        4514
        +    <script type="application/json">

      
        
        4515
        +        {

      
        
        4516
        +        "open": false,

      
        
        4517
        +        "recent": true,

      
        
        4518
        +        "def": true,

      
        
        4519
        +        "gram": true,

      
        
        4520
        +        "trans": true,

      
        
        4521
        +        "pron": true,

      
        
        4522
        +        "plus": true

      
        
        4523
        +        }

      
        
        4524
        +    </script>

      
        
        4525
        +</amp-state>

      
        
        4526
        +

      
        
        4527
        +<amp-sidebar id="sidebarDict" layout="nodisplay" side="right" class="bw cm-f" on="sidebarOpen:AMP.setState({ stateSidebarDict: { open: true } })">

      
        
        4528
        +

      
        
        4529
        +    <div class="pr cm-fc cms lm-auto">

      
        
        4530
        +        <span class="pa pt0 pr0 lmt-5 lmr-15 lpt-15 hp fon"

      
        
        4531
        +                on="tap:sidebarDict.close" role="button" aria-label="Close"

      
        
        4532
        +                title='Close' tabindex="0">

      
        
        4533
        +            <i class="i i-close ibd" aria-hidden="true"></i>

      
        
        4534
        +        </span>

      
        
        4535
        +

      
        
        4536
        +        <div class="han tc-bd fs14 lpt-5">

      
        
        4537
        +

      
        
        4538
        +            <div class="fs18 lp-5 lpt-20 lpb-15 lpl-15">

      
        
        4539
        +                Choose a dictionary            </div>

      
        
        4540
        +

      
        
        4541
        +            <ul class="hul-u hul-un hul-u0 lmb-0">

      
        
        4542
        +                <li class="lbt lb-cm">

      
        
        4543
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        4544
        +                            on="tap: AMP.setState({ stateSidebarDict: { recent: ! stateSidebarDict.recent } })">

      
        
        4545
        +                        <span class="pr hdb">

      
        
        4546
        +                            <span class="fs12 tcu">Recent and Recommended</span>

      
        
        4547
        +                            <i class="i i-minus ibd pa pr0 lpt-2" [class]="stateSidebarDict.recent ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'" aria-hidden="true"></i>

      
        
        4548
        +                        </span> 

      
        
        4549
        +                    </span>

      
        
        4550
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.recent ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        4551
        +                        <div class="pr tc-d fs16 lmb-20">

      
        
        4552
        +                            <div amp-access="1=1">

      
        
        4553
        +                                <template amp-access-template type="amp-mustache">

      
        
        4554
        +                                    {{#preferredDictionaries}}

      
        
        4555
        +                                        <span class="hp hdb lmb-5 hp"

      
        
        4556
        +                                            on="tap:AMP.setState({ stateSearch: { dataset: '{{dataCode}}', dataset_text: '{{name}}', dataset_search: 'Search {{name}}', isbilang: false} }), sidebarDict.close, searchword.focus"

      
        
        4557
        +                                            role="button" aria-label="Set dictionary search to {{name}}" tabindex="0">

      
        
        4558
        +                                            {{name}}

      
        
        4559
        +                                        </span>

      
        
        4560
        +                                    {{/preferredDictionaries}}

      
        
        4561
        +                                </template>

      
        
        4562
        +                            </div>

      
        
        4563
        +                            <div class="pa p0 bw" [class]="stateSidebarDict.open ? 'hdn' : 'pa p0 bw'">

      
        
        4564
        +                                <span class="pa p0 bload"></span>

      
        
        4565
        +                            </div>

      
        
        4566
        +                        </div>

      
        
        4567
        +                    </div>

      
        
        4568
        +                </li>

      
        
        4569
        +

      
        
        4570
        +                                                <li class="lbt lb-cm">

      
        
        4571
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        4572
        +                            on="tap: AMP.setState({ stateSidebarDict: { def: ! stateSidebarDict.def } })">

      
        
        4573
        +                        <span class="pr hdb">

      
        
        4574
        +                            <span class="fs12 tcu">Definitions</span>

      
        
        4575
        +                            <i aria-hidden="true" class="i i-minus ibd pa pr0 lpt-2"

      
        
        4576
        +                                [class]="stateSidebarDict.def ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'">

      
        
        4577
        +                            </i>

      
        
        4578
        +                        </span> 

      
        
        4579
        +                    </span>

      
        
        4580
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.def ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        4581
        +                        <div class="tc-bl lmb-5 lmt--3 break">

      
        
        4582
        +                            Clear explanations of natural written and spoken English                        </div>

      
        
        4583
        +                        <div class="hul-u tc-d fs16 hlh1_5 lmb-20">

      
        
        4584
        +                                                        <span data-dictCode="english" class="hp hdb hp"

      
        
        4585
        +                                    on="tap:AMP.setState({ stateSearch: { dataset: 'english', dataset_text: 'English', dataset_search: 'Search English', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4586
        +                                    role="button" aria-label="Set dictionary search to English" tabindex="0"

      
        
        4587
        +                                    title="English">English</span>

      
        
        4588
        +                                                        <span data-dictCode="learner-english" class="hp hdb hp"

      
        
        4589
        +                                    on="tap:AMP.setState({ stateSearch: { dataset: 'learner-english', dataset_text: 'Learner&rsquo;s Dictionary', dataset_search: 'Search Learner&rsquo;s Dictionary', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4590
        +                                    role="button" aria-label="Set dictionary search to Learner&rsquo;s Dictionary" tabindex="0"

      
        
        4591
        +                                    title="Learner&rsquo;s Dictionary">Learner&rsquo;s Dictionary</span>

      
        
        4592
        +                                                        <span data-dictCode="essential-british-english" class="hp hdb hp"

      
        
        4593
        +                                    on="tap:AMP.setState({ stateSearch: { dataset: 'essential-british-english', dataset_text: 'Essential British English', dataset_search: 'Search Essential British English', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4594
        +                                    role="button" aria-label="Set dictionary search to Essential British English" tabindex="0"

      
        
        4595
        +                                    title="Essential British English">Essential British English</span>

      
        
        4596
        +                                                        <span data-dictCode="essential-american-english" class="hp hdb hp"

      
        
        4597
        +                                    on="tap:AMP.setState({ stateSearch: { dataset: 'essential-american-english', dataset_text: 'Essential American English', dataset_search: 'Search Essential American English', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4598
        +                                    role="button" aria-label="Set dictionary search to Essential American English" tabindex="0"

      
        
        4599
        +                                    title="Essential American English">Essential American English</span>

      
        
        4600
        +                                                </div>

      
        
        4601
        +                    </div>

      
        
        4602
        +                </li>

      
        
        4603
        +                

      
        
        4604
        +                                                <li class="lbt lb-cm">

      
        
        4605
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        4606
        +                            on="tap: AMP.setState({ stateSidebarDict: { gram: ! stateSidebarDict.gram } })">

      
        
        4607
        +                        <span class="pr hdb">

      
        
        4608
        +                            <span class="fs12 tcu">Grammar and thesaurus</span>

      
        
        4609
        +                            <i aria-hidden="true" class="i i-minus ibd pa pr0 lpt-2"

      
        
        4610
        +                                [class]="stateSidebarDict.gram ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'">

      
        
        4611
        +                            </i>

      
        
        4612
        +                        </span> 

      
        
        4613
        +                    </span>

      
        
        4614
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.gram ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        4615
        +                        <div class="tc-bl lmb-5 lmt--3 break">

      
        
        4616
        +                            Usage explanations of natural written and spoken English                        </div>

      
        
        4617
        +                        <div class="hul-u tc-d fs16 hlh1_5 lmb-20">

      
        
        4618
        +                                                    <span data-dictCode="british-grammar" class="hp hdb"

      
        
        4619
        +                                on="tap:AMP.setState({ stateSearch: { dataset: 'british-grammar', dataset_text: 'Grammar', dataset_search: 'Search Grammar', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4620
        +                                role="button" aria-label="Set dictionary search to Grammar" tabindex="0"

      
        
        4621
        +                                title="Grammar">Grammar</span>

      
        
        4622
        +                                                    <!-- need to rework this part when we have the spec for the thesaurus dataset selector -->

      
        
        4623
        +                                                        <span data-dictCode="thesaurus" class="hp"

      
        
        4624
        +                                on="tap:AMP.setState({ stateSearch: { dataset: 'thesaurus', dataset_text: 'Thesaurus', dataset_search: 'Search Thesaurus', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4625
        +                                role="button" aria-label="Set dictionary search to Thesaurus" tabindex="0"

      
        
        4626
        +                                title="Thesaurus">Thesaurus</span>

      
        
        4627
        +                        </div>

      
        
        4628
        +                    </div>

      
        
        4629
        +                </li>

      
        
        4630
        +                

      
        
        4631
        +                <li class="lbt lb-cm">

      
        
        4632
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        4633
        +                            on="tap: AMP.setState({ stateSidebarDict: { pron: ! stateSidebarDict.pron } })">

      
        
        4634
        +                        <span class="pr hdb">

      
        
        4635
        +                            <span class="fs12 tcu">Pronunciation</span>

      
        
        4636
        +                            <i aria-hidden="true" class="i i-minus ibd pa pr0 lpt-2"

      
        
        4637
        +                                [class]="stateSidebarDict.pron ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'">

      
        
        4638
        +                            </i>

      
        
        4639
        +                        </span> 

      
        
        4640
        +                    </span>

      
        
        4641
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.pron ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        4642
        +                        <div class="tc-bl lmb-5 lmt--3 break">

      
        
        4643
        +                            British and American pronunciations with audio                        </div>

      
        
        4644
        +                        <div class="hul-u tc-d fs16 hlh1_5 lmb-20">

      
        
        4645
        +                                                        <span data-dictCode="pronunciation" class="hp hdb lmb-5 hp"

      
        
        4646
        +                                on="tap:AMP.setState({ stateSearch: { dataset: 'pronunciation', dataset_text: 'English Pronunciation', dataset_search: 'Search English Pronunciation', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4647
        +                                role="button" aria-label="Set dictionary search to English Pronunciation" tabindex="0"

      
        
        4648
        +                                title="English Pronunciation">English Pronunciation</span>

      
        
        4649
        +                        </div>

      
        
        4650
        +                    </div>

      
        
        4651
        +                </li>

      
        
        4652
        +

      
        
        4653
        +                <li class="lbt lb-cm">

      
        
        4654
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        4655
        +                            on="tap: AMP.setState({ stateSidebarDict: { trans: ! stateSidebarDict.trans } })">

      
        
        4656
        +                        <span class="pr hdb">

      
        
        4657
        +                            <span class="fs12 tcu">Translation</span>

      
        
        4658
        +                            <i aria-hidden="true" class="i i-minus ibd pa pr0 lpt-2"

      
        
        4659
        +                                [class]="stateSidebarDict.trans ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'">

      
        
        4660
        +                            </i>

      
        
        4661
        +                        </span>

      
        
        4662
        +                    </span>

      
        
        4663
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.trans ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        4664
        +

      
        
        4665
        +                                                                            <amp-state id="stateSidebarDictBi">

      
        
        4666
        +                                <script type="application/json">

      
        
        4667
        +                                        {

      
        
        4668
        +                                                                                    "english_chinese_simplified": false,

      
        
        4669
        +                                                                                    "english_chinese_traditional": false,

      
        
        4670
        +                                                                                    "english_danish": false,

      
        
        4671
        +                                                                                    "english_dutch": false,

      
        
        4672
        +                                                                                    "english_french": false,

      
        
        4673
        +                                                                                    "english_german": false,

      
        
        4674
        +                                                                                    "english_indonesian": false,

      
        
        4675
        +                                                                                    "english_italian": false,

      
        
        4676
        +                                                                                    "english_japanese": false,

      
        
        4677
        +                                                                                    "english_norwegian": false,

      
        
        4678
        +                                                                                    "english_polish": false,

      
        
        4679
        +                                                                                    "english_portuguese": false,

      
        
        4680
        +                                                                                    "english_spanish": false,

      
        
        4681
        +                                                                                    "english_swedish": false,

      
        
        4682
        +                                                                                "erroneous_extra_item": false

      
        
        4683
        +                                        }

      
        
        4684
        +                                    </script>

      
        
        4685
        +                            </amp-state>

      
        
        4686
        +

      
        
        4687
        +                            <div class="tc-bl lmb-5 lmt--3 break">

      
        
        4688
        +                                Click on the arrows to change the translation direction.                            </div>

      
        
        4689
        +

      
        
        4690
        +                            <div class="tb lmt-10 lmb-5">Bilingual Dictionaries</div>

      
        
        4691
        +                            <ul class="hul-u tc-d fs16 lmb-15">

      
        
        4692
        +                                                            <li>

      
        
        4693
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        4694
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_chinese_simplified: ! stateSidebarDictBi.english_chinese_simplified }, stateSearch: { dataset: stateSidebarDictBi.english_chinese_simplified ? 'english-chinese-simplified' : 'chinese-simplified-english', dataset_text: stateSidebarDictBi.english_chinese_simplified ? 'English&ndash;Chinese (Simplified)' : 'Chinese (Simplified)&ndash;English', dataset_search: stateSidebarDictBi.english_chinese_simplified ? 'Search English&ndash;Chinese (Simplified)' : 'Search Chinese (Simplified)&ndash;English' } })"

      
        
        4695
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        4696
        +                                    </i>

      
        
        4697
        +                                    <span data-dictCode="english-chinese-simplified" class="hp"

      
        
        4698
        +                                        [class]="stateSidebarDictBi.english_chinese_simplified ? 'hdn' : 'hp'"

      
        
        4699
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-chinese-simplified', dataset_text: 'English&ndash;Chinese (Simplified)', dataset_search: 'Search English–Chinese (Simplified)', isbilang: true, datasetrev: 'chinese-simplified-english', datasetrev_text: 'Chinese (Simplified)&ndash;English', datasetrev_search: 'Search Chinese (Simplified)–English'} }),sidebarDict.close,searchword.focus"

      
        
        4700
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Chinese (Simplified) Dictionary"

      
        
        4701
        +                                        tabindex="0" title="Cambridge English-Chinese (Simplified) Dictionary">English&ndash;Chinese (Simplified)</span>

      
        
        4702
        +                                    <span data-dictCode="chinese-simplified-english" class="hdn"

      
        
        4703
        +                                        [class]="stateSidebarDictBi.english_chinese_simplified ? 'hp' : 'hdn'"

      
        
        4704
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'chinese-simplified-english', dataset_text: 'Chinese (Simplified)&ndash;English', dataset_search: 'Search Chinese (Simplified)–English', isbilang: true, datasetrev: 'english-chinese-simplified', datasetrev_text: 'English&ndash;Chinese (Simplified)', datasetrev_search: 'Search English–Chinese (Simplified)'} }),sidebarDict.close,searchword.focus"

      
        
        4705
        +                                        role="button" aria-label="Set dictionary search to Cambridge Chinese (Simplified)-English Dictionary"

      
        
        4706
        +                                        tabindex="0" title="Cambridge Chinese (Simplified)-English Dictionary">Chinese (Simplified)&ndash;English</span>

      
        
        4707
        +                                </li>

      
        
        4708
        +                                                            <li>

      
        
        4709
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        4710
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_chinese_traditional: ! stateSidebarDictBi.english_chinese_traditional }, stateSearch: { dataset: stateSidebarDictBi.english_chinese_traditional ? 'english-chinese-traditional' : 'chinese-traditional-english', dataset_text: stateSidebarDictBi.english_chinese_traditional ? 'English&ndash;Chinese (Traditional)' : 'Chinese (Traditional)&ndash;English', dataset_search: stateSidebarDictBi.english_chinese_traditional ? 'Search English&ndash;Chinese (Traditional)' : 'Search Chinese (Traditional)&ndash;English' } })"

      
        
        4711
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        4712
        +                                    </i>

      
        
        4713
        +                                    <span data-dictCode="english-chinese-traditional" class="hp"

      
        
        4714
        +                                        [class]="stateSidebarDictBi.english_chinese_traditional ? 'hdn' : 'hp'"

      
        
        4715
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-chinese-traditional', dataset_text: 'English&ndash;Chinese (Traditional)', dataset_search: 'Search English–Chinese (Traditional)', isbilang: true, datasetrev: 'chinese-traditional-english', datasetrev_text: 'Chinese (Traditional)&ndash;English', datasetrev_search: 'Search Chinese (Traditional)–English'} }),sidebarDict.close,searchword.focus"

      
        
        4716
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Chinese (Traditional) Dictionary"

      
        
        4717
        +                                        tabindex="0" title="Cambridge English-Chinese (Traditional) Dictionary">English&ndash;Chinese (Traditional)</span>

      
        
        4718
        +                                    <span data-dictCode="chinese-traditional-english" class="hdn"

      
        
        4719
        +                                        [class]="stateSidebarDictBi.english_chinese_traditional ? 'hp' : 'hdn'"

      
        
        4720
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'chinese-traditional-english', dataset_text: 'Chinese (Traditional)&ndash;English', dataset_search: 'Search Chinese (Traditional)–English', isbilang: true, datasetrev: 'english-chinese-traditional', datasetrev_text: 'English&ndash;Chinese (Traditional)', datasetrev_search: 'Search English–Chinese (Traditional)'} }),sidebarDict.close,searchword.focus"

      
        
        4721
        +                                        role="button" aria-label="Set dictionary search to Cambridge Chinese (Traditional)-English Dictionary"

      
        
        4722
        +                                        tabindex="0" title="Cambridge Chinese (Traditional)-English Dictionary">Chinese (Traditional)&ndash;English</span>

      
        
        4723
        +                                </li>

      
        
        4724
        +                                                            <li>

      
        
        4725
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        4726
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_danish: ! stateSidebarDictBi.english_danish }, stateSearch: { dataset: stateSidebarDictBi.english_danish ? 'english-danish' : 'danish-english', dataset_text: stateSidebarDictBi.english_danish ? 'English&ndash;Danish' : 'Danish&ndash;English', dataset_search: stateSidebarDictBi.english_danish ? 'Search English&ndash;Danish' : 'Search Danish&ndash;English' } })"

      
        
        4727
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        4728
        +                                    </i>

      
        
        4729
        +                                    <span data-dictCode="english-danish" class="hp"

      
        
        4730
        +                                        [class]="stateSidebarDictBi.english_danish ? 'hdn' : 'hp'"

      
        
        4731
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-danish', dataset_text: 'English&ndash;Danish', dataset_search: 'Search English–Danish', isbilang: true, datasetrev: 'danish-english', datasetrev_text: 'Danish&ndash;English', datasetrev_search: 'Search Danish–English'} }),sidebarDict.close,searchword.focus"

      
        
        4732
        +                                        role="button" aria-label="Set dictionary search to English-Danish Dictionary"

      
        
        4733
        +                                        tabindex="0" title="English-Danish Dictionary">English&ndash;Danish</span>

      
        
        4734
        +                                    <span data-dictCode="danish-english" class="hdn"

      
        
        4735
        +                                        [class]="stateSidebarDictBi.english_danish ? 'hp' : 'hdn'"

      
        
        4736
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'danish-english', dataset_text: 'Danish&ndash;English', dataset_search: 'Search Danish–English', isbilang: true, datasetrev: 'english-danish', datasetrev_text: 'English&ndash;Danish', datasetrev_search: 'Search English–Danish'} }),sidebarDict.close,searchword.focus"

      
        
        4737
        +                                        role="button" aria-label="Set dictionary search to Danish-English Dictionary"

      
        
        4738
        +                                        tabindex="0" title="Danish-English Dictionary">Danish&ndash;English</span>

      
        
        4739
        +                                </li>

      
        
        4740
        +                                                            <li>

      
        
        4741
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        4742
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_dutch: ! stateSidebarDictBi.english_dutch }, stateSearch: { dataset: stateSidebarDictBi.english_dutch ? 'english-dutch' : 'dutch-english', dataset_text: stateSidebarDictBi.english_dutch ? 'English&ndash;Dutch' : 'Dutch&ndash;English', dataset_search: stateSidebarDictBi.english_dutch ? 'Search English&ndash;Dutch' : 'Search Dutch&ndash;English' } })"

      
        
        4743
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        4744
        +                                    </i>

      
        
        4745
        +                                    <span data-dictCode="english-dutch" class="hp"

      
        
        4746
        +                                        [class]="stateSidebarDictBi.english_dutch ? 'hdn' : 'hp'"

      
        
        4747
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-dutch', dataset_text: 'English&ndash;Dutch', dataset_search: 'Search English–Dutch', isbilang: true, datasetrev: 'dutch-english', datasetrev_text: 'Dutch&ndash;English', datasetrev_search: 'Search Dutch–English'} }),sidebarDict.close,searchword.focus"

      
        
        4748
        +                                        role="button" aria-label="Set dictionary search to English-Dutch Dictionary"

      
        
        4749
        +                                        tabindex="0" title="English-Dutch Dictionary">English&ndash;Dutch</span>

      
        
        4750
        +                                    <span data-dictCode="dutch-english" class="hdn"

      
        
        4751
        +                                        [class]="stateSidebarDictBi.english_dutch ? 'hp' : 'hdn'"

      
        
        4752
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'dutch-english', dataset_text: 'Dutch&ndash;English', dataset_search: 'Search Dutch–English', isbilang: true, datasetrev: 'english-dutch', datasetrev_text: 'English&ndash;Dutch', datasetrev_search: 'Search English–Dutch'} }),sidebarDict.close,searchword.focus"

      
        
        4753
        +                                        role="button" aria-label="Set dictionary search to Dutch-English Dictionary"

      
        
        4754
        +                                        tabindex="0" title="Dutch-English Dictionary">Dutch&ndash;English</span>

      
        
        4755
        +                                </li>

      
        
        4756
        +                                                            <li>

      
        
        4757
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        4758
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_french: ! stateSidebarDictBi.english_french }, stateSearch: { dataset: stateSidebarDictBi.english_french ? 'english-french' : 'french-english', dataset_text: stateSidebarDictBi.english_french ? 'English&ndash;French' : 'French&ndash;English', dataset_search: stateSidebarDictBi.english_french ? 'Search English&ndash;French' : 'Search French&ndash;English' } })"

      
        
        4759
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        4760
        +                                    </i>

      
        
        4761
        +                                    <span data-dictCode="english-french" class="hp"

      
        
        4762
        +                                        [class]="stateSidebarDictBi.english_french ? 'hdn' : 'hp'"

      
        
        4763
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-french', dataset_text: 'English&ndash;French', dataset_search: 'Search English–French', isbilang: true, datasetrev: 'french-english', datasetrev_text: 'French&ndash;English', datasetrev_search: 'Search French–English'} }),sidebarDict.close,searchword.focus"

      
        
        4764
        +                                        role="button" aria-label="Set dictionary search to English-French Dictionary"

      
        
        4765
        +                                        tabindex="0" title="English-French Dictionary">English&ndash;French</span>

      
        
        4766
        +                                    <span data-dictCode="french-english" class="hdn"

      
        
        4767
        +                                        [class]="stateSidebarDictBi.english_french ? 'hp' : 'hdn'"

      
        
        4768
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'french-english', dataset_text: 'French&ndash;English', dataset_search: 'Search French–English', isbilang: true, datasetrev: 'english-french', datasetrev_text: 'English&ndash;French', datasetrev_search: 'Search English–French'} }),sidebarDict.close,searchword.focus"

      
        
        4769
        +                                        role="button" aria-label="Set dictionary search to French-English Dictionary"

      
        
        4770
        +                                        tabindex="0" title="French-English Dictionary">French&ndash;English</span>

      
        
        4771
        +                                </li>

      
        
        4772
        +                                                            <li>

      
        
        4773
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        4774
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_german: ! stateSidebarDictBi.english_german }, stateSearch: { dataset: stateSidebarDictBi.english_german ? 'english-german' : 'german-english', dataset_text: stateSidebarDictBi.english_german ? 'English&ndash;German' : 'German&ndash;English', dataset_search: stateSidebarDictBi.english_german ? 'Search English&ndash;German' : 'Search German&ndash;English' } })"

      
        
        4775
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        4776
        +                                    </i>

      
        
        4777
        +                                    <span data-dictCode="english-german" class="hp"

      
        
        4778
        +                                        [class]="stateSidebarDictBi.english_german ? 'hdn' : 'hp'"

      
        
        4779
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-german', dataset_text: 'English&ndash;German', dataset_search: 'Search English–German', isbilang: true, datasetrev: 'german-english', datasetrev_text: 'German&ndash;English', datasetrev_search: 'Search German–English'} }),sidebarDict.close,searchword.focus"

      
        
        4780
        +                                        role="button" aria-label="Set dictionary search to English-German Dictionary"

      
        
        4781
        +                                        tabindex="0" title="English-German Dictionary">English&ndash;German</span>

      
        
        4782
        +                                    <span data-dictCode="german-english" class="hdn"

      
        
        4783
        +                                        [class]="stateSidebarDictBi.english_german ? 'hp' : 'hdn'"

      
        
        4784
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'german-english', dataset_text: 'German&ndash;English', dataset_search: 'Search German–English', isbilang: true, datasetrev: 'english-german', datasetrev_text: 'English&ndash;German', datasetrev_search: 'Search English–German'} }),sidebarDict.close,searchword.focus"

      
        
        4785
        +                                        role="button" aria-label="Set dictionary search to German-English Dictionary"

      
        
        4786
        +                                        tabindex="0" title="German-English Dictionary">German&ndash;English</span>

      
        
        4787
        +                                </li>

      
        
        4788
        +                                                            <li>

      
        
        4789
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        4790
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_indonesian: ! stateSidebarDictBi.english_indonesian }, stateSearch: { dataset: stateSidebarDictBi.english_indonesian ? 'english-indonesian' : 'indonesian-english', dataset_text: stateSidebarDictBi.english_indonesian ? 'English&ndash;Indonesian' : 'Indonesian&ndash;English', dataset_search: stateSidebarDictBi.english_indonesian ? 'Search English&ndash;Indonesian' : 'Search Indonesian&ndash;English' } })"

      
        
        4791
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        4792
        +                                    </i>

      
        
        4793
        +                                    <span data-dictCode="english-indonesian" class="hp"

      
        
        4794
        +                                        [class]="stateSidebarDictBi.english_indonesian ? 'hdn' : 'hp'"

      
        
        4795
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-indonesian', dataset_text: 'English&ndash;Indonesian', dataset_search: 'Search English–Indonesian', isbilang: true, datasetrev: 'indonesian-english', datasetrev_text: 'Indonesian&ndash;English', datasetrev_search: 'Search Indonesian–English'} }),sidebarDict.close,searchword.focus"

      
        
        4796
        +                                        role="button" aria-label="Set dictionary search to English-Indonesian Dictionary"

      
        
        4797
        +                                        tabindex="0" title="English-Indonesian Dictionary">English&ndash;Indonesian</span>

      
        
        4798
        +                                    <span data-dictCode="indonesian-english" class="hdn"

      
        
        4799
        +                                        [class]="stateSidebarDictBi.english_indonesian ? 'hp' : 'hdn'"

      
        
        4800
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'indonesian-english', dataset_text: 'Indonesian&ndash;English', dataset_search: 'Search Indonesian–English', isbilang: true, datasetrev: 'english-indonesian', datasetrev_text: 'English&ndash;Indonesian', datasetrev_search: 'Search English–Indonesian'} }),sidebarDict.close,searchword.focus"

      
        
        4801
        +                                        role="button" aria-label="Set dictionary search to Indonesian-English Dictionary"

      
        
        4802
        +                                        tabindex="0" title="Indonesian-English Dictionary">Indonesian&ndash;English</span>

      
        
        4803
        +                                </li>

      
        
        4804
        +                                                            <li>

      
        
        4805
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        4806
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_italian: ! stateSidebarDictBi.english_italian }, stateSearch: { dataset: stateSidebarDictBi.english_italian ? 'english-italian' : 'italian-english', dataset_text: stateSidebarDictBi.english_italian ? 'English&ndash;Italian' : 'Italian&ndash;English', dataset_search: stateSidebarDictBi.english_italian ? 'Search English&ndash;Italian' : 'Search Italian&ndash;English' } })"

      
        
        4807
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        4808
        +                                    </i>

      
        
        4809
        +                                    <span data-dictCode="english-italian" class="hp"

      
        
        4810
        +                                        [class]="stateSidebarDictBi.english_italian ? 'hdn' : 'hp'"

      
        
        4811
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-italian', dataset_text: 'English&ndash;Italian', dataset_search: 'Search English–Italian', isbilang: true, datasetrev: 'italian-english', datasetrev_text: 'Italian&ndash;English', datasetrev_search: 'Search Italian–English'} }),sidebarDict.close,searchword.focus"

      
        
        4812
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Italian Dictionary"

      
        
        4813
        +                                        tabindex="0" title="Cambridge English-Italian Dictionary">English&ndash;Italian</span>

      
        
        4814
        +                                    <span data-dictCode="italian-english" class="hdn"

      
        
        4815
        +                                        [class]="stateSidebarDictBi.english_italian ? 'hp' : 'hdn'"

      
        
        4816
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'italian-english', dataset_text: 'Italian&ndash;English', dataset_search: 'Search Italian–English', isbilang: true, datasetrev: 'english-italian', datasetrev_text: 'English&ndash;Italian', datasetrev_search: 'Search English–Italian'} }),sidebarDict.close,searchword.focus"

      
        
        4817
        +                                        role="button" aria-label="Set dictionary search to Italian-English Dictionary"

      
        
        4818
        +                                        tabindex="0" title="Italian-English Dictionary">Italian&ndash;English</span>

      
        
        4819
        +                                </li>

      
        
        4820
        +                                                            <li>

      
        
        4821
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        4822
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_japanese: ! stateSidebarDictBi.english_japanese }, stateSearch: { dataset: stateSidebarDictBi.english_japanese ? 'english-japanese' : 'japanese-english', dataset_text: stateSidebarDictBi.english_japanese ? 'English&ndash;Japanese' : 'Japanese&ndash;English', dataset_search: stateSidebarDictBi.english_japanese ? 'Search English&ndash;Japanese' : 'Search Japanese&ndash;English' } })"

      
        
        4823
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        4824
        +                                    </i>

      
        
        4825
        +                                    <span data-dictCode="english-japanese" class="hp"

      
        
        4826
        +                                        [class]="stateSidebarDictBi.english_japanese ? 'hdn' : 'hp'"

      
        
        4827
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-japanese', dataset_text: 'English&ndash;Japanese', dataset_search: 'Search English–Japanese', isbilang: true, datasetrev: 'japanese-english', datasetrev_text: 'Japanese&ndash;English', datasetrev_search: 'Search Japanese–English'} }),sidebarDict.close,searchword.focus"

      
        
        4828
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Japanese Dictionary"

      
        
        4829
        +                                        tabindex="0" title="Cambridge English-Japanese Dictionary">English&ndash;Japanese</span>

      
        
        4830
        +                                    <span data-dictCode="japanese-english" class="hdn"

      
        
        4831
        +                                        [class]="stateSidebarDictBi.english_japanese ? 'hp' : 'hdn'"

      
        
        4832
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'japanese-english', dataset_text: 'Japanese&ndash;English', dataset_search: 'Search Japanese–English', isbilang: true, datasetrev: 'english-japanese', datasetrev_text: 'English&ndash;Japanese', datasetrev_search: 'Search English–Japanese'} }),sidebarDict.close,searchword.focus"

      
        
        4833
        +                                        role="button" aria-label="Set dictionary search to Japanese-English Dictionary"

      
        
        4834
        +                                        tabindex="0" title="Japanese-English Dictionary">Japanese&ndash;English</span>

      
        
        4835
        +                                </li>

      
        
        4836
        +                                                            <li>

      
        
        4837
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        4838
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_norwegian: ! stateSidebarDictBi.english_norwegian }, stateSearch: { dataset: stateSidebarDictBi.english_norwegian ? 'english-norwegian' : 'norwegian-english', dataset_text: stateSidebarDictBi.english_norwegian ? 'English&ndash;Norwegian' : 'Norwegian&ndash;English', dataset_search: stateSidebarDictBi.english_norwegian ? 'Search English&ndash;Norwegian' : 'Search Norwegian&ndash;English' } })"

      
        
        4839
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        4840
        +                                    </i>

      
        
        4841
        +                                    <span data-dictCode="english-norwegian" class="hp"

      
        
        4842
        +                                        [class]="stateSidebarDictBi.english_norwegian ? 'hdn' : 'hp'"

      
        
        4843
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-norwegian', dataset_text: 'English&ndash;Norwegian', dataset_search: 'Search English–Norwegian', isbilang: true, datasetrev: 'norwegian-english', datasetrev_text: 'Norwegian&ndash;English', datasetrev_search: 'Search Norwegian–English'} }),sidebarDict.close,searchword.focus"

      
        
        4844
        +                                        role="button" aria-label="Set dictionary search to English-Norwegian Dictionary"

      
        
        4845
        +                                        tabindex="0" title="English-Norwegian Dictionary">English&ndash;Norwegian</span>

      
        
        4846
        +                                    <span data-dictCode="norwegian-english" class="hdn"

      
        
        4847
        +                                        [class]="stateSidebarDictBi.english_norwegian ? 'hp' : 'hdn'"

      
        
        4848
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'norwegian-english', dataset_text: 'Norwegian&ndash;English', dataset_search: 'Search Norwegian–English', isbilang: true, datasetrev: 'english-norwegian', datasetrev_text: 'English&ndash;Norwegian', datasetrev_search: 'Search English–Norwegian'} }),sidebarDict.close,searchword.focus"

      
        
        4849
        +                                        role="button" aria-label="Set dictionary search to Norwegian-English Dictionary"

      
        
        4850
        +                                        tabindex="0" title="Norwegian-English Dictionary">Norwegian&ndash;English</span>

      
        
        4851
        +                                </li>

      
        
        4852
        +                                                            <li>

      
        
        4853
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        4854
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_polish: ! stateSidebarDictBi.english_polish }, stateSearch: { dataset: stateSidebarDictBi.english_polish ? 'english-polish' : 'polish-english', dataset_text: stateSidebarDictBi.english_polish ? 'English&ndash;Polish' : 'Polish&ndash;English', dataset_search: stateSidebarDictBi.english_polish ? 'Search English&ndash;Polish' : 'Search Polish&ndash;English' } })"

      
        
        4855
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        4856
        +                                    </i>

      
        
        4857
        +                                    <span data-dictCode="english-polish" class="hp"

      
        
        4858
        +                                        [class]="stateSidebarDictBi.english_polish ? 'hdn' : 'hp'"

      
        
        4859
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-polish', dataset_text: 'English&ndash;Polish', dataset_search: 'Search English–Polish', isbilang: true, datasetrev: 'polish-english', datasetrev_text: 'Polish&ndash;English', datasetrev_search: 'Search Polish–English'} }),sidebarDict.close,searchword.focus"

      
        
        4860
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Polish Dictionary"

      
        
        4861
        +                                        tabindex="0" title="Cambridge English-Polish Dictionary">English&ndash;Polish</span>

      
        
        4862
        +                                    <span data-dictCode="polish-english" class="hdn"

      
        
        4863
        +                                        [class]="stateSidebarDictBi.english_polish ? 'hp' : 'hdn'"

      
        
        4864
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'polish-english', dataset_text: 'Polish&ndash;English', dataset_search: 'Search Polish–English', isbilang: true, datasetrev: 'english-polish', datasetrev_text: 'English&ndash;Polish', datasetrev_search: 'Search English–Polish'} }),sidebarDict.close,searchword.focus"

      
        
        4865
        +                                        role="button" aria-label="Set dictionary search to Polish-English Dictionary"

      
        
        4866
        +                                        tabindex="0" title="Polish-English Dictionary">Polish&ndash;English</span>

      
        
        4867
        +                                </li>

      
        
        4868
        +                                                            <li>

      
        
        4869
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        4870
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_portuguese: ! stateSidebarDictBi.english_portuguese }, stateSearch: { dataset: stateSidebarDictBi.english_portuguese ? 'english-portuguese' : 'portuguese-english', dataset_text: stateSidebarDictBi.english_portuguese ? 'English&ndash;Portuguese' : 'Portuguese&ndash;English', dataset_search: stateSidebarDictBi.english_portuguese ? 'Search English&ndash;Portuguese' : 'Search Portuguese&ndash;English' } })"

      
        
        4871
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        4872
        +                                    </i>

      
        
        4873
        +                                    <span data-dictCode="english-portuguese" class="hp"

      
        
        4874
        +                                        [class]="stateSidebarDictBi.english_portuguese ? 'hdn' : 'hp'"

      
        
        4875
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-portuguese', dataset_text: 'English&ndash;Portuguese', dataset_search: 'Search English–Portuguese', isbilang: true, datasetrev: 'portuguese-english', datasetrev_text: 'Portuguese&ndash;English', datasetrev_search: 'Search Portuguese–English'} }),sidebarDict.close,searchword.focus"

      
        
        4876
        +                                        role="button" aria-label="Set dictionary search to Cambridge English-Portuguese Dictionary"

      
        
        4877
        +                                        tabindex="0" title="Cambridge English-Portuguese Dictionary">English&ndash;Portuguese</span>

      
        
        4878
        +                                    <span data-dictCode="portuguese-english" class="hdn"

      
        
        4879
        +                                        [class]="stateSidebarDictBi.english_portuguese ? 'hp' : 'hdn'"

      
        
        4880
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'portuguese-english', dataset_text: 'Portuguese&ndash;English', dataset_search: 'Search Portuguese–English', isbilang: true, datasetrev: 'english-portuguese', datasetrev_text: 'English&ndash;Portuguese', datasetrev_search: 'Search English–Portuguese'} }),sidebarDict.close,searchword.focus"

      
        
        4881
        +                                        role="button" aria-label="Set dictionary search to Portuguese-English Dictionary"

      
        
        4882
        +                                        tabindex="0" title="Portuguese-English Dictionary">Portuguese&ndash;English</span>

      
        
        4883
        +                                </li>

      
        
        4884
        +                                                            <li>

      
        
        4885
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        4886
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_spanish: ! stateSidebarDictBi.english_spanish }, stateSearch: { dataset: stateSidebarDictBi.english_spanish ? 'english-spanish' : 'spanish-english', dataset_text: stateSidebarDictBi.english_spanish ? 'English&ndash;Spanish' : 'Spanish&ndash;English', dataset_search: stateSidebarDictBi.english_spanish ? 'Search English&ndash;Spanish' : 'Search Spanish&ndash;English' } })"

      
        
        4887
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        4888
        +                                    </i>

      
        
        4889
        +                                    <span data-dictCode="english-spanish" class="hp"

      
        
        4890
        +                                        [class]="stateSidebarDictBi.english_spanish ? 'hdn' : 'hp'"

      
        
        4891
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-spanish', dataset_text: 'English&ndash;Spanish', dataset_search: 'Search English–Spanish', isbilang: true, datasetrev: 'spanish-english', datasetrev_text: 'Spanish&ndash;English', datasetrev_search: 'Search Spanish–English'} }),sidebarDict.close,searchword.focus"

      
        
        4892
        +                                        role="button" aria-label="Set dictionary search to English-Spanish Dictionary"

      
        
        4893
        +                                        tabindex="0" title="English-Spanish Dictionary">English&ndash;Spanish</span>

      
        
        4894
        +                                    <span data-dictCode="spanish-english" class="hdn"

      
        
        4895
        +                                        [class]="stateSidebarDictBi.english_spanish ? 'hp' : 'hdn'"

      
        
        4896
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'spanish-english', dataset_text: 'Spanish&ndash;English', dataset_search: 'Search Spanish–English', isbilang: true, datasetrev: 'english-spanish', datasetrev_text: 'English&ndash;Spanish', datasetrev_search: 'Search English–Spanish'} }),sidebarDict.close,searchword.focus"

      
        
        4897
        +                                        role="button" aria-label="Set dictionary search to Diccionario Espa&ntilde;ol-ingl&eacute;s"

      
        
        4898
        +                                        tabindex="0" title="Diccionario Espa&ntilde;ol-ingl&eacute;s">Spanish&ndash;English</span>

      
        
        4899
        +                                </li>

      
        
        4900
        +                                                            <li>

      
        
        4901
        +                                    <i class="hp i i-exchange fs14 hv0 tc-p lpl-5 lpr-10" title="Change language direction"

      
        
        4902
        +                                        on="tap: AMP.setState({ stateSidebarDictBi: { english_swedish: ! stateSidebarDictBi.english_swedish }, stateSearch: { dataset: stateSidebarDictBi.english_swedish ? 'english-swedish' : 'swedish-english', dataset_text: stateSidebarDictBi.english_swedish ? 'English&ndash;Swedish' : 'Swedish&ndash;English', dataset_search: stateSidebarDictBi.english_swedish ? 'Search English&ndash;Swedish' : 'Search Swedish&ndash;English' } })"

      
        
        4903
        +                                        role="button" aria-label="Change language direction" tabindex="0" aria-hidden="true">

      
        
        4904
        +                                    </i>

      
        
        4905
        +                                    <span data-dictCode="english-swedish" class="hp"

      
        
        4906
        +                                        [class]="stateSidebarDictBi.english_swedish ? 'hdn' : 'hp'"

      
        
        4907
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'english-swedish', dataset_text: 'English&ndash;Swedish', dataset_search: 'Search English–Swedish', isbilang: true, datasetrev: 'swedish-english', datasetrev_text: 'Swedish&ndash;English', datasetrev_search: 'Search Swedish–English'} }),sidebarDict.close,searchword.focus"

      
        
        4908
        +                                        role="button" aria-label="Set dictionary search to English-Swedish Dictionary"

      
        
        4909
        +                                        tabindex="0" title="English-Swedish Dictionary">English&ndash;Swedish</span>

      
        
        4910
        +                                    <span data-dictCode="swedish-english" class="hdn"

      
        
        4911
        +                                        [class]="stateSidebarDictBi.english_swedish ? 'hp' : 'hdn'"

      
        
        4912
        +                                        on="tap:AMP.setState({ stateSearch: { dataset: 'swedish-english', dataset_text: 'Swedish&ndash;English', dataset_search: 'Search Swedish–English', isbilang: true, datasetrev: 'english-swedish', datasetrev_text: 'English&ndash;Swedish', datasetrev_search: 'Search English–Swedish'} }),sidebarDict.close,searchword.focus"

      
        
        4913
        +                                        role="button" aria-label="Set dictionary search to Swedish-English Dictionary"

      
        
        4914
        +                                        tabindex="0" title="Swedish-English Dictionary">Swedish&ndash;English</span>

      
        
        4915
        +                                </li>

      
        
        4916
        +                                                        </ul>

      
        
        4917
        +                        

      
        
        4918
        +                                                                            <div class="tb lmb-5">Semi-bilingual Dictionaries</div>

      
        
        4919
        +                            <div class="hul-u tc-d fs16 hlh1_5 lmb-20">

      
        
        4920
        +                                                            <span data-dictCode="english-arabic" class="hp hdb"

      
        
        4921
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-arabic', dataset_text: 'English&ndash;Arabic', dataset_search: 'Search English&ndash;Arabic', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4922
        +                                    role="button" aria-label="Set dictionary search to Cambridge English-Arabic Dictionary"

      
        
        4923
        +                                    tabindex="0" title="Cambridge English-Arabic Dictionary">English&ndash;Arabic</span>

      
        
        4924
        +                                                            <span data-dictCode="english-bengali" class="hp hdb"

      
        
        4925
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-bengali', dataset_text: 'English&ndash;Bengali', dataset_search: 'Search English&ndash;Bengali', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4926
        +                                    role="button" aria-label="Set dictionary search to Cambridge English-Bengali Dictionary"

      
        
        4927
        +                                    tabindex="0" title="Cambridge English-Bengali Dictionary">English&ndash;Bengali</span>

      
        
        4928
        +                                                            <span data-dictCode="english-catalan" class="hp hdb"

      
        
        4929
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-catalan', dataset_text: 'English&ndash;Catalan', dataset_search: 'Search English&ndash;Catalan', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4930
        +                                    role="button" aria-label="Set dictionary search to Cambridge English-Catalan Dictionary"

      
        
        4931
        +                                    tabindex="0" title="Cambridge English-Catalan Dictionary">English&ndash;Catalan</span>

      
        
        4932
        +                                                            <span data-dictCode="english-czech" class="hp hdb"

      
        
        4933
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-czech', dataset_text: 'English&ndash;Czech', dataset_search: 'Search English&ndash;Czech', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4934
        +                                    role="button" aria-label="Set dictionary search to English-Czech Dictionary"

      
        
        4935
        +                                    tabindex="0" title="English-Czech Dictionary">English&ndash;Czech</span>

      
        
        4936
        +                                                            <span data-dictCode="english-gujarati" class="hp hdb"

      
        
        4937
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-gujarati', dataset_text: 'English&ndash;Gujarati', dataset_search: 'Search English&ndash;Gujarati', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4938
        +                                    role="button" aria-label="Set dictionary search to English-Gujarati Dictionary"

      
        
        4939
        +                                    tabindex="0" title="English-Gujarati Dictionary">English&ndash;Gujarati</span>

      
        
        4940
        +                                                            <span data-dictCode="english-hindi" class="hp hdb"

      
        
        4941
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-hindi', dataset_text: 'English&ndash;Hindi', dataset_search: 'Search English&ndash;Hindi', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4942
        +                                    role="button" aria-label="Set dictionary search to English-Hindi Dictionary"

      
        
        4943
        +                                    tabindex="0" title="English-Hindi Dictionary">English&ndash;Hindi</span>

      
        
        4944
        +                                                            <span data-dictCode="english-korean" class="hp hdb"

      
        
        4945
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-korean', dataset_text: 'English&ndash;Korean', dataset_search: 'Search English&ndash;Korean', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4946
        +                                    role="button" aria-label="Set dictionary search to Cambridge English-Korean Dictionary"

      
        
        4947
        +                                    tabindex="0" title="Cambridge English-Korean Dictionary">English&ndash;Korean</span>

      
        
        4948
        +                                                            <span data-dictCode="english-malaysian" class="hp hdb"

      
        
        4949
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-malaysian', dataset_text: 'English&ndash;Malay', dataset_search: 'Search English&ndash;Malay', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4950
        +                                    role="button" aria-label="Set dictionary search to English-Malay Dictionary"

      
        
        4951
        +                                    tabindex="0" title="English-Malay Dictionary">English&ndash;Malay</span>

      
        
        4952
        +                                                            <span data-dictCode="english-marathi" class="hp hdb"

      
        
        4953
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-marathi', dataset_text: 'English&ndash;Marathi', dataset_search: 'Search English&ndash;Marathi', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4954
        +                                    role="button" aria-label="Set dictionary search to English-Marathi Dictionary"

      
        
        4955
        +                                    tabindex="0" title="English-Marathi Dictionary">English&ndash;Marathi</span>

      
        
        4956
        +                                                            <span data-dictCode="english-russian" class="hp hdb"

      
        
        4957
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-russian', dataset_text: 'English&ndash;Russian', dataset_search: 'Search English&ndash;Russian', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4958
        +                                    role="button" aria-label="Set dictionary search to Cambridge English-Russian Dictionary"

      
        
        4959
        +                                    tabindex="0" title="Cambridge English-Russian Dictionary">English&ndash;Russian</span>

      
        
        4960
        +                                                            <span data-dictCode="english-tamil" class="hp hdb"

      
        
        4961
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-tamil', dataset_text: 'English&ndash;Tamil', dataset_search: 'Search English&ndash;Tamil', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4962
        +                                    role="button" aria-label="Set dictionary search to English-Tamil Dictionary"

      
        
        4963
        +                                    tabindex="0" title="English-Tamil Dictionary">English&ndash;Tamil</span>

      
        
        4964
        +                                                            <span data-dictCode="english-telugu" class="hp hdb"

      
        
        4965
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-telugu', dataset_text: 'English&ndash;Telugu', dataset_search: 'Search English&ndash;Telugu', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4966
        +                                    role="button" aria-label="Set dictionary search to English-Telugu Dictionary"

      
        
        4967
        +                                    tabindex="0" title="English-Telugu Dictionary">English&ndash;Telugu</span>

      
        
        4968
        +                                                            <span data-dictCode="english-thai" class="hp hdb"

      
        
        4969
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-thai', dataset_text: 'English&ndash;Thai', dataset_search: 'Search English&ndash;Thai', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4970
        +                                    role="button" aria-label="Set dictionary search to English-Thai Dictionary"

      
        
        4971
        +                                    tabindex="0" title="English-Thai Dictionary">English&ndash;Thai</span>

      
        
        4972
        +                                                            <span data-dictCode="english-turkish" class="hp hdb"

      
        
        4973
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-turkish', dataset_text: 'English&ndash;Turkish', dataset_search: 'Search English&ndash;Turkish', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4974
        +                                    role="button" aria-label="Set dictionary search to English-Turkish Dictionary, &#304;ngilizce-T&uuml;rk&ccedil;e &Ccedil;eviri"

      
        
        4975
        +                                    tabindex="0" title="English-Turkish Dictionary, &#304;ngilizce-T&uuml;rk&ccedil;e &Ccedil;eviri">English&ndash;Turkish</span>

      
        
        4976
        +                                                            <span data-dictCode="english-ukrainian" class="hp hdb"

      
        
        4977
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-ukrainian', dataset_text: 'English&ndash;Ukrainian', dataset_search: 'Search English&ndash;Ukrainian', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4978
        +                                    role="button" aria-label="Set dictionary search to English-Ukrainian Dictionary"

      
        
        4979
        +                                    tabindex="0" title="English-Ukrainian Dictionary">English&ndash;Ukrainian</span>

      
        
        4980
        +                                                            <span data-dictCode="english-urdu" class="hp hdb"

      
        
        4981
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-urdu', dataset_text: 'English&ndash;Urdu', dataset_search: 'Search English&ndash;Urdu', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4982
        +                                    role="button" aria-label="Set dictionary search to English-Urdu Dictionary"

      
        
        4983
        +                                    tabindex="0" title="English-Urdu Dictionary">English&ndash;Urdu</span>

      
        
        4984
        +                                                            <span data-dictCode="english-vietnamese" class="hp hdb"

      
        
        4985
        +                                    on="tap: AMP.setState({ stateSearch: { dataset: 'english-vietnamese', dataset_text: 'English&ndash;Vietnamese', dataset_search: 'Search English&ndash;Vietnamese', isbilang: false } }), sidebarDict.close, searchword.focus"

      
        
        4986
        +                                    role="button" aria-label="Set dictionary search to English-Vietnamese Dictionary"

      
        
        4987
        +                                    tabindex="0" title="English-Vietnamese Dictionary">English&ndash;Vietnamese</span>

      
        
        4988
        +                                                        </div>

      
        
        4989
        +                       	                    </div>

      
        
        4990
        +                </li>

      
        
        4991
        +

      
        
        4992
        +                <li class="lbt lb-cm">

      
        
        4993
        +                    <span class="hdb hax lp-10 lpl-15 lpr-15 hp"

      
        
        4994
        +                            on="tap: AMP.setState({ stateSidebarDict: { plus: ! stateSidebarDict.plus } })">

      
        
        4995
        +                        <span class="pr hdb">

      
        
        4996
        +                            <span class="fs12 tcu">Dictionary +Plus</span>

      
        
        4997
        +                            <i aria-hidden="true" class="i i-minus ibd pa pr0 lpt-2"

      
        
        4998
        +                                [class]="stateSidebarDict.plus ? 'i i-minus ibd pa pr0 lpt-2' : 'i i-plus ibd pa pr0 lpt-2'">

      
        
        4999
        +                            </i>

      
        
        5000
        +                        </span> 

      
        
        5001
        +                    </span>

      
        
        5002
        +                    <div class="lpl-15 lpr-15" [class]="stateSidebarDict.plus ? 'lpl-15 lpr-15' : 'hdn'">

      
        
        5003
        +                        <div class="pr tc-d fs16 lmb-20">

      
        
        5004
        +                                                        <span data-dictCode="wordlists" class="hp hdb lmb-5 hp"

      
        
        5005
        +                                on="tap:AMP.setState({ stateSearch: { dataset: 'wordlists', dataset_text: 'Word Lists', dataset_search: 'Search Word Lists' } }), sidebarDict.close, searchword.focus"

      
        
        5006
        +                                role="button" aria-label="Set dictionary search to Word Lists" tabindex="0"

      
        
        5007
        +                                title="Word Lists">Word Lists</span>

      
        
        5008
        +                            <div class="pa p0 bw" [class]="stateSidebarDict.open ? 'hdn' : 'pa p0 bw'">

      
        
        5009
        +                                <span class="pa p0 bload"></span>

      
        
        5010
        +                            </div>

      
        
        5011
        +                        </div>

      
        
        5012
        +                    </div>

      
        
        5013
        +                </li>

      
        
        5014
        +            </ul>

      
        
        5015
        +        </div>

      
        
        5016
        +    </div>

      
        
        5017
        +

      
        
        5018
        +</amp-sidebar>

      
        
        5019
        +

      
        
        5020
        +<amp-sidebar id="sidebarLang" layout="nodisplay" side="right" class="bw cm-f">

      
        
        5021
        +

      
        
        5022
        +    <div class="pr cms han">

      
        
        5023
        +

      
        
        5024
        +        <span class="pa pt0 pr0 lmt-5 lmr-15 lpt-15 hp fon"

      
        
        5025
        +                on="tap:sidebarLang.close" role="button" aria-label='Close' title='Close' tabindex="0">

      
        
        5026
        +            <i class="i i-close ibd" aria-hidden="true"></i>

      
        
        5027
        +        </span>

      
        
        5028
        +

      
        
        5029
        +        <nav class="lp-s_t-5">

      
        
        5030
        +            <div class="fs18 lbb lb-cm lp-5 lpt-20 lpb-15 lpl-15">

      
        
        5031
        +                Choose your language

      
        
        5032
        +            </div>

      
        
        5033
        +            <div class="lp-15">

      
        
        5034
        +                <span class="hax hdb pr">

      
        
        5035
        +                    <i class="i i-globe ibd fs16 hv0" aria-hidden="true"></i>

      
        
        5036
        +                    <span class="lpl-2">English (UK) <span class="tb">&nbsp;</span></span>

      
        
        5037
        +                </span>

      
        
        5038
        +

      
        
        5039
        +                <div class="han hul-u lmt-10 lmb-0 lpl-20 hlh1_5">

      
        
        5040
        +                                                                                            <a href="/us/dictionary/english/skip"

      
        
        5041
        +                        hreflang="en-US" lang="en-US"

      
        
        5042
        +                        class="hdb lmb-5">English (US)</a>

      
        
        5043
        +                                                                            <a href="/es/diccionario/ingles/skip"

      
        
        5044
        +                        hreflang="es" lang="es"

      
        
        5045
        +                        class="hdb lmb-5">Español</a>

      
        
        5046
        +                                                                            <a href="/pt/dicionario/ingles/skip"

      
        
        5047
        +                        hreflang="pt" lang="pt"

      
        
        5048
        +                        class="hdb lmb-5">Português</a>

      
        
        5049
        +                                                                            <a href="/zhs/%E8%AF%8D%E5%85%B8/%E8%8B%B1%E8%AF%AD/skip"

      
        
        5050
        +                        hreflang="zh-Hans" lang="zh-Hans"

      
        
        5051
        +                        class="hdb lmb-5">中文 (简体)</a>

      
        
        5052
        +                                                                            <a href="/zht/%E8%A9%9E%E5%85%B8/%E8%8B%B1%E8%AA%9E/skip"

      
        
        5053
        +                        hreflang="zh-Hant" lang="zh-Hant"

      
        
        5054
        +                        class="hdb lmb-5">正體中文 (繁體)</a>

      
        
        5055
        +                                                                            <a href="/da/ordbog/engelsk/skip"

      
        
        5056
        +                        hreflang="da" lang="da"

      
        
        5057
        +                        class="hdb lmb-5">Dansk</a>

      
        
        5058
        +                                                                            <a href="/de/worterbuch/englisch/skip"

      
        
        5059
        +                        hreflang="de" lang="de"

      
        
        5060
        +                        class="hdb lmb-5">Deutsch</a>

      
        
        5061
        +                                                                            <a href="/fr/dictionnaire/anglais/skip"

      
        
        5062
        +                        hreflang="fr" lang="fr"

      
        
        5063
        +                        class="hdb lmb-5">Français</a>

      
        
        5064
        +                                                                            <a href="/it/dizionario/inglese/skip"

      
        
        5065
        +                        hreflang="it" lang="it"

      
        
        5066
        +                        class="hdb lmb-5">Italiano</a>

      
        
        5067
        +                                                                            <a href="/nl/woordenboek/engels/skip"

      
        
        5068
        +                        hreflang="nl" lang="nl"

      
        
        5069
        +                        class="hdb lmb-5">Nederlands</a>

      
        
        5070
        +                                                                            <a href="/no/ordbok/engelsk/skip"

      
        
        5071
        +                        hreflang="no" lang="no"

      
        
        5072
        +                        class="hdb lmb-5">Norsk</a>

      
        
        5073
        +                                                                            <a href="/pl/dictionary/english/skip"

      
        
        5074
        +                        hreflang="pl" lang="pl"

      
        
        5075
        +                        class="hdb lmb-5">Polski</a>

      
        
        5076
        +                                                                            <a href="/ru/%D1%81%D0%BB%D0%BE%D0%B2%D0%B0%D1%80%D1%8C/%D0%B0%D0%BD%D0%B3%D0%BB%D0%B8%D0%B9%D1%81%D0%BA%D0%B8%D0%B9/skip"

      
        
        5077
        +                        hreflang="ru" lang="ru"

      
        
        5078
        +                        class="hdb lmb-5">Русский</a>

      
        
        5079
        +                                                                            <a href="/tr/s%C3%B6zl%C3%BCk/ingilizce/skip"

      
        
        5080
        +                        hreflang="tr" lang="tr"

      
        
        5081
        +                        class="hdb lmb-5">Türkçe</a>

      
        
        5082
        +                                                                            <a href="/vi/dictionary/english/skip"

      
        
        5083
        +                        hreflang="vi" lang="vi"

      
        
        5084
        +                        class="hdb lmb-5">Tiếng Việt</a>

      
        
        5085
        +                                                                            <a href="/sv/ordbok/engelska/skip"

      
        
        5086
        +                        hreflang="sv" lang="sv"

      
        
        5087
        +                        class="hdb lmb-5">Svenska</a>

      
        
        5088
        +                                                                            <a href="/uk/dictionary/english/skip"

      
        
        5089
        +                        hreflang="uk" lang="uk"

      
        
        5090
        +                        class="hdb lmb-5">Українська</a>

      
        
        5091
        +                                                                            <a href="/ja/dictionary/english/skip"

      
        
        5092
        +                        hreflang="ja" lang="ja"

      
        
        5093
        +                        class="hdb lmb-5">日本語</a>

      
        
        5094
        +                                                                            <a href="/ko/%EC%82%AC%EC%A0%84/%EC%98%81%EC%96%B4/skip"

      
        
        5095
        +                        hreflang="ko" lang="ko"

      
        
        5096
        +                        class="hdb lmb-5">한국어</a>

      
        
        5097
        +                                                                            <a href="/gu/dictionary/english/skip"

      
        
        5098
        +                        hreflang="gu" lang="gu"

      
        
        5099
        +                        class="hdb lmb-5">ગુજરાતી</a>

      
        
        5100
        +                                                                            <a href="/ta/dictionary/english/skip"

      
        
        5101
        +                        hreflang="ta" lang="ta"

      
        
        5102
        +                        class="hdb lmb-5">தமிழ்</a>

      
        
        5103
        +                                                                            <a href="/te/dictionary/english/skip"

      
        
        5104
        +                        hreflang="te" lang="te"

      
        
        5105
        +                        class="hdb lmb-5">తెలుగు</a>

      
        
        5106
        +                                                                            <a href="/bn/dictionary/english/skip"

      
        
        5107
        +                        hreflang="bn" lang="bn"

      
        
        5108
        +                        class="hdb lmb-5">বাঙ্গালি</a>

      
        
        5109
        +                                                                            <a href="/mr/dictionary/english/skip"

      
        
        5110
        +                        hreflang="mr" lang="mr"

      
        
        5111
        +                        class="hdb lmb-5">मराठी</a>

      
        
        5112
        +                                                                            <a href="/hi/%E0%A4%B6%E0%A4%AC%E0%A5%8D%E0%A4%A6%E0%A4%95%E0%A5%8B%E0%A4%B6/%E0%A4%85%E0%A4%82%E0%A4%97%E0%A5%8D%E0%A4%B0%E0%A5%87%E0%A4%9C%E0%A4%BC%E0%A5%80/skip"

      
        
        5113
        +                        hreflang="hi" lang="hi"

      
        
        5114
        +                        class="hdb lmb-5">हिंदी</a>

      
        
        5115
        +                                                    </div>

      
        
        5116
        +            </div>

      
        
        5117
        +

      
        
        5118
        +        </nav>

      
        
        5119
        +

      
        
        5120
        +    </div>

      
        
        5121
        +

      
        
        5122
        +</amp-sidebar>

      
        
        5123
        +

      
        
        5124
        +            

      
        
        5125
        +<amp-sidebar id="sidebarContentNav" layout="nodisplay" side="left" class="bw cm-f">

      
        
        5126
        +

      
        
        5127
        +    <div class="pr cm-fc lm-auto">

      
        
        5128
        +        <span class="pa pt0 pr0 lmt-5 lmr-15 lpt-15 hp fon"

      
        
        5129
        +                on="tap:sidebarContentNav.close" role="button" aria-label='Close' title='Close' tabindex="0">

      
        
        5130
        +            <i class="i i-close ibd lpr-5" aria-hidden="true"></i>

      
        
        5131
        +        </span>

      
        
        5132
        +

      
        
        5133
        +        <div class="han tc-bd lpt-5">

      
        
        5134
        +

      
        
        5135
        +            <div class="fs18 lbb lb-cm lp-5 lpt-20 lpb-15 lpl-15">

      
        
        5136
        +                Contents            </div>

      
        
        5137
        +

      
        
        5138
        +                            <div id="navigation" class="dtoc">

      
        
        5139
        +

      
        
        5140
        +                <amp-state id="stateSidebarContentNav"><script type="application/json">

      
        
        5141
        +                    {

      
        
        5142
        +                    "cald4":   true ,"cald4_Verb":   true ,

      
        
        5143
        +                                        "cald4_Noun":   false ,

      
        
        5144
        +                                "cacd":   false ,"cacd_Verb":   false ,

      
        
        5145
        +            "cbed":   false ,"examples":   false ,                    "erroneous_extra_item": false

      
        
        5146
        +                    }

      
        
        5147
        +                </script></amp-state><ul class="hul-u hul-u0 fs14 lmb-0 lbb lb-cm order-container"><li class="lbb lb-cm order-firstItem" data-dataset="cald4">

      
        
        5148
        +<div class="habg hax lp-15 lpt-10 lpb-10"><a class="pr tcu hdb lpt-2 lpb-2" role="button" aria-label="Open variations list" on="tap: AMP.setState({ stateSidebarContentNav: {'cald4': !stateSidebarContentNav['cald4'] } })">

      
        
        5149
        +                            English 

      
        
        5150
        +                            <i class="  i-minus  i ibd pa pr5 " [class]="stateSidebarContentNav['cald4'] ? 'i i-minus ibd pa pr5' : 'i i-plus ibd pa pr5'"> </i></a></div><div class="  " [class]="stateSidebarContentNav['cald4'] ? '' : 'hdn'"><ul class="hul-u hul-un hul-u0 lm-0 lbt lb-cm lml-15 lmr-15"><li class="lbb lb-cm">

      
        
        5151
        +<div class="pr hp lpt-10 lpb-10 lpl-10" role="button" aria-label="Open variations list" tabindex="0" on="tap: AMP.setState({ stateSidebarContentNav: {'cald4_Verb': !stateSidebarContentNav['cald4_Verb'] } })">

      
        
        5152
        +<span class="ti tb">Verb</span><i class=" i i-minus ibd pa pr5 lpt-2 " [class]="stateSidebarContentNav['cald4_Verb'] ? 'i i-minus ibd pa pr5 lpt-2' : 'i i-plus ibd pa pr5 lpt-2'"> </i>

      
        
        5153
        +</div>

      
        
        5154
        +<div class=" lpl-20 " [class]="stateSidebarContentNav['cald4_Verb'] ? 'lpl-20' : 'hdn'" data-key-open="cald4_Verb" data-key-current="cald4_Verb"><ul class="lmb-5">

      
        
        5155
        +<li class="lpt-5 lpb-5"><a class="js-trigger" data-onclick="    sendGAEvent('navigation', 'navigation-link')

      
        
        5156
        +" href="#cald4-1-1" title="skip meaning

      
        
        5157
        +                "><span class="hw">skip</span> <span class="alt gw">(MOVE)</span></a></li>

      
        
        5158
        +<li class="lpt-5 lpb-5"><a class="js-trigger" data-onclick="    sendGAEvent('navigation', 'navigation-link')

      
        
        5159
        +" href="#cald4-1-2" title="skip meaning

      
        
        5160
        +                "><span class="hw">skip</span> <span class="alt gw">(JUMP)</span></a></li>

      
        
        5161
        +<li class="lpt-5 lpb-5"><a class="js-trigger" data-onclick="    sendGAEvent('navigation', 'navigation-link')

      
        
        5162
        +" href="#cald4-1-3" title="skip rope meaning

      
        
        5163
        +                "><span class="hw">skip rope</span></a></li>

      
        
        5164
        +<li class="lpt-5 lpb-5"><a class="js-trigger" data-onclick="    sendGAEvent('navigation', 'navigation-link')

      
        
        5165
        +" href="#cald4-1-4" title="skip meaning

      
        
        5166
        +                "><span class="hw">skip</span> <span class="alt gw">(LEAVE)</span></a></li>

      
        
        5167
        +<li class="lpt-5 lpb-5"><a class="js-trigger" data-onclick="    sendGAEvent('navigation', 'navigation-link')

      
        
        5168
        +" href="#cald4-1-5" title="skip meaning

      
        
        5169
        +                "><span class="hw">skip</span> <span class="alt gw">(AVOID)</span></a></li>

      
        
        5170
        +<li class="lpt-5 lpb-5"><a class="js-trigger" data-onclick="    sendGAEvent('navigation', 'navigation-link')

      
        
        5171
        +" href="#cald4-1-6" title="skip meaning

      
        
        5172
        +                "><span class="hw">skip</span> <span class="alt gw">(THROW)</span></a></li>

      
        
        5173
        +</ul></div>

      
        
        5174
        +</li>

      
        
        5175
        +</ul></div><div class="  " [class]="stateSidebarContentNav['cald4'] ? '' : 'hdn'"><ul class="hul-u hul-un hul-u0 lm-0 lbt lb-cm lml-15 lmr-15"><li class="lbb lb-cm">

      
        
        5176
        +<div class="pr hp lpt-10 lpb-10 lpl-10" role="button" aria-label="Open variations list" tabindex="0" on="tap: AMP.setState({ stateSidebarContentNav: {'cald4_Noun': !stateSidebarContentNav['cald4_Noun'] } })">

      
        
        5177
        +<span class="ti tb">Noun</span><i class=" i i-plus ibd pa pr5 lpt-2 " [class]="stateSidebarContentNav['cald4_Noun'] ? 'i i-minus ibd pa pr5 lpt-2' : 'i i-plus ibd pa pr5 lpt-2'"> </i>

      
        
        5178
        +</div>

      
        
        5179
        +<div class=" hdn " [class]="stateSidebarContentNav['cald4_Noun'] ? 'lpl-20' : 'hdn'" data-key-open="cald4_Verb" data-key-current="cald4_Noun"><ul class="lmb-5">

      
        
        5180
        +<li class="lpt-5 lpb-5"><a class="js-trigger" data-onclick="    sendGAEvent('navigation', 'navigation-link')

      
        
        5181
        +" href="#cald4-2-1" title="skip meaning

      
        
        5182
        +                "><span class="hw">skip</span> <span class="alt gw">(CONTAINER)</span></a></li>

      
        
        5183
        +<li class="lpt-5 lpb-5"><a class="js-trigger" data-onclick="    sendGAEvent('navigation', 'navigation-link')

      
        
        5184
        +" href="#cald4-2-2" title="skip meaning

      
        
        5185
        +                "><span class="hw">skip</span> <span class="alt gw">(MOVE)</span></a></li>

      
        
        5186
        +<li class="lpt-5 lpb-5"><a class="js-trigger" data-onclick="    sendGAEvent('navigation', 'navigation-link')

      
        
        5187
        +" href="#cald4-2-3" title="skip meaning

      
        
        5188
        +                "><span class="hw">skip</span> <span class="alt gw">(PERSON)</span></a></li>

      
        
        5189
        +</ul></div>

      
        
        5190
        +</li>

      
        
        5191
        +</ul></div>

      
        
        5192
        +</li><li class="lbb lb-cm " data-dataset="cacd">

      
        
        5193
        +<div class="habg hax lp-15 lpt-10 lpb-10"><a class="pr tcu hdb lpt-2 lpb-2" role="button" aria-label="Open variations list" on="tap: AMP.setState({ stateSidebarContentNav: {'cacd': !stateSidebarContentNav['cacd'] } })">

      
        
        5194
        +                            American 

      
        
        5195
        +                            <i class="  i-plus  i ibd pa pr5 " [class]="stateSidebarContentNav['cacd'] ? 'i i-minus ibd pa pr5' : 'i i-plus ibd pa pr5'"> </i></a></div><div class="  hdn  " [class]="stateSidebarContentNav['cacd'] ? '' : 'hdn'"><ul class="hul-u hul-un hul-u0 lm-0 lbt lb-cm lml-15 lmr-15"><li class="lbb lb-cm">

      
        
        5196
        +<div class="pr hp lpt-10 lpb-10 lpl-10" role="button" aria-label="Open variations list" tabindex="0" on="tap: AMP.setState({ stateSidebarContentNav: {'cacd_Verb': !stateSidebarContentNav['cacd_Verb'] } })">

      
        
        5197
        +<span class="ti tb">Verb</span><i class=" i i-plus ibd pa pr5 lpt-2 " [class]="stateSidebarContentNav['cacd_Verb'] ? 'i i-minus ibd pa pr5 lpt-2' : 'i i-plus ibd pa pr5 lpt-2'"> </i>

      
        
        5198
        +</div>

      
        
        5199
        +<div class=" hdn " [class]="stateSidebarContentNav['cacd_Verb'] ? 'lpl-20' : 'hdn'" data-key-open="cald4_Verb" data-key-current="cacd_Verb"><ul class="lmb-5">

      
        
        5200
        +<li class="lpt-5 lpb-5"><a class="js-trigger" data-onclick="    sendGAEvent('navigation', 'navigation-link')

      
        
        5201
        +" href="#cacd-1-1" title="skip meaning

      
        
        5202
        +                "><span class="hw">skip</span> <span class="alt gw">(MOVE)</span></a></li>

      
        
        5203
        +<li class="lpt-5 lpb-5"><a class="js-trigger" data-onclick="    sendGAEvent('navigation', 'navigation-link')

      
        
        5204
        +" href="#cacd-1-2" title="skip meaning

      
        
        5205
        +                "><span class="hw">skip</span> <span class="alt gw">(LEAVE)</span></a></li>

      
        
        5206
        +<li class="lpt-5 lpb-5"><a class="js-trigger" data-onclick="    sendGAEvent('navigation', 'navigation-link')

      
        
        5207
        +" href="#cacd-1-3" title="skip meaning

      
        
        5208
        +                "><span class="hw">skip</span> <span class="alt gw">(AVOID)</span></a></li>

      
        
        5209
        +</ul></div>

      
        
        5210
        +</li>

      
        
        5211
        +</ul></div>

      
        
        5212
        +</li><li class="lbb lb-cm " data-dataset="cbed">

      
        
        5213
        +<div class="habg hax lp-15 lpt-10 lpb-10"><a class="pr tcu hdb lpt-2 lpb-2" role="button" aria-label="Open variations list" on="tap: AMP.setState({ stateSidebarContentNav: {'cbed': !stateSidebarContentNav['cbed'] } })">

      
        
        5214
        +                            Business 

      
        
        5215
        +                            <i class="  i-plus  i ibd pa pr5 " [class]="stateSidebarContentNav['cbed'] ? 'i i-minus ibd pa pr5' : 'i i-plus ibd pa pr5'"> </i></a></div><div class="  hdn  " [class]="stateSidebarContentNav['cbed'] ? '' : 'hdn'"><div class="lbt lml-15 lmr-15 lpt-10 lpb-10 lpl-10"><a href="#cbed-1"><span class="ti tb">Noun</span></a></div></div>

      
        
        5216
        +</li><li class="lbb lb-cm lp-15 lpt-10 lpb-10"><a class="habg hax tcu hdb lpt-2 lpb-2" href="#dataset_examples">

      
        
        5217
        +                        Examples                    </a></li></ul>

      
        
        5218
        +</div>

      
        
        5219
        +            

      
        
        5220
        +            <ul class="hul-u hul-u0 fs14">

      
        
        5221
        +

      
        
        5222
        +                

      
        
        5223
        +                                

      
        
        5224
        +                                <li class="lbb lb-cm lp-15 lpt-10 lpb-10">

      
        
        5225
        +                    <a href="#dataset_translations" class="habg hax tcu hdb lpt-2 lpb-2">

      
        
        5226
        +                        Translations

      
        
        5227
        +                    </a>

      
        
        5228
        +                </li>

      
        
        5229
        +                

      
        
        5230
        +                                <li class="lbb lb-cm lp-15 lpt-10 lpb-10">

      
        
        5231
        +                    <a href="https://dictionary.cambridge.org/grammar/british-grammar/" class="pr habg hax tcu hdb lpt-2 lpb-2">

      
        
        5232
        +                        Grammar                        <i class="i i-external-link-alt ibd pa pr5 lpt-2" aria-hidden="true"></i>

      
        
        5233
        +                    </a>

      
        
        5234
        +                </li>

      
        
        5235
        +                                <li class="lp-15 lpt-10 lpb-10">

      
        
        5236
        +                    <a href="https://dictionary.cambridge.org/translate/" class="pr habg hax tcu hdb lpt-2 lpb-2">

      
        
        5237
        +                        All translations                        <i class="i i-external-link-alt ibd pa pr5 lpt-2" aria-hidden="true"></i>

      
        
        5238
        +                    </a>

      
        
        5239
        +                </li>

      
        
        5240
        +            </ul>

      
        
        5241
        +

      
        
        5242
        +        </div>

      
        
        5243
        +    </div>

      
        
        5244
        +

      
        
        5245
        +</amp-sidebar>

      
        
        5246
        +    

      
        
        5247
        +    <amp-state id="stateSidebarWordList">

      
        
        5248
        +    <script type="application/json">

      
        
        5249
        +    {

      
        
        5250
        +        "wordlist_id": "",

      
        
        5251
        +        "word": "",

      
        
        5252
        +        "wordlist": "",

      
        
        5253
        +        "dictCode": "english",

      
        
        5254
        +        "url": "",

      
        
        5255
        +        "expended": false

      
        
        5256
        +    }

      
        
        5257
        +    </script>

      
        
        5258
        +</amp-state>

      
        
        5259
        +

      
        
        5260
        +<amp-state id="stateSidebarWordListItems" [src]="'/plus/getWordlists?foo=' + stateSidebarWordList.wordlist_id" credentials="include">

      
        
        5261
        +    <script type="application/json">

      
        
        5262
        +        []

      
        
        5263
        +    </script>

      
        
        5264
        +</amp-state>

      
        
        5265
        +

      
        
        5266
        +<amp-sidebar id="sidebarWordList" layout="nodisplay" side="left" class="bw cm-f" amp-access-hide>

      
        
        5267
        +    <div class="pr hdf hflxy lminh100">

      
        
        5268
        +        <div class="pr cm-fc hflx1 lm-auto">

      
        
        5269
        +            <span class="pa pt0 pr0 lmt-5 lmr-15 lpt-15 hp fon" role="button" tabindex="0"

      
        
        5270
        +                    on="tap:formAddToWordlistNew.clear, formAddToWordlist.clear, sidebarWordList.close" aria-label='Close' title='Close'>

      
        
        5271
        +                <i class="i i-close ibd lpr-5" aria-hidden="true"></i>

      
        
        5272
        +            </span>

      
        
        5273
        +

      
        
        5274
        +            <div class="han tc-bd lp-15 lpt-5 lpb-25" amp-access="NOT loggedIn">

      
        
        5275
        +                <div class="fs18 lpt-20 lmb-25">My word lists</div>

      
        
        5276
        +                <p>To add <strong class='tb' [text]='stateGlobal.wotd'>skip</strong> to a word list please sign up or log in.</p>

      
        
        5277
        +

      
        
        5278
        +                <div>

      
        
        5279
        +    <span on="tap:amp-access.login-sign-up" class="boa hao hbtn hbtn-tab tb tc-bd">Sign up</span>

      
        
        5280
        +    <span class="lpl-5 lpr-5">or</span>

      
        
        5281
        +    <span on="tap:amp-access.login-sign-in" class="bh hao hbtn hbtn-tab tb">Log in</span>

      
        
        5282
        +</div>

      
        
        5283
        +            </div>

      
        
        5284
        +

      
        
        5285
        +            <div class="han tc-bd lp-15 lpt-5 lpb-25" amp-access="loggedIn">

      
        
        5286
        +                <div class="fs18 lpt-20 lmb-25">My word lists</div>

      
        
        5287
        +                <p>Add <strong class='tb' [text]='stateGlobal.wotd'>skip</strong> to one of your lists below, or create a new one.</p>

      
        
        5288
        +

      
        
        5289
        +                <div class="lp-10 lc1 lmb-10">

      
        
        5290
        +                    <form class="x" id="formAddToWordlistNew" method="post" action-xhr="https://dictionary.cambridge.org/plus/addWordlist"

      
        
        5291
        +                            verify-xhr="https://dictionary.cambridge.org/plus/addWordlist" target="_top" 

      
        
        5292
        +                            on="submit-success:AMP.setState({ stateSidebarWordList: { wordlist_id: event.response.wordlistId } }),formAddToWordlist.submit">

      
        
        5293
        +                        <div>

      
        
        5294
        +                            <div class="hfr">

      
        
        5295
        +                                <button type="submit" class="bo iwc iwc-40 hao lb0" aria-label="Create side bar"

      
        
        5296
        +                                    title="Create">

      
        
        5297
        +                                    <i class="i i-check" aria-hidden="true"></i>

      
        
        5298
        +                                </button>

      
        
        5299
        +                            </div>

      
        
        5300
        +

      
        
        5301
        +                            <div class="hoh lpr-5">

      
        
        5302
        +                                <input type="text" name="name" class="ft fon pr pt0 hbr-20 lc1 lp-10 lpl-15"

      
        
        5303
        +                                    placeholder="New word list name" />

      
        
        5304
        +                            </div>

      
        
        5305
        +                        </div>

      
        
        5306
        +                        <div submitting>

      
        
        5307
        +                            <template type="amp-mustache">

      
        
        5308
        +                                <div class="pa p0 lp-5 bl-l">

      
        
        5309
        +                                    <div class="pa p0 bload">

      
        
        5310
        +                                    </div>

      
        
        5311
        +                                </div>

      
        
        5312
        +                            </template>

      
        
        5313
        +                        </div>

      
        
        5314
        +                        <div submit-error>

      
        
        5315
        +                            <template type="amp-mustache">

      
        
        5316
        +                                <div class="fs14 lpt-5 tc-err">

      
        
        5317
        +                                    {{#verifyErrors}}

      
        
        5318
        +                                        <p>{{message}}</p>

      
        
        5319
        +                                    {{/verifyErrors}}

      
        
        5320
        +                                    {{^verifyErrors}}

      
        
        5321
        +                                        {{#message}}

      
        
        5322
        +                                            <p>{{message}}</p>

      
        
        5323
        +                                        {{/message}}

      
        
        5324
        +                                        {{^message}}

      
        
        5325
        +                                            <p>Something went wrong.</p>

      
        
        5326
        +                                        {{/message}}

      
        
        5327
        +                                    {{/verifyErrors}}

      
        
        5328
        +                                </div>

      
        
        5329
        +                            </template>

      
        
        5330
        +                        </div>

      
        
        5331
        +                    </form>

      
        
        5332
        +                </div>

      
        
        5333
        +                <amp-list id="sideBarWordListLists" height="0" layout="fixed-height" items="."

      
        
        5334
        +                    [height]="(stateSidebarWordListItems.length > 5 && !stateSidebarWordList.expended) ? 195 : (stateSidebarWordListItems.length * 39)"

      
        
        5335
        +                    [src]="stateSidebarWordListItems">

      
        
        5336
        +                        <template type="amp-mustache">

      
        
        5337
        +                            <div class="lbb lb-cm lp-10 wordlist-row">

      
        
        5338
        +                                <span class="hdb hoh to-e tw-nw hp"

      
        
        5339
        +                                    on="tap:AMP.setState({ stateSidebarWordList: { wordlist_id: '{{id}}' } }),formAddToWordlist.submit">

      
        
        5340
        +                                    {{name}}

      
        
        5341
        +                                </span>

      
        
        5342
        +                            </div>

      
        
        5343
        +                        </template>

      
        
        5344
        +                </amp-list>

      
        
        5345
        +                <div id="sideBarWordListListsOver" class="hao hp lmt-25" role="button" on="tap:AMP.setState({ stateSidebarWordList: { expended: 'true'}})" [class]="(stateSidebarWordListItems.length > 5 && !stateSidebarWordList.expended) ? 'hao hp lmt-25' : 'hdn'">

      
        
        5346
        +                    <div class="fs14 boa hp lp-5 lpl-10 lpr-10">

      
        
        5347
        +                        <i class="i i-chevron-down lmr-5 lpt-3 lpb-3" aria-hidden="true"></i>

      
        
        5348
        +                        More

      
        
        5349
        +                    </div>

      
        
        5350
        +                </div>

      
        
        5351
        +

      
        
        5352
        +                                <div class="had lmt-25 lpb-25">Go to your <a  class='tb' href='/plus/wordlist'>word lists</a></div>

      
        
        5353
        +

      
        
        5354
        +                <form id="formAddToWordlist" method="post" action-xhr="https://dictionary.cambridge.org/plus/addWordlistEntry" verify-xhr="https://dictionary.cambridge.org/plus/addWordlistEntry" target="_top" 

      
        
        5355
        +                    on="submit-success:formAddToWordlistNew.clear,sidebarWordList.close,AMP.setState({ stateSidebarWordList: { wordlist_id: '', word: event.response.word, wordlist: event.response.wordlist, url: event.response.url } })">

      
        
        5356
        +                    <div>

      
        
        5357
        +                        <input type="hidden" name="dictCode" [value]="stateSidebarWordList.dictCode" />

      
        
        5358
        +                        <input type="hidden" name="senseId" [value]="stateGlobal.wlSenseId" />

      
        
        5359
        +                        <input type="hidden" name="wordlistId" [value]="stateSidebarWordList.wordlist_id" />

      
        
        5360
        +                    </div>

      
        
        5361
        +                    <div submitting>

      
        
        5362
        +                        <template type="amp-mustache">

      
        
        5363
        +                            <div class="pa p0 lp-5 bl-l">

      
        
        5364
        +                                <div class="pa p0 bload">

      
        
        5365
        +                                </div>

      
        
        5366
        +                            </div>

      
        
        5367
        +                        </template>

      
        
        5368
        +                    </div>

      
        
        5369
        +                    <div submit-error>

      
        
        5370
        +                        <template type="amp-mustache">

      
        
        5371
        +                            <div class="m me fs14">

      
        
        5372
        +                                {{#verifyErrors}}

      
        
        5373
        +                                    <p>{{message}}</p>

      
        
        5374
        +                                {{/verifyErrors}}

      
        
        5375
        +                                {{^verifyErrors}}

      
        
        5376
        +                                    {{#message}}

      
        
        5377
        +                                        <p>{{message}}</p>

      
        
        5378
        +                                    {{/message}}

      
        
        5379
        +                                    {{^message}}

      
        
        5380
        +                                        <p>Something went wrong.</p>

      
        
        5381
        +                                    {{/message}}

      
        
        5382
        +                                {{/verifyErrors}}

      
        
        5383
        +                            </div>

      
        
        5384
        +                        </template>

      
        
        5385
        +                    </div>

      
        
        5386
        +                </form>

      
        
        5387
        +

      
        
        5388
        +            </div>

      
        
        5389
        +        </div>

      
        
        5390
        +    </div>

      
        
        5391
        +</amp-sidebar>

      
        
        5392
        +    

      
        
        5393
        +<amp-state id="stateSidebarEntryTellUs">

      
        
        5394
        +    <script type="application/json">

      
        
        5395
        +    {

      
        
        5396
        +        "example_id": "",

      
        
        5397
        +        "dataset_id": "",

      
        
        5398
        +        "success": false

      
        
        5399
        +    }

      
        
        5400
        +    </script>

      
        
        5401
        +</amp-state>

      
        
        5402
        +

      
        
        5403
        +<amp-sidebar id="sidebarEntryTellUs" layout="nodisplay" side="left" class="bw cm-f">

      
        
        5404
        +

      
        
        5405
        +    <div class="pr hdf hflxy lminh100">

      
        
        5406
        +        <div class="pr cm-fc hflx1 lm-auto">

      
        
        5407
        +            <span class="pa pt0 pr0 lmt-5 lmr-15 lpt-15 hp" role="button" tabindex="0"

      
        
        5408
        +                    on="tap: sidebarEntryTellUs.close" aria-label='Close' title='Close'>

      
        
        5409
        +                <i class="i i-close ibd lpr-5" aria-hidden="true"></i>

      
        
        5410
        +            </span>

      
        
        5411
        +

      
        
        5412
        +            <div class="han tc-bd lp-15 lpt-5 lpb-25">

      
        
        5413
        +                <div class="fs18 lpt-20 lpr-25 lmb-25">

      
        
        5414
        +                    Tell us about this example sentence:                </div>

      
        
        5415
        +

      
        
        5416
        +                <form class="" [class]="stateSidebarEntryTellUs.dataset_id == 'NONE' ? 'hdn' : ''"

      
        
        5417
        +                        id="formTellUs" method="post" action-xhr="https://dictionary.cambridge.org/putunga/report" target="_top"

      
        
        5418
        +                        on="submit-success: AMP.setState({ stateSidebarEntryTellUs: { success: true } })">

      
        
        5419
        +                    <div class="fs15">

      
        
        5420
        +                        <input type="hidden" name="id" [value]="stateSidebarEntryTellUs.example_id" />

      
        
        5421
        +                        <input type="hidden" name="dataset" [value]="stateSidebarEntryTellUs.dataset_id" />

      
        
        5422
        +

      
        
        5423
        +                        <div class="lbt lb-cm">

      
        
        5424
        +                            <label class="tn lp-5 lpt-15 lpb-15 x">

      
        
        5425
        +                                <input type="radio" name="reason" class="hfl lmr-10 lmt-2" value="The word in the example sentence does not match the entry word." 

      
        
        5426
        +                                       role="button" tabindex="0">

      
        
        5427
        +                                <span class="hdb hoh">

      
        
        5428
        +                                    The word in the example sentence does not match the entry word.                                </span>

      
        
        5429
        +                            </label>

      
        
        5430
        +                        </div>

      
        
        5431
        +

      
        
        5432
        +                        <div class="lbt lb-cm">

      
        
        5433
        +                            <label class="tn lp-5 lpt-15 lpb-15 x">

      
        
        5434
        +                                <input type="radio" name="reason" class="hfl lmr-10 lmt-2" value="The sentence contains offensive content." 

      
        
        5435
        +                                       role="button" tabindex="0" />

      
        
        5436
        +                                <span class="hdb hoh">

      
        
        5437
        +                                    The sentence contains offensive content.                                </span>

      
        
        5438
        +                            </label>

      
        
        5439
        +                        </div>

      
        
        5440
        +

      
        
        5441
        +                        <div class="lbt lb-cm x lpt-15">

      
        
        5442
        +                            <div [class]="stateSidebarEntryTellUs.success ? 'hdn' : ''">

      
        
        5443
        +                                <button class="hfl hao hao hbtn hbtn-tab bhb fon" title="Search"

      
        
        5444
        +                                        on="tap:sidebarEntryTellUs.close" role="button" aria-label='Close' title='Close' tabindex="0">

      
        
        5445
        +                                    Cancel                                </button>

      
        
        5446
        +

      
        
        5447
        +                                <button type="submit" class="hfr boa hao hbtn hbtn-tab tb tc-bd" aria-label="Submit">

      
        
        5448
        +                                    Submit                                </button>

      
        
        5449
        +                            </div>

      
        
        5450
        +                        </div>

      
        
        5451
        +                    </div>

      
        
        5452
        +                    <div submitting>

      
        
        5453
        +                        <template type="amp-mustache">

      
        
        5454
        +                            <div class="pa p0 lp-5 bl-l">

      
        
        5455
        +                            <div class="pa p0 bload">

      
        
        5456
        +                            </div>

      
        
        5457
        +                            </div>

      
        
        5458
        +                        </template>

      
        
        5459
        +                    </div>

      
        
        5460
        +                    <div submit-success>

      
        
        5461
        +                        <template type="amp-mustache">

      
        
        5462
        +                            <div class="m ms fs14 lmt-10">

      
        
        5463
        +                                Thanks! Your feedback will be reviewed.

      
        
        5464
        +                            </div>

      
        
        5465
        +                        </template>

      
        
        5466
        +                    </div>

      
        
        5467
        +                    <div submit-error>

      
        
        5468
        +                        <template type="amp-mustache">

      
        
        5469
        +                            <div class="m me fs14 lmt-25">

      
        
        5470
        +                                {{#verifyErrors}}

      
        
        5471
        +                                    <p>{{message}}</p>

      
        
        5472
        +                                {{/verifyErrors}}

      
        
        5473
        +                                {{^verifyErrors}}

      
        
        5474
        +                                    {{#message}}

      
        
        5475
        +                                        <p>{{message}}</p>

      
        
        5476
        +                                    {{/message}}

      
        
        5477
        +                                    {{^message}}

      
        
        5478
        +                                        <p>There was a problem sending your report.</p>

      
        
        5479
        +                                    {{/message}}

      
        
        5480
        +                                {{/verifyErrors}}

      
        
        5481
        +                            </div>

      
        
        5482
        +                        </template>

      
        
        5483
        +                    </div>

      
        
        5484
        +                </form>

      
        
        5485
        +

      
        
        5486
        +                <form class="hdn" [class]="stateSidebarEntryTellUs.dataset_id == 'NONE' ? '' : 'hdn'"

      
        
        5487
        +                        id="formTellUsDefinition" method="post" action-xhr="https://dictionary.cambridge.org/dictionary/rate" target="_top"

      
        
        5488
        +                        on="submit-success: AMP.setState({ stateSidebarEntryTellUs: { success: true } })">

      
        
        5489
        +                    <div class="fs15">

      
        
        5490
        +                        <input type="hidden" name="id" [value]="stateSidebarEntryTellUs.example_id" />

      
        
        5491
        +                        <input type="hidden" name="rate" [value]="-1" />

      
        
        5492
        +

      
        
        5493
        +                        <div class="lbt lb-cm">

      
        
        5494
        +                            <label class="tn lp-5 lpt-15 lpb-15 x">

      
        
        5495
        +                                <input type="radio" name="reason" class="hfl lmr-10 lmt-2" value="The word in the example sentence does not match the entry word." 

      
        
        5496
        +                                       role="button" tabindex="0">

      
        
        5497
        +                                <span class="hdb hoh">

      
        
        5498
        +                                    The word in the example sentence does not match the entry word.                                </span>

      
        
        5499
        +                            </label>

      
        
        5500
        +                        </div>

      
        
        5501
        +

      
        
        5502
        +                        <div class="lbt lb-cm">

      
        
        5503
        +                            <label class="tn lp-5 lpt-15 lpb-15 x">

      
        
        5504
        +                                <input type="radio" name="reason" class="hfl lmr-10 lmt-2" value="The sentence contains offensive content." 

      
        
        5505
        +                                       role="button" tabindex="0" />

      
        
        5506
        +                                <span class="hdb hoh">

      
        
        5507
        +                                    The sentence contains offensive content.                                </span>

      
        
        5508
        +                            </label>

      
        
        5509
        +                        </div>

      
        
        5510
        +

      
        
        5511
        +                        <div class="lbt lb-cm x lpt-15">

      
        
        5512
        +                            <div [class]="stateSidebarEntryTellUs.success ? 'hdn' : ''">

      
        
        5513
        +                                <button class="hfl hao hao hbtn hbtn-tab bhb fon" title="Search"

      
        
        5514
        +                                        on="tap:sidebarEntryTellUs.close" role="button" aria-label='Close' title='Close' tabindex="0">

      
        
        5515
        +                                    Cancel                                </button>

      
        
        5516
        +

      
        
        5517
        +                                <button type="submit" class="hfr boa hao hbtn hbtn-tab tb tc-bd" aria-label="Submit">

      
        
        5518
        +                                    Submit                                </button>

      
        
        5519
        +                            </div>

      
        
        5520
        +                        </div>

      
        
        5521
        +                    </div>

      
        
        5522
        +                    <div submitting>

      
        
        5523
        +                        <template type="amp-mustache">

      
        
        5524
        +                            <div class="pa p0 lp-5 bl-l">

      
        
        5525
        +                            <div class="pa p0 bload">

      
        
        5526
        +                            </div>

      
        
        5527
        +                            </div>

      
        
        5528
        +                        </template>

      
        
        5529
        +                    </div>

      
        
        5530
        +                    <div submit-success>

      
        
        5531
        +                        <template type="amp-mustache">

      
        
        5532
        +                            <div class="m ms fs14 lmt-10">

      
        
        5533
        +                                Thanks! Your feedback will be reviewed.

      
        
        5534
        +                            </div>

      
        
        5535
        +                        </template>

      
        
        5536
        +                    </div>

      
        
        5537
        +                    <div submit-error>

      
        
        5538
        +                        <template type="amp-mustache">

      
        
        5539
        +                            <div class="m me fs14 lmt-25">

      
        
        5540
        +                                {{#verifyErrors}}

      
        
        5541
        +                                    <p>{{message}}</p>

      
        
        5542
        +                                {{/verifyErrors}}

      
        
        5543
        +                                {{^verifyErrors}}

      
        
        5544
        +                                    {{#message}}

      
        
        5545
        +                                        <p>{{message}}</p>

      
        
        5546
        +                                    {{/message}}

      
        
        5547
        +                                    {{^message}}

      
        
        5548
        +                                        <p>There was a problem sending your report.</p>

      
        
        5549
        +                                    {{/message}}

      
        
        5550
        +                                {{/verifyErrors}}

      
        
        5551
        +                            </div>

      
        
        5552
        +                        </template>

      
        
        5553
        +                    </div>

      
        
        5554
        +                </form>

      
        
        5555
        +            </div>

      
        
        5556
        +

      
        
        5557
        +        </div>

      
        
        5558
        +    </div>

      
        
        5559
        +

      
        
        5560
        +</amp-sidebar>

      
        
        5561
        +</body>

      
        
        5562
        +</html>