...

Source file src/github.com/gobuffalo/flect/acronyms.go

Documentation: github.com/gobuffalo/flect

     1  package flect
     2  
     3  import "sync"
     4  
     5  var acronymsMoot = &sync.RWMutex{}
     6  
     7  var baseAcronyms = map[string]bool{
     8  	"OK":    true,
     9  	"UTF8":  true,
    10  	"HTML":  true,
    11  	"JSON":  true,
    12  	"JWT":   true,
    13  	"ID":    true,
    14  	"UUID":  true,
    15  	"SQL":   true,
    16  	"ACK":   true,
    17  	"ACL":   true,
    18  	"ADSL":  true,
    19  	"AES":   true,
    20  	"ANSI":  true,
    21  	"API":   true,
    22  	"ARP":   true,
    23  	"ATM":   true,
    24  	"BGP":   true,
    25  	"BSS":   true,
    26  	"CCITT": true,
    27  	"CHAP":  true,
    28  	"CIDR":  true,
    29  	"CIR":   true,
    30  	"CLI":   true,
    31  	"CPE":   true,
    32  	"CPU":   true,
    33  	"CRC":   true,
    34  	"CRT":   true,
    35  	"CSMA":  true,
    36  	"CMOS":  true,
    37  	"DCE":   true,
    38  	"DEC":   true,
    39  	"DES":   true,
    40  	"DHCP":  true,
    41  	"DNS":   true,
    42  	"DRAM":  true,
    43  	"DSL":   true,
    44  	"DSLAM": true,
    45  	"DTE":   true,
    46  	"DMI":   true,
    47  	"EHA":   true,
    48  	"EIA":   true,
    49  	"EIGRP": true,
    50  	"EOF":   true,
    51  	"ESS":   true,
    52  	"FCC":   true,
    53  	"FCS":   true,
    54  	"FDDI":  true,
    55  	"FTP":   true,
    56  	"GBIC":  true,
    57  	"gbps":  true,
    58  	"GEPOF": true,
    59  	"HDLC":  true,
    60  	"HTTP":  true,
    61  	"HTTPS": true,
    62  	"IANA":  true,
    63  	"ICMP":  true,
    64  	"IDF":   true,
    65  	"IDS":   true,
    66  	"IEEE":  true,
    67  	"IETF":  true,
    68  	"IMAP":  true,
    69  	"IP":    true,
    70  	"IPS":   true,
    71  	"ISDN":  true,
    72  	"ISP":   true,
    73  	"kbps":  true,
    74  	"LACP":  true,
    75  	"LAN":   true,
    76  	"LAPB":  true,
    77  	"LAPF":  true,
    78  	"LLC":   true,
    79  	"MAC":   true,
    80  	"Mbps":  true,
    81  	"MC":    true,
    82  	"MDF":   true,
    83  	"MIB":   true,
    84  	"MoCA":  true,
    85  	"MPLS":  true,
    86  	"MTU":   true,
    87  	"NAC":   true,
    88  	"NAT":   true,
    89  	"NBMA":  true,
    90  	"NIC":   true,
    91  	"NRZ":   true,
    92  	"NRZI":  true,
    93  	"NVRAM": true,
    94  	"OSI":   true,
    95  	"OSPF":  true,
    96  	"OUI":   true,
    97  	"PAP":   true,
    98  	"PAT":   true,
    99  	"PC":    true,
   100  	"PIM":   true,
   101  	"PCM":   true,
   102  	"PDU":   true,
   103  	"POP3":  true,
   104  	"POTS":  true,
   105  	"PPP":   true,
   106  	"PPTP":  true,
   107  	"PTT":   true,
   108  	"PVST":  true,
   109  	"RAM":   true,
   110  	"RARP":  true,
   111  	"RFC":   true,
   112  	"RIP":   true,
   113  	"RLL":   true,
   114  	"ROM":   true,
   115  	"RSTP":  true,
   116  	"RTP":   true,
   117  	"RCP":   true,
   118  	"SDLC":  true,
   119  	"SFD":   true,
   120  	"SFP":   true,
   121  	"SLARP": true,
   122  	"SLIP":  true,
   123  	"SMTP":  true,
   124  	"SNA":   true,
   125  	"SNAP":  true,
   126  	"SNMP":  true,
   127  	"SOF":   true,
   128  	"SRAM":  true,
   129  	"SSH":   true,
   130  	"SSID":  true,
   131  	"STP":   true,
   132  	"SYN":   true,
   133  	"TDM":   true,
   134  	"TFTP":  true,
   135  	"TIA":   true,
   136  	"TOFU":  true,
   137  	"UDP":   true,
   138  	"URL":   true,
   139  	"URI":   true,
   140  	"USB":   true,
   141  	"UTP":   true,
   142  	"VC":    true,
   143  	"VLAN":  true,
   144  	"VLSM":  true,
   145  	"VPN":   true,
   146  	"W3C":   true,
   147  	"WAN":   true,
   148  	"WEP":   true,
   149  	"WiFi":  true,
   150  	"WPA":   true,
   151  	"WWW":   true,
   152  }
   153  

View as plain text