Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for CLDR (0.14 sec)

  1. src/cmd/vendor/golang.org/x/text/language/language.go

    	// CLDR as well as bibliographic codes defined in ISO-639.
    	Legacy
    	// Map the dominant language of a macro language group to the macro language
    	// subtag. For example cmn -> zh.
    	Macro
    	// The CLDR flag should be used if full compatibility with CLDR is required.
    	// There are a few cases where language.Tag may differ from CLDR. To follow all
    	// of CLDR's suggestions, use All|CLDR.
    	CLDR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/map.go

    		return isTitle(c)
    	}
    	if !c.next() || c.src[c.pSrc] == 'j' {
    		return false
    	}
    	if c.src[c.pSrc] != 'J' {
    		c.unreadRune()
    	}
    	return true
    }
    
    // Not part of CLDR, but see https://unicode.org/cldr/trac/ticket/7078.
    func afnlRewrite(c *context) {
    	if c.hasPrefix("'") || c.hasPrefix("’") {
    		c.isMidWord = true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    // components.
    func (t Tag) HasString() bool {
    	return t.str != ""
    }
    
    // Parent returns the CLDR parent of t. In CLDR, missing fields in data for a
    // specific language are substituted with fields from the parent language.
    // The parent for a language may change for newer versions of CLDR.
    func (t Tag) Parent() Tag {
    	if t.str != "" {
    		// Strip the variants and extensions.
    		b, s, r := t.Raw()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    // normRegion returns a region if r is deprecated or 0 otherwise.
    // TODO: consider supporting BYS (-> BLR), CSK (-> 200 or CZ), PHI (-> PHL) and AFI (-> DJ).
    // TODO: consider mapping split up regions to new most populous one (like CLDR).
    func normRegion(r Region) Region {
    	m := regionOldMap
    	k := sort.Search(len(m), func(i int) bool {
    		return m[i].From >= uint16(r)
    	})
    	if k < len(m) && m[k].From == uint16(r) {
    		return Region(m[k].To)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/match.go

    //     en-AU vs en-US, for example.
    // [5] In CLDR a locale inherits fields that are unspecified for this locale
    //     from its parent. Therefore, if a locale is a parent of another locale,
    //     it is a strong measure for closeness, especially when no other tie
    //     breaker rule applies. One could also argue it is inconsistent, for
    //     example, when pt-AO matches pt (which CLDR equates with pt-BR), even
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. src/time/zoneinfo_abbrs_windows.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Code generated by genzabbrs.go; DO NOT EDIT.
    // Based on information from https://raw.githubusercontent.com/unicode-org/cldr/main/common/supplemental/windowsZones.xml
    
    package time
    
    type abbr struct {
    	std string
    	dst string
    }
    
    var abbrs = map[string]abbr{
    	"Egypt Standard Time":             {"EET", "EEST"},    // Africa/Cairo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 20:01:59 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/language/tables.go

    // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
    
    package language
    
    // CLDRVersion is the CLDR version from which the tables in this package are derived.
    const CLDRVersion = "32"
    
    const (
    	_de  = 269
    	_en  = 313
    	_fr  = 350
    	_it  = 505
    	_mo  = 784
    	_no  = 879
    	_nb  = 839
    	_pt  = 960
    	_sh  = 1031
    	_mul = 806
    	_und = 0
    )
    const (
    	_001 = 1
    	_419 = 31
    	_BR  = 65
    	_CA  = 73
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    //
    // IDNA2008 (Internationalized Domain Names for Applications), is defined in RFC
    // 5890, RFC 5891, RFC 5892, RFC 5893 and RFC 5894.
    // UTS #46 is defined in https://www.unicode.org/reports/tr46.
    // See https://unicode.org/cldr/utility/idna.jsp for a visualization of the
    // differences between these two standards.
    package idna // import "golang.org/x/net/idna"
    
    import (
    	"fmt"
    	"strings"
    	"unicode/utf8"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    //
    // IDNA2008 (Internationalized Domain Names for Applications), is defined in RFC
    // 5890, RFC 5891, RFC 5892, RFC 5893 and RFC 5894.
    // UTS #46 is defined in https://www.unicode.org/reports/tr46.
    // See https://unicode.org/cldr/utility/idna.jsp for a visualization of the
    // differences between these two standards.
    package idna // import "golang.org/x/net/idna"
    
    import (
    	"fmt"
    	"strings"
    	"unicode/utf8"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/compact/tables.go

    // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
    
    package compact
    
    import "golang.org/x/text/internal/language"
    
    // CLDRVersion is the CLDR version from which the tables in this package are derived.
    const CLDRVersion = "32"
    
    // NumCompactTags is the number of common tags. The maximum tag is
    // NumCompactTags-1.
    const NumCompactTags = 775
    const (
    	undIndex          ID = 0
    	afIndex           ID = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 31.4K bytes
    - Viewed (0)
Back to top