mirror of
https://github.com/miaowware/qrm2.git
synced 2024-10-31 14:27:11 -04:00
fdfc8cce06
Element of #142 New year lint removal
39 lines
692 B
Python
39 lines
692 B
Python
"""
|
|
A listing of NATO Phonetics
|
|
---
|
|
Copyright (C) 2019-2020 Abigail Gold, 0x5c
|
|
|
|
This file is part of discord-qrmbot and is released under the terms of
|
|
the GNU General Public License, version 2.
|
|
"""
|
|
|
|
|
|
phonetics = {
|
|
"a": "alfa",
|
|
"b": "bravo",
|
|
"c": "charlie",
|
|
"d": "delta",
|
|
"e": "echo",
|
|
"f": "foxtrot",
|
|
"g": "golf",
|
|
"h": "hotel",
|
|
"i": "india",
|
|
"j": "juliett",
|
|
"k": "kilo",
|
|
"l": "lima",
|
|
"m": "mike",
|
|
"n": "november",
|
|
"o": "oscar",
|
|
"p": "papa",
|
|
"q": "quebec",
|
|
"r": "romeo",
|
|
"s": "sierra",
|
|
"t": "tango",
|
|
"u": "uniform",
|
|
"v": "victor",
|
|
"w": "whiskey",
|
|
"x": "x-ray",
|
|
"y": "yankee",
|
|
"z": "zulu"
|
|
}
|